diff options
author | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2018-06-26 15:35:56 +0200 |
---|---|---|
committer | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2018-06-26 15:35:56 +0200 |
commit | b0a8abbb4aacbb93cfba491ee58f6d1bb85d210e (patch) | |
tree | 9a8df59b48445ee0f5cd4435a6676f2c99de3b1b | |
parent | 89e1e560eba5758b36ed626f284df9eb39d8ba01 (diff) | |
download | pykolab-b0a8abbb4aacbb93cfba491ee58f6d1bb85d210e.tar.gz |
Resolve T2274 by implementing D587 that arcanist won't apply because the non-existent base commit does not exist in the local repository
-rwxr-xr-x | bin/kolab_smtp_access_policy.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/kolab_smtp_access_policy.py b/bin/kolab_smtp_access_policy.py index 17152dd..be1681d 100755 --- a/bin/kolab_smtp_access_policy.py +++ b/bin/kolab_smtp_access_policy.py @@ -89,8 +89,8 @@ policy_result_table = Table( Column('id', Integer, Sequence('seq_id_result'), primary_key=True), Column('key', String(16), nullable=False), Column('value', Boolean, nullable=False), - Column('sender', String(64), nullable=True), - Column('recipient', String(64), nullable=False), + Column('sender', String(254), nullable=True), + Column('recipient', String(254), nullable=False), Column('sasl_username', String(64)), Column('sasl_sender', String(64)), Column('created', Integer, nullable=False), @@ -133,8 +133,8 @@ mapper(PolicyResult, policy_result_table) statistic_table = Table( 'statistic', metadata, Column('id', Integer, Sequence('seq_id_statistic'), primary_key=True), - Column('sender', String(64), nullable=False), - Column('recipient', String(64), nullable=False), + Column('sender', String(254), nullable=False), + Column('recipient', String(254), nullable=False), Column('date', Date, nullable=False), Column('count', Integer, nullable=False), ) |