]> git.llucax.com Git - software/mutt-debian.git/blobdiff - account.c
a better way of closing 603186 (sidebar-{sorted,dotted} documentation)
[software/mutt-debian.git] / account.c
index b305f788b42efdd7212eeb3ff457fcd31fe698ce..f7389914e444d32261934d9097fcb42d503f1b9b 100644 (file)
--- a/account.c
+++ b/account.c
@@ -155,6 +155,8 @@ int mutt_account_getuser (ACCOUNT* account)
   else if ((account->type == M_ACCT_TYPE_POP) && PopUser)
     strfcpy (account->user, PopUser, sizeof (account->user));
 #endif
+  else if (option (OPTNOCURSES))
+    return -1;
   /* prompt (defaults to unix username), copy into account->user */
   else
   {
@@ -215,6 +217,8 @@ int mutt_account_getpass (ACCOUNT* account)
   else if ((account->type == M_ACCT_TYPE_SMTP) && SmtpPass)
     strfcpy (account->pass, SmtpPass, sizeof (account->pass));
 #endif
+  else if (option (OPTNOCURSES))
+    return -1;
   else
   {
     snprintf (prompt, sizeof (prompt), _("Password for %s@%s: "),