1

Topic: Multiple Logo For Multiple Domain into Single iRedMail Instance

======== Required information ====
- iRedMail version: Latest(0.8.7)
- Store mail accounts in which backend (LDAP/MySQL/PGSQL): LDAP
- Linux/BSD distribution name and version: CentOS 6.3 64 Bit
- Related log if you're reporting an issue:
====

Hi,
I have one iRedMail Pro license and I am planning to host multiple domain for a single organization. Everything is working fine,but I have some custom requirements as below.
1. I want different logo for each domain. How do I do this in iRedMail ?
2. I have a mailing distribution list (ie. developers@centsymmetry.com ) and I want only one user (ie. manager@centsymmetry.com ) should have access to send mail to the distribution list. No body else should not allowed to send mail to that particular distribution list.

Regards,
DJ

----

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

2

Re: Multiple Logo For Multiple Domain into Single iRedMail Instance

solutions wrote:

1. I want different logo for each domain. How do I do this in iRedMail ?

What do you expect if one domain admin can manage multiple domains? Which company logo should we display?

solutions wrote:

2. I have a mailing distribution list (ie. developers@centsymmetry.com ) and I want only one user (ie. manager@centsymmetry.com ) should have access to send mail to the distribution list. No body else should not allowed to send mail to that particular distribution list.

Already implemented in iRedAdmin-Pro, you can go to profile page of this mailing list, then select one for "Who can send email to this list":

http://www.iredmail.org/images/iredadmin/maillist_profile_general.png

3

Re: Multiple Logo For Multiple Domain into Single iRedMail Instance

ZhangHuangbin wrote:
solutions wrote:

1. I want different logo for each domain. How do I do this in iRedMail ?

What do you expect if one domain admin can manage multiple domains? Which company logo should we display?

hi,
copy your logo image into /var/www/roundcubemail/skins/larry/images/    (if using larry theme)
edit -> defaults.inc.php

nano /var/www/roundcubemail/config/defaults.inc.php
# remove $config['skin_logo'] = null;
change into this :

$add_url=$_SERVER['HTTP_HOST'];
if ($add_url=='webmail.domain1.com') {
                $config['skin_logo'] = 'skins/larry/images/domain1_logo.png';
        } elseif ($add_url=='webmail.domain2.com') {
                $config['skin_logo'] = 'skins/larry/images/domain2_logo.png';
        } else {
                $config['skin_logo'] = null;
}

hopefully this can help you, sorry if this is not the solution..

4

Re: Multiple Logo For Multiple Domain into Single iRedMail Instance

try to build vhosts for each domain then you can choose any one roundcube style you like.