1

Topic: how rename for a domain in iredmail?

==== Required information ====
- iRedMail version (check /etc/iredmail-release): 0.9.2
- Linux/BSD distribution name and version: ubuntu14
- Store mail accounts in which backend (LDAP/MySQL/PGSQL): mysql
- Web server (Apache or Nginx):apache
- Manage mail accounts with iRedAdmin-Pro?
- Related log if you're reporting an issue:
====
i have a domain and its some accounts.
i need to change name of the domain?
do i have to renew all users on the iredmail or is there any easier way?

2-) how can i extract all email addresses exist and active ?

----

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

2

Re: how rename for a domain in iredmail?

1) Reference: http://www.iredmail.org/forum/topic9566 … -name.html

yavuz.maslak wrote:

how can i extract all email addresses exist and active ?

Currently, you have to export it with SQL commands like below:

sql> USE vmail;
sql> SELECT username FROM mailbox WHERE active=1;

If you need to export mail alias accounts too, additional command is required:

sql> SELECT address FROM alias WHERE active=1;