Browse Source

--host option didn't check for imaps: prefix

0.9
Michael Elkins 24 years ago
parent
commit
5eaa4e5512
  1. 5
      main.c

5
main.c

@ -192,6 +192,11 @@ main (int argc, char **argv)
global.box = optarg;
break;
case 's':
if (!strncasecmp("imaps:", optarg, 6))
{
global.use_imaps = 1;
optarg += 6;
}
global.host = optarg;
break;
case 'u':

Loading…
Cancel
Save