From: Art Cancro Date: Wed, 15 Sep 2004 03:08:50 +0000 (+0000) Subject: * Support config of seaperate MSA port in Citadel 6.26 X-Git-Tag: v7.86~5260 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=16be8bc0e41710e59f36eb27dd064ce65fcb4346 * Support config of seaperate MSA port in Citadel 6.26 --- diff --git a/webcit/ChangeLog b/webcit/ChangeLog index f9b6898cd..f21d34879 100644 --- a/webcit/ChangeLog +++ b/webcit/ChangeLog @@ -1,4 +1,7 @@ $Log$ +Revision 523.3 2004/09/15 03:08:50 ajc +* Support config of seaperate MSA port in Citadel 6.26 + Revision 523.2 2004/09/10 03:49:17 ajc * Added 'dialog' mode to setup @@ -2043,3 +2046,4 @@ Sun Dec 6 19:50:55 EST 1998 Art Cancro 1998-12-03 Nathan Bryant * webserver.c: warning fix + diff --git a/webcit/siteconfig.c b/webcit/siteconfig.c index ca7def936..1a83ae95f 100644 --- a/webcit/siteconfig.c +++ b/webcit/siteconfig.c @@ -418,7 +418,7 @@ void display_siteconfig(void) break; case 25: if (!strcasecmp(whichmenu, "network")) { - wprintf("SMTP listener port (-1 to disable)"); + wprintf("SMTP MTA port (-1 to disable)"); wprintf("", buf); wprintf("\n"); } @@ -548,6 +548,16 @@ void display_siteconfig(void) wprintf("", buf); } break; + case 39: + if (!strcasecmp(whichmenu, "network")) { + wprintf("SMTP MSA port (-1 to disable)"); + wprintf("", buf); + wprintf("\n"); + } + else { + wprintf("", buf); + } + break; } } @@ -675,6 +685,7 @@ void siteconfig(void) serv_printf("%s", bstr("c_ldap_bind_dn")); serv_printf("%s", bstr("c_ldap_bind_pw")); serv_printf("%s", bstr("c_ip_addr")); + serv_printf("%s", bstr("c_msa_port")); serv_printf("000"); serv_printf("SPEX site|%d|%d", atoi(bstr("sitepolicy")), atoi(bstr("sitevalue")));