From 0bd380426587644eb312242fac289359a4bf5861 Mon Sep 17 00:00:00 2001 From: the-djmaze <> Date: Mon, 23 Sep 2024 03:54:31 +0200 Subject: [PATCH] New Sieve GUI improvements #80 --- dev/Sieve/Extensions/rfc5232.js | 9 +-- dev/Sieve/Grammar.js | 5 +- dev/Sieve/View/Script.js | 2 +- dev/Styles/User/SettingsFilters.less | 13 +++++ .../templates/Views/Sieve/AddFlagCommand.html | 4 +- .../Views/Sieve/AddHeaderCommand.html | 6 +- .../templates/Views/Sieve/AddressTest.html | 10 ++-- .../app/templates/Views/Sieve/BodyTest.html | 2 +- .../Views/Sieve/CurrentDateTest.html | 6 +- .../app/templates/Views/Sieve/DateTest.html | 14 ++--- .../Views/Sieve/DeleteHeaderCommand.html | 10 ++-- .../templates/Views/Sieve/ElsIfCommand.html | 18 +++--- .../templates/Views/Sieve/ElseCommand.html | 14 +++-- .../templates/Views/Sieve/EncloseCommand.html | 4 +- .../templates/Views/Sieve/EnvelopeTest.html | 6 +- .../Views/Sieve/EnvironmentTest.html | 4 +- .../templates/Views/Sieve/ErejectCommand.html | 2 +- .../templates/Views/Sieve/ErrorCommand.html | 2 +- .../app/templates/Views/Sieve/ExistsTest.html | 2 +- .../Views/Sieve/ExtractTextCommand.html | 4 +- .../Views/Sieve/FileIntoCommand.html | 2 +- .../Views/Sieve/ForEveryPartCommand.html | 2 +- .../templates/Views/Sieve/GlobalCommand.html | 2 +- .../templates/Views/Sieve/HasFlagTest.html | 4 +- .../app/templates/Views/Sieve/HeaderTest.html | 58 +++++++++++-------- .../app/templates/Views/Sieve/IHaveTest.html | 2 +- .../app/templates/Views/Sieve/IfCommand.html | 18 +++--- .../templates/Views/Sieve/IncludeCommand.html | 8 +-- .../Views/Sieve/MailboxExistsTest.html | 2 +- .../Views/Sieve/MetadataExistsTest.html | 4 +- .../templates/Views/Sieve/MetadataTest.html | 6 +- .../templates/Views/Sieve/NotifyCommand.html | 10 ++-- .../Sieve/NotifyMethodCapabilityTest.html | 6 +- .../templates/Views/Sieve/RejectCommand.html | 2 +- .../Views/Sieve/RemoveFlagCommand.html | 4 +- .../templates/Views/Sieve/ReplaceCommand.html | 8 +-- .../Views/Sieve/ServerMetadataExistsTest.html | 2 +- .../Views/Sieve/ServerMetadataTest.html | 4 +- .../app/templates/Views/Sieve/SetCommand.html | 4 +- .../templates/Views/Sieve/SetFlagCommand.html | 4 +- .../app/templates/Views/Sieve/SizeTest.html | 4 +- .../templates/Views/Sieve/SpamTestTest.html | 4 +- .../app/templates/Views/Sieve/StringTest.html | 4 +- .../Views/Sieve/VacationCommand.html | 16 ++--- .../Views/Sieve/ValidExtListTest.html | 2 +- .../Views/Sieve/ValidNotifyMethodTest.html | 2 +- .../templates/Views/Sieve/VirusTestTest.html | 2 +- .../app/templates/Views/Sieve/_Command.html | 2 + 48 files changed, 181 insertions(+), 144 deletions(-) create mode 100644 snappymail/v/0.0.0/app/templates/Views/Sieve/_Command.html diff --git a/dev/Sieve/Extensions/rfc5232.js b/dev/Sieve/Extensions/rfc5232.js index 002ad0b7a..0577cde1d 100644 --- a/dev/Sieve/Extensions/rfc5232.js +++ b/dev/Sieve/Extensions/rfc5232.js @@ -43,11 +43,12 @@ class FlagCommand extends ActionCommand if (args[0] instanceof GrammarQuotedString) { this._variablename = args[0]; } - if (args[1] instanceof GrammarString) { - this.list_of_flags = args[1]; - } - } else if (args[0] instanceof GrammarString) { + args[0] = args[1]; + } + if (args[0] instanceof GrammarStringList) { this.list_of_flags = args[0]; + } else if (args[0]) { + this.list_of_flags.push(args[0]); } } } diff --git a/dev/Sieve/Grammar.js b/dev/Sieve/Grammar.js index e570966ba..5fb21c71e 100644 --- a/dev/Sieve/Grammar.js +++ b/dev/Sieve/Grammar.js @@ -18,7 +18,7 @@ export class GrammarString /*extends String*/ { constructor(value = '') { - this._value = value; + this._value = value.toString ? value.toString() : value; } toString() @@ -227,6 +227,7 @@ export class GrammarStringList extends Array { toString() { + // if there is only a single string, the brackets are optional if (1 < this.length) { return '[' + this.join(',') + ']'; } @@ -235,7 +236,7 @@ export class GrammarStringList extends Array push(value) { - if (!(value instanceof GrammarString)) { + if (!(value instanceof GrammarQuotedString)) { value = new GrammarQuotedString(value); } super.push(value); diff --git a/dev/Sieve/View/Script.js b/dev/Sieve/View/Script.js index c7c3dcfcf..02ebbb9ef 100644 --- a/dev/Sieve/View/Script.js +++ b/dev/Sieve/View/Script.js @@ -134,7 +134,7 @@ export class SieveScriptPopupView extends rl.pluginPopupView { templateName(obj) { const id = 'Sieve' + obj.constructor.name; - return document.getElementById(id) ? id : null; + return document.getElementById(id) ? id : 'SieveCommand'; } beforeShow(oScript) { diff --git a/dev/Styles/User/SettingsFilters.less b/dev/Styles/User/SettingsFilters.less index ef70221b8..ea8073585 100644 --- a/dev/Styles/User/SettingsFilters.less +++ b/dev/Styles/User/SettingsFilters.less @@ -34,3 +34,16 @@ height: 300px; font-family: var(--fontMono); } + +.sieve-block { + border: 1px solid var(--border-color, #ddd); + margin: 1em 0; + padding: 0.5em; +} + +.sieve-block > div { + padding-left:2em; +} +.sieve-block > details > div { + padding-left:1em; +} diff --git a/snappymail/v/0.0.0/app/templates/Views/Sieve/AddFlagCommand.html b/snappymail/v/0.0.0/app/templates/Views/Sieve/AddFlagCommand.html index 58bcabdf4..01cd7af92 100644 --- a/snappymail/v/0.0.0/app/templates/Views/Sieve/AddFlagCommand.html +++ b/snappymail/v/0.0.0/app/templates/Views/Sieve/AddFlagCommand.html @@ -1,4 +1,4 @@ addflag - - + + diff --git a/snappymail/v/0.0.0/app/templates/Views/Sieve/AddHeaderCommand.html b/snappymail/v/0.0.0/app/templates/Views/Sieve/AddHeaderCommand.html index d77e6acfc..0afbd1934 100644 --- a/snappymail/v/0.0.0/app/templates/Views/Sieve/AddHeaderCommand.html +++ b/snappymail/v/0.0.0/app/templates/Views/Sieve/AddHeaderCommand.html @@ -1,5 +1,5 @@ addheader - - - + + + diff --git a/snappymail/v/0.0.0/app/templates/Views/Sieve/AddressTest.html b/snappymail/v/0.0.0/app/templates/Views/Sieve/AddressTest.html index 370d806dc..977eb785c 100644 --- a/snappymail/v/0.0.0/app/templates/Views/Sieve/AddressTest.html +++ b/snappymail/v/0.0.0/app/templates/Views/Sieve/AddressTest.html @@ -1,13 +1,13 @@ address - - - - - + + + + // mime // anychild diff --git a/snappymail/v/0.0.0/app/templates/Views/Sieve/BodyTest.html b/snappymail/v/0.0.0/app/templates/Views/Sieve/BodyTest.html index acd28811d..63dd94c3d 100644 --- a/snappymail/v/0.0.0/app/templates/Views/Sieve/BodyTest.html +++ b/snappymail/v/0.0.0/app/templates/Views/Sieve/BodyTest.html @@ -1,4 +1,4 @@ body body_transform = ''; // :raw, :content , :text - + diff --git a/snappymail/v/0.0.0/app/templates/Views/Sieve/CurrentDateTest.html b/snappymail/v/0.0.0/app/templates/Views/Sieve/CurrentDateTest.html index 34c643000..6188f53c9 100644 --- a/snappymail/v/0.0.0/app/templates/Views/Sieve/CurrentDateTest.html +++ b/snappymail/v/0.0.0/app/templates/Views/Sieve/CurrentDateTest.html @@ -1,5 +1,5 @@ currentdate - - - + + + diff --git a/snappymail/v/0.0.0/app/templates/Views/Sieve/DateTest.html b/snappymail/v/0.0.0/app/templates/Views/Sieve/DateTest.html index 9f623fc12..1a7e1acc8 100644 --- a/snappymail/v/0.0.0/app/templates/Views/Sieve/DateTest.html +++ b/snappymail/v/0.0.0/app/templates/Views/Sieve/DateTest.html @@ -1,9 +1,9 @@ date - - - - - - - + + + + + + + diff --git a/snappymail/v/0.0.0/app/templates/Views/Sieve/DeleteHeaderCommand.html b/snappymail/v/0.0.0/app/templates/Views/Sieve/DeleteHeaderCommand.html index 2e76caa2a..23efa8810 100644 --- a/snappymail/v/0.0.0/app/templates/Views/Sieve/DeleteHeaderCommand.html +++ b/snappymail/v/0.0.0/app/templates/Views/Sieve/DeleteHeaderCommand.html @@ -1,13 +1,13 @@ deleteheader - - + + comparator = '', - - - + + diff --git a/snappymail/v/0.0.0/app/templates/Views/Sieve/ElsIfCommand.html b/snappymail/v/0.0.0/app/templates/Views/Sieve/ElsIfCommand.html index eb19c8138..bae8070b8 100644 --- a/snappymail/v/0.0.0/app/templates/Views/Sieve/ElsIfCommand.html +++ b/snappymail/v/0.0.0/app/templates/Views/Sieve/ElsIfCommand.html @@ -1,8 +1,12 @@ -elsif -
-{ -
-
-
-} +
+
+ +
+
+ { +
+
+
+ } +
diff --git a/snappymail/v/0.0.0/app/templates/Views/Sieve/ElseCommand.html b/snappymail/v/0.0.0/app/templates/Views/Sieve/ElseCommand.html index 8aa233fc8..19b9534ad 100644 --- a/snappymail/v/0.0.0/app/templates/Views/Sieve/ElseCommand.html +++ b/snappymail/v/0.0.0/app/templates/Views/Sieve/ElseCommand.html @@ -1,7 +1,9 @@ -else -{ -
-
-
-} +
+ else + { +
+
+
+ } +
diff --git a/snappymail/v/0.0.0/app/templates/Views/Sieve/EncloseCommand.html b/snappymail/v/0.0.0/app/templates/Views/Sieve/EncloseCommand.html index 80972d28d..1d1fa6cd8 100644 --- a/snappymail/v/0.0.0/app/templates/Views/Sieve/EncloseCommand.html +++ b/snappymail/v/0.0.0/app/templates/Views/Sieve/EncloseCommand.html @@ -1,4 +1,4 @@ enclose - - + + diff --git a/snappymail/v/0.0.0/app/templates/Views/Sieve/EnvelopeTest.html b/snappymail/v/0.0.0/app/templates/Views/Sieve/EnvelopeTest.html index a3f9906df..887a0321d 100644 --- a/snappymail/v/0.0.0/app/templates/Views/Sieve/EnvelopeTest.html +++ b/snappymail/v/0.0.0/app/templates/Views/Sieve/EnvelopeTest.html @@ -1,9 +1,9 @@ envelope - - - + + diff --git a/snappymail/v/0.0.0/app/templates/Views/Sieve/EnvironmentTest.html b/snappymail/v/0.0.0/app/templates/Views/Sieve/EnvironmentTest.html index 09d51c996..9b2ab6085 100644 --- a/snappymail/v/0.0.0/app/templates/Views/Sieve/EnvironmentTest.html +++ b/snappymail/v/0.0.0/app/templates/Views/Sieve/EnvironmentTest.html @@ -1,4 +1,4 @@ environment - - + + diff --git a/snappymail/v/0.0.0/app/templates/Views/Sieve/ErejectCommand.html b/snappymail/v/0.0.0/app/templates/Views/Sieve/ErejectCommand.html index db76e8980..028b313b2 100644 --- a/snappymail/v/0.0.0/app/templates/Views/Sieve/ErejectCommand.html +++ b/snappymail/v/0.0.0/app/templates/Views/Sieve/ErejectCommand.html @@ -1,3 +1,3 @@ ereject - + diff --git a/snappymail/v/0.0.0/app/templates/Views/Sieve/ErrorCommand.html b/snappymail/v/0.0.0/app/templates/Views/Sieve/ErrorCommand.html index fccab2766..6e800ac81 100644 --- a/snappymail/v/0.0.0/app/templates/Views/Sieve/ErrorCommand.html +++ b/snappymail/v/0.0.0/app/templates/Views/Sieve/ErrorCommand.html @@ -1,3 +1,3 @@ error - + diff --git a/snappymail/v/0.0.0/app/templates/Views/Sieve/ExistsTest.html b/snappymail/v/0.0.0/app/templates/Views/Sieve/ExistsTest.html index f34c4674c..5a13c22a9 100644 --- a/snappymail/v/0.0.0/app/templates/Views/Sieve/ExistsTest.html +++ b/snappymail/v/0.0.0/app/templates/Views/Sieve/ExistsTest.html @@ -1,5 +1,5 @@ exists - + // mime // anychild diff --git a/snappymail/v/0.0.0/app/templates/Views/Sieve/ExtractTextCommand.html b/snappymail/v/0.0.0/app/templates/Views/Sieve/ExtractTextCommand.html index e0d3f12d4..0487bb259 100644 --- a/snappymail/v/0.0.0/app/templates/Views/Sieve/ExtractTextCommand.html +++ b/snappymail/v/0.0.0/app/templates/Views/Sieve/ExtractTextCommand.html @@ -1,5 +1,5 @@ extracttext modifiers = []; - - + + diff --git a/snappymail/v/0.0.0/app/templates/Views/Sieve/FileIntoCommand.html b/snappymail/v/0.0.0/app/templates/Views/Sieve/FileIntoCommand.html index 9c2799152..458c48004 100644 --- a/snappymail/v/0.0.0/app/templates/Views/Sieve/FileIntoCommand.html +++ b/snappymail/v/0.0.0/app/templates/Views/Sieve/FileIntoCommand.html @@ -1,5 +1,5 @@ fileinto + - diff --git a/snappymail/v/0.0.0/app/templates/Views/Sieve/ForEveryPartCommand.html b/snappymail/v/0.0.0/app/templates/Views/Sieve/ForEveryPartCommand.html index f184bda87..619d76751 100644 --- a/snappymail/v/0.0.0/app/templates/Views/Sieve/ForEveryPartCommand.html +++ b/snappymail/v/0.0.0/app/templates/Views/Sieve/ForEveryPartCommand.html @@ -1,4 +1,4 @@ foreverypart - +
diff --git a/snappymail/v/0.0.0/app/templates/Views/Sieve/GlobalCommand.html b/snappymail/v/0.0.0/app/templates/Views/Sieve/GlobalCommand.html index 62012817c..d16b93ea7 100644 --- a/snappymail/v/0.0.0/app/templates/Views/Sieve/GlobalCommand.html +++ b/snappymail/v/0.0.0/app/templates/Views/Sieve/GlobalCommand.html @@ -1,3 +1,3 @@ global - + diff --git a/snappymail/v/0.0.0/app/templates/Views/Sieve/HasFlagTest.html b/snappymail/v/0.0.0/app/templates/Views/Sieve/HasFlagTest.html index 6a98cade4..1d3791960 100644 --- a/snappymail/v/0.0.0/app/templates/Views/Sieve/HasFlagTest.html +++ b/snappymail/v/0.0.0/app/templates/Views/Sieve/HasFlagTest.html @@ -1,4 +1,4 @@ hasflag - - + + diff --git a/snappymail/v/0.0.0/app/templates/Views/Sieve/HeaderTest.html b/snappymail/v/0.0.0/app/templates/Views/Sieve/HeaderTest.html index 6ed1c5685..0cf1dc85b 100644 --- a/snappymail/v/0.0.0/app/templates/Views/Sieve/HeaderTest.html +++ b/snappymail/v/0.0.0/app/templates/Views/Sieve/HeaderTest.html @@ -1,25 +1,35 @@ -header - - - - - - - - - - - - - + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+ +
+ +
+ diff --git a/snappymail/v/0.0.0/app/templates/Views/Sieve/IHaveTest.html b/snappymail/v/0.0.0/app/templates/Views/Sieve/IHaveTest.html index cec46605d..d41861371 100644 --- a/snappymail/v/0.0.0/app/templates/Views/Sieve/IHaveTest.html +++ b/snappymail/v/0.0.0/app/templates/Views/Sieve/IHaveTest.html @@ -1,3 +1,3 @@ ihave - + diff --git a/snappymail/v/0.0.0/app/templates/Views/Sieve/IfCommand.html b/snappymail/v/0.0.0/app/templates/Views/Sieve/IfCommand.html index fa92d26f3..d49dffd5f 100644 --- a/snappymail/v/0.0.0/app/templates/Views/Sieve/IfCommand.html +++ b/snappymail/v/0.0.0/app/templates/Views/Sieve/IfCommand.html @@ -1,8 +1,12 @@ -if -
-{ -
-
-
-} +
+
+ +
+
+ { +
+
+
+ } +
diff --git a/snappymail/v/0.0.0/app/templates/Views/Sieve/IncludeCommand.html b/snappymail/v/0.0.0/app/templates/Views/Sieve/IncludeCommand.html index bf0575d47..f96a78d5e 100644 --- a/snappymail/v/0.0.0/app/templates/Views/Sieve/IncludeCommand.html +++ b/snappymail/v/0.0.0/app/templates/Views/Sieve/IncludeCommand.html @@ -1,6 +1,6 @@ include - // ':personal' / ':global'; - - - + // ':personal' / ':global'; + + + diff --git a/snappymail/v/0.0.0/app/templates/Views/Sieve/MailboxExistsTest.html b/snappymail/v/0.0.0/app/templates/Views/Sieve/MailboxExistsTest.html index 396dc0e37..51a7a75c0 100644 --- a/snappymail/v/0.0.0/app/templates/Views/Sieve/MailboxExistsTest.html +++ b/snappymail/v/0.0.0/app/templates/Views/Sieve/MailboxExistsTest.html @@ -1,3 +1,3 @@ mailboxexists - + diff --git a/snappymail/v/0.0.0/app/templates/Views/Sieve/MetadataExistsTest.html b/snappymail/v/0.0.0/app/templates/Views/Sieve/MetadataExistsTest.html index 591514f93..bd4af2254 100644 --- a/snappymail/v/0.0.0/app/templates/Views/Sieve/MetadataExistsTest.html +++ b/snappymail/v/0.0.0/app/templates/Views/Sieve/MetadataExistsTest.html @@ -1,4 +1,4 @@ metadataexists - - + + diff --git a/snappymail/v/0.0.0/app/templates/Views/Sieve/MetadataTest.html b/snappymail/v/0.0.0/app/templates/Views/Sieve/MetadataTest.html index 175433dd5..dd7824d99 100644 --- a/snappymail/v/0.0.0/app/templates/Views/Sieve/MetadataTest.html +++ b/snappymail/v/0.0.0/app/templates/Views/Sieve/MetadataTest.html @@ -1,5 +1,5 @@ metadata - - - + + + diff --git a/snappymail/v/0.0.0/app/templates/Views/Sieve/NotifyCommand.html b/snappymail/v/0.0.0/app/templates/Views/Sieve/NotifyCommand.html index b12358d63..c545501a2 100644 --- a/snappymail/v/0.0.0/app/templates/Views/Sieve/NotifyCommand.html +++ b/snappymail/v/0.0.0/app/templates/Views/Sieve/NotifyCommand.html @@ -1,7 +1,7 @@ notify - - - - - + + + + + diff --git a/snappymail/v/0.0.0/app/templates/Views/Sieve/NotifyMethodCapabilityTest.html b/snappymail/v/0.0.0/app/templates/Views/Sieve/NotifyMethodCapabilityTest.html index 1fbf7e2e3..19338a107 100644 --- a/snappymail/v/0.0.0/app/templates/Views/Sieve/NotifyMethodCapabilityTest.html +++ b/snappymail/v/0.0.0/app/templates/Views/Sieve/NotifyMethodCapabilityTest.html @@ -1,5 +1,5 @@ notifymethodcapability - - - + + + diff --git a/snappymail/v/0.0.0/app/templates/Views/Sieve/RejectCommand.html b/snappymail/v/0.0.0/app/templates/Views/Sieve/RejectCommand.html index de6c2827d..fe2c0ccba 100644 --- a/snappymail/v/0.0.0/app/templates/Views/Sieve/RejectCommand.html +++ b/snappymail/v/0.0.0/app/templates/Views/Sieve/RejectCommand.html @@ -1,3 +1,3 @@ reject - + diff --git a/snappymail/v/0.0.0/app/templates/Views/Sieve/RemoveFlagCommand.html b/snappymail/v/0.0.0/app/templates/Views/Sieve/RemoveFlagCommand.html index 6e3ad5ad1..8d7903539 100644 --- a/snappymail/v/0.0.0/app/templates/Views/Sieve/RemoveFlagCommand.html +++ b/snappymail/v/0.0.0/app/templates/Views/Sieve/RemoveFlagCommand.html @@ -1,4 +1,4 @@ removeflag - - + + diff --git a/snappymail/v/0.0.0/app/templates/Views/Sieve/ReplaceCommand.html b/snappymail/v/0.0.0/app/templates/Views/Sieve/ReplaceCommand.html index d835cd674..c38a898aa 100644 --- a/snappymail/v/0.0.0/app/templates/Views/Sieve/ReplaceCommand.html +++ b/snappymail/v/0.0.0/app/templates/Views/Sieve/ReplaceCommand.html @@ -1,6 +1,6 @@ replace - - - - + + + + diff --git a/snappymail/v/0.0.0/app/templates/Views/Sieve/ServerMetadataExistsTest.html b/snappymail/v/0.0.0/app/templates/Views/Sieve/ServerMetadataExistsTest.html index e7615cc9b..03e56aa7f 100644 --- a/snappymail/v/0.0.0/app/templates/Views/Sieve/ServerMetadataExistsTest.html +++ b/snappymail/v/0.0.0/app/templates/Views/Sieve/ServerMetadataExistsTest.html @@ -1,3 +1,3 @@ servermetadataexists - + diff --git a/snappymail/v/0.0.0/app/templates/Views/Sieve/ServerMetadataTest.html b/snappymail/v/0.0.0/app/templates/Views/Sieve/ServerMetadataTest.html index dd84e9794..bb3d86a09 100644 --- a/snappymail/v/0.0.0/app/templates/Views/Sieve/ServerMetadataTest.html +++ b/snappymail/v/0.0.0/app/templates/Views/Sieve/ServerMetadataTest.html @@ -1,4 +1,4 @@ servermetadata - - + + diff --git a/snappymail/v/0.0.0/app/templates/Views/Sieve/SetCommand.html b/snappymail/v/0.0.0/app/templates/Views/Sieve/SetCommand.html index 4d3a3cdeb..725c1afde 100644 --- a/snappymail/v/0.0.0/app/templates/Views/Sieve/SetCommand.html +++ b/snappymail/v/0.0.0/app/templates/Views/Sieve/SetCommand.html @@ -1,5 +1,5 @@ set modifiers = []; - - + + diff --git a/snappymail/v/0.0.0/app/templates/Views/Sieve/SetFlagCommand.html b/snappymail/v/0.0.0/app/templates/Views/Sieve/SetFlagCommand.html index b4b93cf2d..8f3cae0d7 100644 --- a/snappymail/v/0.0.0/app/templates/Views/Sieve/SetFlagCommand.html +++ b/snappymail/v/0.0.0/app/templates/Views/Sieve/SetFlagCommand.html @@ -1,4 +1,4 @@ setflag - - + + diff --git a/snappymail/v/0.0.0/app/templates/Views/Sieve/SizeTest.html b/snappymail/v/0.0.0/app/templates/Views/Sieve/SizeTest.html index 4b71de229..e4c1a930d 100644 --- a/snappymail/v/0.0.0/app/templates/Views/Sieve/SizeTest.html +++ b/snappymail/v/0.0.0/app/templates/Views/Sieve/SizeTest.html @@ -1,7 +1,7 @@ size - - + diff --git a/snappymail/v/0.0.0/app/templates/Views/Sieve/SpamTestTest.html b/snappymail/v/0.0.0/app/templates/Views/Sieve/SpamTestTest.html index 4da00e13a..861e647f3 100644 --- a/snappymail/v/0.0.0/app/templates/Views/Sieve/SpamTestTest.html +++ b/snappymail/v/0.0.0/app/templates/Views/Sieve/SpamTestTest.html @@ -1,4 +1,4 @@ spamtest - - + + diff --git a/snappymail/v/0.0.0/app/templates/Views/Sieve/StringTest.html b/snappymail/v/0.0.0/app/templates/Views/Sieve/StringTest.html index c95aa7a52..fb3d85e34 100644 --- a/snappymail/v/0.0.0/app/templates/Views/Sieve/StringTest.html +++ b/snappymail/v/0.0.0/app/templates/Views/Sieve/StringTest.html @@ -1,4 +1,4 @@ string - - + + diff --git a/snappymail/v/0.0.0/app/templates/Views/Sieve/VacationCommand.html b/snappymail/v/0.0.0/app/templates/Views/Sieve/VacationCommand.html index adaa5f037..6b8c25e56 100644 --- a/snappymail/v/0.0.0/app/templates/Views/Sieve/VacationCommand.html +++ b/snappymail/v/0.0.0/app/templates/Views/Sieve/VacationCommand.html @@ -1,10 +1,10 @@ vacation - - - - - - - - // QuotedString / MultiLine + + + + + + + + // QuotedString / MultiLine diff --git a/snappymail/v/0.0.0/app/templates/Views/Sieve/ValidExtListTest.html b/snappymail/v/0.0.0/app/templates/Views/Sieve/ValidExtListTest.html index 6683147cd..914885fde 100644 --- a/snappymail/v/0.0.0/app/templates/Views/Sieve/ValidExtListTest.html +++ b/snappymail/v/0.0.0/app/templates/Views/Sieve/ValidExtListTest.html @@ -1,3 +1,3 @@ validextlist - + diff --git a/snappymail/v/0.0.0/app/templates/Views/Sieve/ValidNotifyMethodTest.html b/snappymail/v/0.0.0/app/templates/Views/Sieve/ValidNotifyMethodTest.html index 8aefe0c7f..0669c18a3 100644 --- a/snappymail/v/0.0.0/app/templates/Views/Sieve/ValidNotifyMethodTest.html +++ b/snappymail/v/0.0.0/app/templates/Views/Sieve/ValidNotifyMethodTest.html @@ -1,3 +1,3 @@ validnotifymethod - + diff --git a/snappymail/v/0.0.0/app/templates/Views/Sieve/VirusTestTest.html b/snappymail/v/0.0.0/app/templates/Views/Sieve/VirusTestTest.html index 80fa73d5a..316964fb9 100644 --- a/snappymail/v/0.0.0/app/templates/Views/Sieve/VirusTestTest.html +++ b/snappymail/v/0.0.0/app/templates/Views/Sieve/VirusTestTest.html @@ -1,3 +1,3 @@ virustest - // 1 - 5 + // 1 - 5 diff --git a/snappymail/v/0.0.0/app/templates/Views/Sieve/_Command.html b/snappymail/v/0.0.0/app/templates/Views/Sieve/_Command.html new file mode 100644 index 000000000..dcd14f3e4 --- /dev/null +++ b/snappymail/v/0.0.0/app/templates/Views/Sieve/_Command.html @@ -0,0 +1,2 @@ + +