summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--alpine/ldapconf.c4
-rw-r--r--alpine/send.c2
-rw-r--r--pith/pine.hlp5
3 files changed, 8 insertions, 3 deletions
diff --git a/alpine/ldapconf.c b/alpine/ldapconf.c
index 36993de4..fbf741db 100644
--- a/alpine/ldapconf.c
+++ b/alpine/ldapconf.c
@@ -1536,7 +1536,7 @@ dir_edit_screen(struct pine *ps, LDAP_SERV_S *def, char *title, char **raw_serve
ctmp->help = h_config_ldap_opts_tlsmust;
break;
case LDAP_F_LDAPS:
- ctmp->help = h_config_ldap_opts_ldaps; //TODO: SSL and TLS as radiobutton
+ ctmp->help = h_config_ldap_opts_ldaps;
break;
}
@@ -2459,7 +2459,7 @@ ldap_feature_list(int index)
{"save-search-criteria-not-result", NULL, LDAP_F_REF},
{"disable-ad-hoc-space-substitution", NULL, LDAP_F_NOSUB},
{"attempt-tls-on-connection", NULL, LDAP_F_TLS},
- {"require-tls-on-connection", NULL, LDAP_F_TLSMUST}, // TODO rename tls to starttls
+ {"require-tls-on-connection", NULL, LDAP_F_TLSMUST},
{"require-ldaps-on-connection", NULL, LDAP_F_LDAPS}
};
diff --git a/alpine/send.c b/alpine/send.c
index 23b0c79d..dfba59f3 100644
--- a/alpine/send.c
+++ b/alpine/send.c
@@ -568,7 +568,7 @@ compose_mail(char *given_to, char *fcc_arg, ACTION_S *role_arg,
if(F_ON(F_ALT_COMPOSE_MENU, ps_global) ||
(ret = want_to(FORM_PMT,'y','x',NO_HELP,WT_NORM))=='y'){
if(!redraft(&stream, &outgoing, &body, &fcc, &lcc, &reply,
- &redraft_pos, &custom, NULL, REDRAFT_NONE))
+ &redraft_pos, &custom, &role, REDRAFT_NONE))
done++;
/* stream may or may not be closed in redraft() */
diff --git a/pith/pine.hlp b/pith/pine.hlp
index f0b27fab..9eb5575b 100644
--- a/pith/pine.hlp
+++ b/pith/pine.hlp
@@ -197,6 +197,11 @@ Additions include:
<LI> Ignore message from smtp server after a successful authentication
challenge.
+ <LI> When a message is saved in the Form Letter folder, add the ability
+ to save the role being used to compose such message so that settings
+ such as the SMTP server set in the role can be used when sending
+ such form message. Suggested and patched by Frank Doepper.
+
<LI> If SSLDIR is defined somehow, do not disable S/MIME if the
SSLCERTSDIR is not found.