Skip to content

Commit

Permalink
tweak(Felamimail/Sieve/Rule): limit auto-reply text to 255 chars in e…
Browse files Browse the repository at this point in the history
…dit dialog

... it is already limited on the server
(see \Felamimail_Model_Sieve_Rule::setFromFSR)
  • Loading branch information
pschuele committed Nov 18, 2024
1 parent 2ec0ebd commit 3bcaeb4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tine20/Felamimail/js/sieve/RuleEditDialog.js
Original file line number Diff line number Diff line change
Expand Up @@ -391,8 +391,8 @@ Tine.Felamimail.sieve.RuleEditDialog = Ext.extend(Tine.widgets.dialog.EditDialog
name: 'action_argument_reject',
xtype: 'textarea',
width: 300,
maxLength: 255,
height: 60,
maxLength: 255,
hideLabel: true
}]
}, {
Expand All @@ -403,6 +403,7 @@ Tine.Felamimail.sieve.RuleEditDialog = Ext.extend(Tine.widgets.dialog.EditDialog
xtype: 'textarea',
width: 300,
height: 60,
maxLength: 255,
hideLabel: true
}]
}, {
Expand Down

0 comments on commit 3bcaeb4

Please sign in to comment.