From b0a8abbb4aacbb93cfba491ee58f6d1bb85d210e Mon Sep 17 00:00:00 2001 From: "Jeroen van Meeuwen (Kolab Systems)" Date: Tue, 26 Jun 2018 15:35:56 +0200 Subject: Resolve T2274 by implementing D587 that arcanist won't apply because the non-existent base commit does not exist in the local repository --- bin/kolab_smtp_access_policy.py | 8 ++++---- 1 file 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), ) -- cgit v1.1