summaryrefslogtreecommitdiff
path: root/mail/reply.c
diff options
context:
space:
mode:
Diffstat (limited to 'mail/reply.c')
-rw-r--r--mail/reply.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/mail/reply.c b/mail/reply.c
index 42c876aea..80ae4f83a 100644
--- a/mail/reply.c
+++ b/mail/reply.c
@@ -82,7 +82,7 @@ reply0 (msgset_t *mspec, mu_message_t msg, void *data)
const char *email;
if (mu_address_sget_email (addr, i, &email) || email == NULL)
continue;
- if (mailvar_is_true ("metoo") || !mail_is_my_name (email))
+ if (mailvar_is_true (mailvar_name_metoo) || !mail_is_my_name (email))
compose_header_set (&env, MU_HEADER_TO,
email,
COMPOSE_SINGLE_LINE);
@@ -119,7 +119,7 @@ reply0 (msgset_t *mspec, mu_message_t msg, void *data)
make_in_reply_to (&env, msg);
make_references (&env, msg);
- status = mail_send0 (&env, mailvar_is_true ("byname"));
+ status = mail_send0 (&env, mailvar_is_true (mailvar_name_byname));
compose_destroy (&env);
return status;
@@ -129,7 +129,7 @@ int
mail_reply (int argc, char **argv)
{
int lower = mu_islower (argv[0][0]);
- if (mailvar_is_true ("flipr"))
+ if (mailvar_is_true (mailvar_name_flipr))
lower = !lower;
return util_foreach_msg (argc, argv, MSG_NODELETED, reply0, &lower);
}

Return to:

Send suggestions and report system problems to the System administrator.