1

Topic: Sender Identities in Roundcube

==== REQUIRED BASIC INFO OF YOUR IREDMAIL SERVER ====
- iRedMail version (check /etc/iredmail-release): 0.9.9
- Deployed with iRedMail Easy or the downloadable installer? IRedMail Easy
- Linux/BSD distribution name and version:  FreeBSD 11.2-RELEASE 64bit
- Store mail accounts in which backend (LDAP/MySQL/PGSQL):  MySQL
- Web server (Apache or Nginx): Nginx
- Manage mail accounts with iRedAdmin-Pro? No
- [IMPORTANT] Related original log or error message is required if you're experiencing an issue.
====

Hi, Identities in Roundcube allow you to send email using a virtual alias account as the sender. Problem with this is when you hit send, it immediately shows an error saying user doesn't match authenticated login. How do I go about using Identities without hitting this error ?

- GZ

----

Spider Email Archiver: On-Premises, lightweight email archiving software developed by iRedMail team. Supports Amazon S3 compatible storage and custom branding.

2

Re: Sender Identities in Roundcube

FYI: https://docs.iredmail.org/errors.html#r … e-username

3

Re: Sender Identities in Roundcube

Hi Zhang,

Tried that and I still got that error. Added the following into /opt/iredapd/settings.py:-

ALLOWED_LOGIN_MISMATCH_LIST_MEMBER = True

And restarted iredapd service. Error from log /var/log/iredapd/iredapd.log:-

2019-02-26 06:55:31 INFO [127.0.0.1] RCPT, name@dom.com => alias@dom.com -> someone@dom.net, REJECT Sender is not same as SMTP authenticate username [sasl_username=name@dom.com, sender=alias@dom.com, client_name=localhost, reverse_client_name=localhost, helo=box.hostname.com, encryption_protocol=TLSv1.2, process_time=0.0777s]

Any other way ?

- GZ

4

Re: Sender Identities in Roundcube

Hi Zhang,

This setting seems to work:-

ALLOWED_LOGIN_MISMATCH_SENDERS = ['domain.com', 'domain2.com']

/var/log/iredapd/iredapd.log:-

2019-02-26 07:21:59 INFO [127.0.0.1] RCPT, name@dom.com => alias@dom.com -> someone@dom.net, DUNNO [sasl_username=name@dom.com, sender=alias@dom.com, client_name=localhost, reverse_client_name=localhost, helo=box.hostname.com, encryption_protocol=TLSv1.2, process_time=0.0038s]
2019-02-26 07:21:59 INFO [127.0.0.1] END-OF-MESSAGE, name@dom.com => alias@dom.com -> someone@dom.net, DUNNO [recipient_count=1, size=405, process_time=0.0016s]

Cheers.

- GZ