]> code.citadel.org Git - citadel.git/blobdiff - citadel/routines2.c
* Fixed a small bug in the GDBM backend (deprecated, but the bug was very
[citadel.git] / citadel / routines2.c
index 10f852340f411e088b31ad8dedf4f9eef26981b1..56982df02ca7fd1ffa4a4b44e585db12bfa6ebb4 100644 (file)
@@ -29,7 +29,6 @@
 
 #include <signal.h>
 #include <pwd.h>
-#include <setjmp.h>
 #include <errno.h>
 #include <stdarg.h>
 #include "citadel.h"
@@ -775,7 +774,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 +787,8 @@ void get_inet_rec_type(CtdlIPC *ipc, char *buf) {
                        return;
                case 5: strcpy(buf, "spamassassin");
                        return;
+               case 6: strcpy(buf, "rbl");
+                       return;
        }
 }