From 424db34ff2884d2cac8e058a0f17df997bb16b5b Mon Sep 17 00:00:00 2001 From: Oswald Buddenhagen Date: Sun, 7 Dec 2003 15:34:54 +0000 Subject: [PATCH] make imaps: on the command line adjust the port and ssl options as well --- src/main.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main.c b/src/main.c index f6cea7e..2cd0273 100644 --- a/src/main.c +++ b/src/main.c @@ -284,6 +284,9 @@ main (int argc, char **argv) if (!strncasecmp ("imaps:", optarg, 6)) { global.use_imaps = 1; + global.port = 993; + global.use_sslv2 = 1; + global.use_sslv3 = 1; optarg += 6; } #endif