aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.c b/src/main.c
index e149b782..79d304cf 100644
--- a/src/main.c
+++ b/src/main.c
@@ -488,7 +488,7 @@ option_mailfrom(char *opt, void **pval, char *newval)
/* FIXME-MU: compensate for mailutils deficiency */
if (newval[0] == 0)
- newval = "<>";
+ newval = DEFAULT_FROM_ADDRESS;
if (get_locus()->file)
parse_warning(
"`#pragma option mailfrom' is deprecated, consider using "
@@ -518,7 +518,7 @@ set_mailfrom(void *value)
/* FIXME-MU: compensate for mailutils deficiency */
if (*(char*)value == 0)
- value = "<>";
+ value = DEFAULT_FROM_ADDRESS;
rc = mu_address_create(&addr, value);
if (rc) {

Return to:

Send suggestions and report system problems to the System administrator.