Skip to content
Snippets Groups Projects
Commit ef4bf137 authored by rswindell's avatar rswindell
Browse files

Added mail_startup.max_msg_size parameter.

parent 308050a5
No related branches found
No related tags found
No related merge requests found
...@@ -283,6 +283,8 @@ void sbbs_read_ini( ...@@ -283,6 +283,8 @@ void sbbs_read_ini(
=iniReadShortInt(fp,section,"LinesPerYield",10); =iniReadShortInt(fp,section,"LinesPerYield",10);
mail->max_recipients mail->max_recipients
=iniReadShortInt(fp,section,"MaxRecipients",100); =iniReadShortInt(fp,section,"MaxRecipients",100);
mail->max_msg_size
=iniReadInteger(fp,section,"MaxMsgSize",10*1024*1024); /* 10MB */
SAFECOPY(mail->host_name SAFECOPY(mail->host_name
,iniReadString(fp,section,"HostName",host_name)); ,iniReadString(fp,section,"HostName",host_name));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment