X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=citadel%2Ftuiconfig.c;h=15461953e83da2e54421dfd4964611daa49fa163;hb=b69343fc8f931319ca56cc6464961ddeb3134a0a;hp=7857847226b93ff2b563711f044aa424eea38ce8;hpb=f28fe04076ea3e18682f41c8ac6d40340902a3f4;p=citadel.git diff --git a/citadel/tuiconfig.c b/citadel/tuiconfig.c index 785784722..15461953e 100644 --- a/citadel/tuiconfig.c +++ b/citadel/tuiconfig.c @@ -390,7 +390,8 @@ void get_inet_rec_type(CtdlIPC *ipc, char *buf) { keyopt(" <4> SpamAssassin (Address of SpamAssassin server)\n"); keyopt(" <5> RBL (domain suffix of spam hunting RBL)\n"); keyopt(" <6> masq domains (Domains as which users are allowed to masquerade)\n"); - sel = intprompt("Which one", 1, 1, 6); + keyopt(" <7> ClamAV (Address of ClamAV clamd server)\n"); + sel = intprompt("Which one", 1, 1, 7); switch(sel) { case 1: strcpy(buf, "localhost"); return; @@ -404,6 +405,8 @@ void get_inet_rec_type(CtdlIPC *ipc, char *buf) { return; case 6: strcpy(buf, "masqdomain"); return; + case 7: strcpy(buf, "clamav"); + return; } }