summaryrefslogtreecommitdiffstats
path: root/mbbsd/bbs.c
diff options
context:
space:
mode:
Diffstat (limited to 'mbbsd/bbs.c')
-rw-r--r--mbbsd/bbs.c11
1 files changed, 3 insertions, 8 deletions
diff --git a/mbbsd/bbs.c b/mbbsd/bbs.c
index ec4a3aa1..dcd485f4 100644
--- a/mbbsd/bbs.c
+++ b/mbbsd/bbs.c
@@ -1237,13 +1237,7 @@ do_general(int isbid)
else
sendalert(quote_user, ALERT_NEW_MAIL);
} else if ((str = strchr(quote_user, '.'))) {
- if (
-#ifndef USE_BSMTP
- bbs_sendmail(fpath, save_title, str + 1)
-#else
- bsmtp(fpath, save_title, str + 1)
-#endif
- < 0)
+ if ( bsmtp(fpath, save_title, str + 1, NULL) < 0)
msg = "作者無法收信";
} else {
// unknown user id
@@ -4117,6 +4111,7 @@ Select(void)
void
mobile_message(const char *mobile, char *message)
{
- bsmtp(fpath, title, rcpt);
+ // this is for validation.
+ bsmtp(fpath, title, rcpt, "non-exist");
}
#endif