1

Topic: Search Field Full Email Search

==== ==== Required information ====
- iRedMail version: v1.9.0 (LDAP)
- Store mail accounts in which backend (LDAP/MySQL/PGSQL): LDAP
- Linux/BSD distribution name and version: Redhat
- Related log if you're reporting an issue:
====

When doing a search for the full email address e.g user@domain.com it comes up blank. Not really a bug but it would be nice to display the email for quick access.

----

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

2

Re: Search Field Full Email Search

I will try to reproduce this issue later, thanks for your feedback. smile

3

Re: Search Field Full Email Search

Confirmed that it's a bug in the latest iRedAdmin-Pro-LDAP-1.9.0.

Attachment is the patch to fix this issue, you can apply it with below steps:

- Download attached patch, upload it to the server which running iRedAdmin-Pro. for example, /root/search_with_full_email.patch.
- Change current working directory in terminal to the root directory of iRedAdmin-Pro. For example:

# cd /var/www/iRedAdmin-Pro-LDAP-1.9.0/

- Verify patch first:

# patch --dry-run -p1 < /root/search_with_full_email.patch
patching file libs/ldaplib/connUtils.py

- If you got the SAME output message, it's safe to apply this patch immediately (without --dry-run):

# patch -p1 < /root/search_with_full_email.patch

- Restart Apache web server to load patched source file.

That's all. let me know if it doesn't work for you. Thanks again for your feedback.

Note: If you downloaded iRedAdmin-Pro after i released this patch, then you don't need this path. It's already fixed in the one you downloaded.

Post's attachments

search_with_full_email.patch 1.04 kb, 4 downloads since 2013-03-27 

You don't have the permssions to download the attachments of this post.

4

Re: Search Field Full Email Search

Awesome thanks