* add ssl xmpp port; this should work with pidgin as samjam documented.
[citadel.git] / citadel / control.c
index 03ffa7c75d09917455cd31fdf42cf427ba146414..07edd88baf386e9b8fa9f091751be8b261648667 100644 (file)
@@ -389,6 +389,7 @@ void cmd_conf(char *argbuf)
                cprintf("%ld\n", config.c_pop3_fetch);
                cprintf("%ld\n", config.c_pop3_fastest);
                cprintf("%d\n", config.c_spam_flag_only);
+               cprintf("%d\n", config.c_xmpps_c2s_port);
                cprintf("000\n");
        }
 
@@ -645,6 +646,9 @@ void cmd_conf(char *argbuf)
                        case 66:
                                config.c_spam_flag_only = atoi(buf);
                                break;
+                       case 67:
+                               config.c_xmpps_c2s_port = atoi(buf);
+                               break;
                        }
                        ++a;
                }