]> code.citadel.org Git - citadel.git/blobdiff - citadel/routines2.c
* Added support for any standard RBL
[citadel.git] / citadel / routines2.c
index 10f852340f411e088b31ad8dedf4f9eef26981b1..fbfeb4e6a8ad7af6c8cd44f76b79daa01868c585 100644 (file)
@@ -775,7 +775,8 @@ void get_inet_rec_type(CtdlIPC *ipc, char *buf) {
        keyopt(" <3> smart-host     (Forward all outbound mail to this host)\n");
        keyopt(" <4> directory      (Consult the Global Address Book)\n");
        keyopt(" <5> SpamAssassin   (Address of SpamAssassin server)\n");
-       sel = intprompt("Which one", 1, 1, 5);
+       keyopt(" <6> RBL            (domain suffix of spam hunting RBL)\n");
+       sel = intprompt("Which one", 1, 1, 6);
        switch(sel) {
                case 1: strcpy(buf, "localhost");
                        return;
@@ -787,6 +788,8 @@ void get_inet_rec_type(CtdlIPC *ipc, char *buf) {
                        return;
                case 5: strcpy(buf, "spamassassin");
                        return;
+               case 6: strcpy(buf, "rbl");
+                       return;
        }
 }