summaryrefslogtreecommitdiffstats
path: root/mbbsd
diff options
context:
space:
mode:
Diffstat (limited to 'mbbsd')
-rw-r--r--mbbsd/pmore.c3
-rw-r--r--mbbsd/user.c13
2 files changed, 15 insertions, 1 deletions
diff --git a/mbbsd/pmore.c b/mbbsd/pmore.c
index 8e902794..0380843e 100644
--- a/mbbsd/pmore.c
+++ b/mbbsd/pmore.c
@@ -48,6 +48,7 @@ enum {
#define ANSI_ESC (0x1b)
#define RESETMF() { memset(&mf, 0, sizeof(mf)); mf.oldlineno = -1; }
#define RESETAH() { memset(&ah, 0, sizeof(ah)); }
+#define MFDISP_DIRTY() { mf.oldlineno = -1; }
/* search records */
typedef struct
@@ -274,6 +275,8 @@ int mf_search(int direction)
mf.disps = mf.start;
mf_sync_lineno();
}
+ if(flFound)
+ MFDISP_DIRTY();
return flFound;
}
diff --git a/mbbsd/user.c b/mbbsd/user.c
index d49a5893..5702b880 100644
--- a/mbbsd/user.c
+++ b/mbbsd/user.c
@@ -1132,8 +1132,19 @@ toregister(char *email, char *genbuf, char *phone, char *career,
strncpy(cuser.justify, genbuf, REGLEN);
sethomefile(buf, cuser.userid, "justify");
}
+
+ /*
+ * It is intended to use BBSENAME instead of BBSNAME here.
+ * Because recently many poor users with poor mail clients
+ * (or evil mail servers) cannot handle/decode Chinese
+ * subjects (BBSNAME) correctly, so we'd like to use
+ * BBSENAME here to prevent subject being messed up.
+ * And please keep BBSENAME short or it may be truncated
+ * by evil mail servers.
+ */
snprintf(buf, sizeof(buf),
- " " BBSNAME " - [ %s ]", getregcode(genbuf));
+ " " BBSENAME " - [ %s ]", getregcode(genbuf));
+
strlcpy(tmp, cuser.userid, sizeof(tmp));
strlcpy(cuser.userid, str_sysop, sizeof(cuser.userid));
#ifdef HAVEMOBILE