summaryrefslogtreecommitdiffstats
path: root/mbbsd/mail.c
diff options
context:
space:
mode:
authorpiaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2005-07-03 19:41:14 +0800
committerpiaip <piaip@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2005-07-03 19:41:14 +0800
commit728bd7471eb48701106ef65af331a0173a5d3903 (patch)
tree5614ac5380eb4aa86037040a66133dd2d0516a2d /mbbsd/mail.c
parentbec891156b90f32fb98e7375cad40aeaae174dec (diff)
downloadpttbbs-728bd7471eb48701106ef65af331a0173a5d3903.tar
pttbbs-728bd7471eb48701106ef65af331a0173a5d3903.tar.gz
pttbbs-728bd7471eb48701106ef65af331a0173a5d3903.tar.bz2
pttbbs-728bd7471eb48701106ef65af331a0173a5d3903.tar.lz
pttbbs-728bd7471eb48701106ef65af331a0173a5d3903.tar.xz
pttbbs-728bd7471eb48701106ef65af331a0173a5d3903.tar.zst
pttbbs-728bd7471eb48701106ef65af331a0173a5d3903.zip
- multi-signature browsing mode
- song order: quick abort git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@2881 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
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));