King0770-Notes-Internal-False-Positives: Difference between revisions

No edit summary
 
(2 intermediate revisions by the same user not shown)
Line 2: Line 2:
Sometimes users will blacklist their own domains by mistake.<br>
Sometimes users will blacklist their own domains by mistake.<br>


==Check internal users==
===Check internal users===
Use the ldapsearch command as the zimbra to find out who's blocking internal domains.<br>
Use the ldapsearch command as the zimbra user to find out who's blocking internal domains.<br>


<code><pre>
<code><pre>
Line 19: Line 19:
</pre></code>
</pre></code>


==Update and remove==
===Update and remove===
Once you find the account that was blacklisting the internal domain, update it; here's an example.<br>
Once you find the account that was blacklisting the internal domain, update it; here's an example.<br>
<code><pre>
<code><pre>
Line 30: Line 30:
[[Category:Command Line Interface]]
[[Category:Command Line Interface]]
[[Category:LDAP]]
[[Category:LDAP]]
[[Category:King0770-Notes]]

Latest revision as of 19:03, 20 December 2018

Scenario

Sometimes users will blacklist their own domains by mistake.

Check internal users

Use the ldapsearch command as the zimbra user to find out who's blocking internal domains.

source ~/bin/zmshutil; zmsetvars

ldapsearch -LLL -h ldap.example.com -D $zimbra_ldap_userdn -w $zimbra_ldap_password 'amavisBlacklistSender=*@example.com' displayName mail amavisBlacklistSender

Example from the ldapsearch results.

dn: uid=jramerez,ou=people,dc=example,dc=com
mail: jramerez@example.com
amavisBlacklistSender: @example.com
displayName: Jake Ramerez

Update and remove

Once you find the account that was blacklisting the internal domain, update it; here's an example.

zmprov ma jramerez@example.com -amavisBlacklistSender "@example.com"          <<== note the use of the hyphen character

More articles written by me, https://wiki.zimbra.com/wiki/King0770-Notes

Jump to: navigation, search