]> jfr.im git - irc/evilnet/x3.git/blobdiff - src/sendmail.c
Lots of style changes to user replies. added numeric access back
[irc/evilnet/x3.git] / src / sendmail.c
index 63fe69b9afe11acd3a245033dd8531eb7e411c9a..06612814b45a5f9b77d2e83233db7d3d2cdcb978 100644 (file)
@@ -1,7 +1,7 @@
 /* sendmail.c - mail sending utilities
  * Copyright 2002-2004 srvx Development Team
  *
- * This file is part of srvx.
+ * This file is part of x3.
  *
  * srvx is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -34,7 +34,9 @@ static const struct message_entry msgtab[] = {
     { "MAILMSG_EMAIL_BANNED", "Email to %s has been forbidden." },
     { "MAILMSG_EMAIL_NOT_BANNED", "Email to %s was not forbidden." },
     { "MAILMSG_EMAIL_UNBANNED", "Email to %s is now allowed." },
+    { "MAILMSG_PROHIBITED_EMAIL_HEADER", "$bBanned Email Address Masks$b" },
     { "MAILMSG_PROHIBITED_EMAIL", "%s: %s" },
+    { "MAILMSG_PROHIBITED_EMAIL_END", "-------End of Banned Address Masks------" },
     { "MAILMSG_NO_PROHIBITED_EMAIL", "All email addresses are accepted." },
     { NULL, NULL }
 };
@@ -272,6 +274,8 @@ static MODCMD_FUNC(cmd_stats_email) {
     dict_iterator_t it;
     int found = 0;
 
+    reply("MAILMSG_PROHIBITED_EMAIL_HEADER");
+    reply("MSG_BAR");
     for (it=dict_first(prohibited_addrs); it; it=iter_next(it)) {
         reply("MAILMSG_PROHIBITED_EMAIL", iter_key(it), (const char*)iter_data(it));
         found = 1;
@@ -282,6 +286,8 @@ static MODCMD_FUNC(cmd_stats_email) {
     }
     if (!found)
         reply("MAILMSG_NO_PROHIBITED_EMAIL");
+    else
+        reply("MAILMSG_PROHIBITED_EMAIL_END");
     return 0;
 }