summaryrefslogtreecommitdiffstats
path: root/mbbsd/mail.c
diff options
context:
space:
mode:
Diffstat (limited to 'mbbsd/mail.c')
-rw-r--r--mbbsd/mail.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/mbbsd/mail.c b/mbbsd/mail.c
index f58293bb..300f2e96 100644
--- a/mbbsd/mail.c
+++ b/mbbsd/mail.c
@@ -1471,7 +1471,8 @@ send_inner_mail(const char *fpath, const char *title, const char *receiver)
sethomepath(genbuf, rightid);
stampfile(genbuf, &mymail);
if (!strcmp(rightid, cuser.userid)) {
- strlcpy(mymail.owner, "[" BBSNAME "]", sizeof(mymail.owner));
+ /* Using BBSNAME may be too loooooong. */
+ strlcpy(mymail.owner, "[¯¸¤º]", sizeof(mymail.owner));
mymail.filemode = FILE_READ;
} else
strlcpy(mymail.owner, cuser.userid, sizeof(mymail.owner));