G'day, Paul.
Below are respective definitions for the two variables, as found in the
official miniBB manual:
$emailadmin=1; Email admin if new topics or replies are posted, also if new user is registered. 0 for no 1 for yes. Replies/topics emails are sent if admin is not the message poster.
$emailadmposts=0; It means that admin receives emails only about new user registration. If $emailadmposts is set to 1, admin also will receive notification about every new post. If it is not set, or is equal to 0, admin will not receive those emails, but will be able to subscribe to topics manually.
Is one variable dependent of the other? Does one overwrite the other? Or ... ?
Would you mind confirming whether I have understood the following possible configuration combinations:
Combination #1: admin is notified of new user registrations
$emailadmin=1;
$emailadposts=0;
Combination #2: same result as combination #1?
$emailadmin=0;
$emailadposts=0;
Combination #3: admin is notified of everything (i.e., any new registrations + any new posts)
$emailadmin=1;
$emailadmposts=1;
Does this mean admin is subscribed to every thread by default?
New posts = all new posts except those made by admin.
Combination #4: ?
$emailadmin=0;
$emailadmposts=1;
With thanks, and cheers -
mb