Page 1 of 1
how to add domains etc?
Posted: 24 Jan 2014 09:55
by martinwa
In ESVA adding domains is done with ESVA-domainadd but how is it done in EFA?
Great software by the way
Regards
Martin
Re: how to add domains etc?
Posted: 24 Jan 2014 10:00
by darky83
Still busy writing the howto (live somewhere today

)
in short:
Logon with ssh with the user you created during the setup
- EFA-Configure will automatically start up
- Go to option
8) Mail Settings
- Go to option
4) Transport settings
Here you can add/remove/edit your domains.
Re: how to add domains etc?
Posted: 24 Jan 2014 10:01
by shawniverson
Also,
Spam Settings --> Inline Signature Rules allow you to add domains to the MailScanner signature rules.

Re: how to add domains etc?
Posted: 24 Jan 2014 10:38
by martinwa
In ESVA adding a domain also added a user with login rights to the web-interface.
This user could login and release mails from his domain only...
In time, will this be possible in EFA?
Regards

Martin
Re: how to add domains etc?
Posted: 24 Jan 2014 10:52
by shawniverson
Hello Martin,
For now, simply create a new user in the domain as follows using MailWatch under Tools/Links
username: <myadmin>@<mydoman>
Name, password, etc.
Under User Type, choose "Domain Administrator"
Re: how to add domains etc?
Posted: 24 Jan 2014 12:38
by martinwa
thank you - I try that.
Best regards
Martin
Re: how to add domains etc?
Posted: 11 Feb 2014 09:25
by b19wll
Hello
I have added a user under mailwatch as above and can log in as that user and see all the email for the domain. I then started to whitelist some domains, then to double check I looked at the lists section only to find that the whitelist entries that I made earlier were not listed under the domain administrator login. However when I log in as admin and look at the lists, I can see the entries that I made for the domain administrator logon.
What do I need to do to see those entries when logged in as the domain administrator?
Thanks
Will
Re: how to add domains etc?
Posted: 11 Feb 2014 09:44
by shawniverson
Can you share an example entry?
Domain Administrators should only see entries for their own domains:
From:
someperson@somewhere.net
To:
someperson@mydomain.com
Re: how to add domains etc?
Posted: 11 Feb 2014 16:31
by b19wll
logged in as admin I can see;
From: sendingdomain.com
To: recievingdomain.net
Whilst logged in as a domain administrator nothing is listed.
I know that the W/L is working as the emails are showing as green.
Thanks
Will
Re: how to add domains etc?
Posted: 11 Feb 2014 21:51
by shawniverson
Checking into this...

Re: how to add domains etc?
Posted: 11 Feb 2014 22:40
by shawniverson
I believe we have a bug...
Just posted an issue to mailwatch
https://github.com/mailwatch/1.2.0/issues/52
Seeing if I can come up with a workaround or temporary fix...
Re: how to add domains etc?
Posted: 11 Feb 2014 22:47
by b19wll
Thanks
Re: how to add domains etc?
Posted: 11 Feb 2014 22:49
by shawniverson
Bug found!
MailWatch has a typo in /var/www/html/mailscanner/lists.php on line 156...
Code: Select all
$todomain1 = strtolower($url_domain);
This code should read...
Code: Select all
$todomain = strtolower($url_domain);
Unfortunately, this means that existing whitelist and blacklist entries are screwed up and will either have to be removed and readded or directly modified in the mailscanner whitelist and blacklist tables
Re: how to add domains etc?
Posted: 11 Feb 2014 22:50
by b19wll
Wow that was fast, I'll change the chide note and report back
Re: how to add domains etc?
Posted: 11 Feb 2014 23:07
by b19wll
Ok that works great now, but I think I may have stumbled on another bug
I went ahead and added several entries into the W/L both in the format
from:
name@domain.com
to:
name@domain.net
and
from: domain.com
to: domain.net
I can delete the entries that are in the format
name@domain.com, but not the ones that are listed as domain.com?
Thanks
Will
PS forgot to mention that I can delete any entry while logged in as admin, the above only happens when I am logged in as a domain administator
Re: how to add domains etc?
Posted: 12 Feb 2014 15:02
by shawniverson
I'll check into this too.
Re: how to add domains etc?
Posted: 13 Feb 2014 21:57
by shawniverson
Re: how to add domains etc?
Posted: 13 Feb 2014 22:01
by b19wll
I'll edit the file and test, thanks for the info
Will
Re: how to add domains etc?
Posted: 13 Feb 2014 23:12
by b19wll
Just changed the lists.php as shown on the github link and can now delete as a domain administrator.
Will add a standard user account tomorrow and see if that works.
Thanks
Will