1

Topic: iRedAdmin-Pro-LDAP-1.4.1 mail list cannot save selected profile

Profile of mail list under Who can send email to this list; profiles for Unrestricted, Users under domain xxx, Users under domain xxx and and it's sub-domain can be SAVED.
But NOT for Members, Moderators, Members and Moderators.

----

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

2

Re: iRedAdmin-Pro-LDAP-1.4.1 mail list cannot save selected profile

Thanks very much for your feedback.

It's a bug in v1.4.1. Fixed moment ago. You can fix it manually with this patch:

diff -r ef5f520eff87 templates/default/ldap/maillist/profile.html
--- templates/default/ldap/maillist/profile.html    Fri Apr 15 17:14:14 2011 +0800
+++ templates/default/ldap/maillist/profile.html    Fri Apr 15 18:01:07 2011 +0800
@@ -88,7 +88,7 @@
                             <div class="bt-space20"></div>
 
                             {# -- Access policy -- #}
-                            {% set accessPolicy = entries.get('accessPolicy', ['public'])[0].lower() %}
+                            {% set accessPolicy = entries.get('accessPolicy', ['public'])[0] %}
                             <input type="hidden" name="oldAccessPolicy" value="{{accessPolicy}}" />
 
                             {% set policies = [

The fact is, it will save access policy correctly, just didn't display it correctly.