File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 88Fixed:
99- Display of Multilinks where linked Class labelprop values are None
1010- Fix references to the old * Registration Permissions
11+ - Fix missing merge of fix to sf bug 1177057
1112
1213
13142005-07-18 0.8.4
Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ class node. Any parts of other types are each stored in separate files
7272an exception, the original message is bounced back to the sender with the
7373explanatory message given in the exception.
7474
75- $Id: mailgw.py,v 1.159.2.6 2005-06-24 07:17:08 richard Exp $
75+ $Id: mailgw.py,v 1.159.2.7 2005-09-26 02:14:07 richard Exp $
7676"""
7777__docformat__ = 'restructuredtext'
7878
@@ -778,7 +778,8 @@ def handle_message(self, message):
778778 # Don't create users if anonymous isn't allowed to register
779779 create = 1
780780 anonid = self .db .user .lookup ('anonymous' )
781- if not self .db .security .hasPermission ('Create' , anonid , 'user' ):
781+ if not (self .db .security .hasPermission ('Create' , anonid , 'user' )
782+ and self .db .security .hasPermission ('Email Access' , anonid )):
782783 create = 0
783784
784785 # ok, now figure out who the author is - create a new user if the
You can’t perform that action at this time.
0 commit comments