From bf563321b3bfdc81eec1e4523e1ae59eca51da57 Mon Sep 17 00:00:00 2001 From: grez911 Date: Sun, 5 Feb 2017 18:26:37 +0300 Subject: [PATCH] Packed templates (because git don't support empty folders) --- TODO.txt | 2 + misc/init.sh | 5 ++ misc/template_en/control/addtohdr | 0 misc/template_en/control/customheaders | 0 misc/template_en/control/delheaders | 3 - misc/template_en/control/footer-html | 2 - misc/template_en/control/footer-text | 2 - misc/template_en/control/listaddress | 1 - misc/template_en/control/moderators | 0 misc/template_en/control/prefix | 0 misc/template_en/index | 0 misc/template_en/lastdigest | 0 misc/template_en/list_type.txt | 1 - misc/template_en/mlmmj-maintd.lastrun.log | 0 misc/template_en/text/confirm | 52 ------------- misc/template_en/text/deny | 76 ------------------- misc/template_en/text/deny-post | 63 ---------------- misc/template_en/text/digest | 5 -- misc/template_en/text/faq | 4 - misc/template_en/text/finish | 55 -------------- misc/template_en/text/finish-sub | 44 ----------- misc/template_en/text/gatekeep-sub | 19 ----- misc/template_en/text/help | 88 ---------------------- misc/template_en/text/list | 25 ------ misc/template_en/text/moderate-post | 41 ---------- misc/template_en/text/notify | 41 ---------- misc/template_en/text/probe | 11 --- misc/template_en/text/prologue | 2 - misc/template_en/text/wait-post | 1 - misc/template_en/text/wait-sub | 7 -- misc/template_ru/control/addtohdr | 0 misc/template_ru/control/customheaders | 0 misc/template_ru/control/delheaders | 3 - misc/template_ru/control/footer-html | 2 - misc/template_ru/control/footer-text | 2 - misc/template_ru/control/listaddress | 1 - misc/template_ru/control/moderators | 0 misc/template_ru/control/prefix | 0 misc/template_ru/index | 0 misc/template_ru/lastdigest | 0 misc/template_ru/list_type.txt | 1 - misc/template_ru/mlmmj-maintd.lastrun.log | 0 misc/template_ru/text/confirm | 45 ----------- misc/template_ru/text/deny | 35 --------- misc/template_ru/text/deny-post | 61 --------------- misc/template_ru/text/finish | 18 ----- misc/template_ru/text/finish-sub | 30 -------- misc/template_ru/text/moderate-post | 41 ---------- misc/template_ru/text/prologue | 1 - misc/template_ru/text/wait-post | 1 - misc/templates.tar.gz | Bin 0 -> 7642 bytes 51 files changed, 7 insertions(+), 784 deletions(-) create mode 100644 TODO.txt delete mode 100644 misc/template_en/control/addtohdr delete mode 100644 misc/template_en/control/customheaders delete mode 100644 misc/template_en/control/delheaders delete mode 100644 misc/template_en/control/footer-html delete mode 100644 misc/template_en/control/footer-text delete mode 100644 misc/template_en/control/listaddress delete mode 100644 misc/template_en/control/moderators delete mode 100644 misc/template_en/control/prefix delete mode 100644 misc/template_en/index delete mode 100644 misc/template_en/lastdigest delete mode 100644 misc/template_en/list_type.txt delete mode 100644 misc/template_en/mlmmj-maintd.lastrun.log delete mode 100644 misc/template_en/text/confirm delete mode 100644 misc/template_en/text/deny delete mode 100644 misc/template_en/text/deny-post delete mode 100644 misc/template_en/text/digest delete mode 100644 misc/template_en/text/faq delete mode 100644 misc/template_en/text/finish delete mode 100644 misc/template_en/text/finish-sub delete mode 100644 misc/template_en/text/gatekeep-sub delete mode 100644 misc/template_en/text/help delete mode 100644 misc/template_en/text/list delete mode 100644 misc/template_en/text/moderate-post delete mode 100644 misc/template_en/text/notify delete mode 100644 misc/template_en/text/probe delete mode 100644 misc/template_en/text/prologue delete mode 100644 misc/template_en/text/wait-post delete mode 100644 misc/template_en/text/wait-sub delete mode 100644 misc/template_ru/control/addtohdr delete mode 100644 misc/template_ru/control/customheaders delete mode 100644 misc/template_ru/control/delheaders delete mode 100644 misc/template_ru/control/footer-html delete mode 100644 misc/template_ru/control/footer-text delete mode 100644 misc/template_ru/control/listaddress delete mode 100644 misc/template_ru/control/moderators delete mode 100644 misc/template_ru/control/prefix delete mode 100644 misc/template_ru/index delete mode 100644 misc/template_ru/lastdigest delete mode 100644 misc/template_ru/list_type.txt delete mode 100644 misc/template_ru/mlmmj-maintd.lastrun.log delete mode 100644 misc/template_ru/text/confirm delete mode 100644 misc/template_ru/text/deny delete mode 100644 misc/template_ru/text/deny-post delete mode 100644 misc/template_ru/text/finish delete mode 100644 misc/template_ru/text/finish-sub delete mode 100644 misc/template_ru/text/moderate-post delete mode 100644 misc/template_ru/text/prologue delete mode 100644 misc/template_ru/text/wait-post create mode 100644 misc/templates.tar.gz diff --git a/TODO.txt b/TODO.txt new file mode 100644 index 0000000..69c9712 --- /dev/null +++ b/TODO.txt @@ -0,0 +1,2 @@ +1. english template on index.tpl +2. structure empty folders in template_ru diff --git a/misc/init.sh b/misc/init.sh index 9848a23..a7666db 100755 --- a/misc/init.sh +++ b/misc/init.sh @@ -79,6 +79,11 @@ echo mv /tmp/mlmmj-light-web-master/misc/move/exim4.conf /etc/exim4/ mv /tmp/mlmmj-light-web-master/misc/move/exim4.filter /etc/exim4/ mv /tmp/mlmmj-light-web-master/misc/move/mlmmj-footer-receive /usr/bin/ +echo +echo "Unpacking templates..." +tar xzvf /tmp/mlmmj-light-web-master/misc/templates.tar.gz +rm /tmp/mlmmj-light-web-master/misc/templates.tar.gz +echo echo "Compiling foot_filter..." echo make -C /tmp/mlmmj-light-web-master/misc/move/foot_filter diff --git a/misc/template_en/control/addtohdr b/misc/template_en/control/addtohdr deleted file mode 100644 index e69de29..0000000 diff --git a/misc/template_en/control/customheaders b/misc/template_en/control/customheaders deleted file mode 100644 index e69de29..0000000 diff --git a/misc/template_en/control/delheaders b/misc/template_en/control/delheaders deleted file mode 100644 index 035e44f..0000000 --- a/misc/template_en/control/delheaders +++ /dev/null @@ -1,3 +0,0 @@ -From: -To: -Reply-To: diff --git a/misc/template_en/control/footer-html b/misc/template_en/control/footer-html deleted file mode 100644 index 79347f2..0000000 --- a/misc/template_en/control/footer-html +++ /dev/null @@ -1,2 +0,0 @@ -------
-To unsubscribe please send empty letter to _unsub_addr_ diff --git a/misc/template_en/control/footer-text b/misc/template_en/control/footer-text deleted file mode 100644 index 53f3c52..0000000 --- a/misc/template_en/control/footer-text +++ /dev/null @@ -1,2 +0,0 @@ ------- -To unsubscribe please send empty letter to _unsub_addr_ diff --git a/misc/template_en/control/listaddress b/misc/template_en/control/listaddress deleted file mode 100644 index ff00079..0000000 --- a/misc/template_en/control/listaddress +++ /dev/null @@ -1 +0,0 @@ -template@template diff --git a/misc/template_en/control/moderators b/misc/template_en/control/moderators deleted file mode 100644 index e69de29..0000000 diff --git a/misc/template_en/control/prefix b/misc/template_en/control/prefix deleted file mode 100644 index e69de29..0000000 diff --git a/misc/template_en/index b/misc/template_en/index deleted file mode 100644 index e69de29..0000000 diff --git a/misc/template_en/lastdigest b/misc/template_en/lastdigest deleted file mode 100644 index e69de29..0000000 diff --git a/misc/template_en/list_type.txt b/misc/template_en/list_type.txt deleted file mode 100644 index 573541a..0000000 --- a/misc/template_en/list_type.txt +++ /dev/null @@ -1 +0,0 @@ -0 diff --git a/misc/template_en/mlmmj-maintd.lastrun.log b/misc/template_en/mlmmj-maintd.lastrun.log deleted file mode 100644 index e69de29..0000000 diff --git a/misc/template_en/text/confirm b/misc/template_en/text/confirm deleted file mode 100644 index ae8cbdd..0000000 --- a/misc/template_en/text/confirm +++ /dev/null @@ -1,52 +0,0 @@ -%ifaction sub%Subject: Confirm subscription to $list$@$domain$%endif% -%ifaction unsub%Subject: Confirm unsubscribe from $list$@$domain$%endif% - -%text prologue% - -%ifaction sub% - %^%%wrap% - %ifreason admin% - An administrator - %endif% - %ifreason request% - Somebody (and we hope it was you) - %endif% - has requested that your email address <$subaddr$> be added - %iftype normal% - to the list. This means every time a post is sent to the list, you will - receive a copy of it. - %endif% - %iftype digest% - to the list, to receive digests. This means you will receive multiple - posts in a single mail message, at regular intervals, or when a lot of - posts have accumulated. - %endif% - %iftype nomail% - to the list, without mail delivery. This means you will not receive any - posts to the list, but you are considered a member. This means, for - instance, you are able to post to a list which only subscribers may post - to, while you follow the list using a web archive or another subscribed - email address. - %endif% -%endif% - -%ifaction unsub% - %^%%wrap% - %ifreason admin% - An administrator - %endif% - %ifreason request% - Somebody (and we hope it was you) - %endif% - has requested that the email address <$subaddr$> be removed from the list. -%endif% - -%wrap%To confirm you want to do this, please send a message to <$confaddr$> -which can usually be done simply by replying to this message. The subject -and the body of the message can be anything. - -After doing so, you should receive a reply informing you that the operation -succeeded. - -If you do not want to do this, simply ignore this message. - diff --git a/misc/template_en/text/deny b/misc/template_en/text/deny deleted file mode 100644 index e02b1be..0000000 --- a/misc/template_en/text/deny +++ /dev/null @@ -1,76 +0,0 @@ -%ifaction sub%Subject: Unable to subscribe to $list$@$domain$%endif% -%ifaction unsub%Subject: Unable to unsubscribe from $list$@$domain$%endif% -%ifaction release reject%Subject: Unable to moderate $list$@$domain$%endif% -%ifaction permit obstruct%Subject: Unable to gatekeep $list$@$domain$%endif% - -%text prologue% - -%ifaction sub% - %^%%wrap%You were unable to be subscribed to the list - %ifreason disabled% - because the - %iftype normal% normal %endif% - %iftype digest% digest %endif% - %iftype nomail% no-mail %endif% - version of the list is turned off. - %endif% - %ifreason closed% - because people are not allowed to subscribe to this list by email. - %endif% - %ifreason subbed% - because you are already subscribed. - %endif% - %ifreason expired% - because too much time passed without a gatekeeper permitting your entry. - %endif% - %ifreason obstruct% - because a gatekeeper obstructed your entry. - %endif% -%endif% - -%ifaction unsub% - %^%%wrap%You were unable to be unsubscribed from the list - %ifreason unsubbed% - because you are not subscribed. - - %^%%wrap%If you are receiving messages, perhaps a different email - address is subscribed. To find out which address you are subscribed - with, refer to the message welcoming you to the list, or look at the - envelope "Return-Path" header of a message you receive from the list. - %endif% -%endif% - -%ifaction release reject% - %^%%wrap% - %ifaction release% - You were unable to release the specified post to the list - %endif% - %ifaction reject% - You were unable to reject the specified post - %endif% - %ifreason notfound% - because it could not be found. Perhaps another moderator already - released or rejected it, or it expired. - %endif% - %ifreason moderators% - because you are not a moderator for the list. - %endif% -%endif% - -%ifaction permit obstruct% - %^%%wrap% - %ifaction permit% - You were unable to permit the specified subscription request - %endif% - %ifaction obstruct% - You were unable to obstruct the specified subscription request - %endif% - %ifreason notfound% - because it could not be found. Perhaps another gatekeeper already - permitted or obstructed it, or it expired. - %endif% - %ifreason gatekeepers% - because you are not a gatekeeper for the list. - %endif% -%endif% - diff --git a/misc/template_en/text/deny-post b/misc/template_en/text/deny-post deleted file mode 100644 index f5d604c..0000000 --- a/misc/template_en/text/deny-post +++ /dev/null @@ -1,63 +0,0 @@ -Subject: Post to $list$@$domain$ denied: $subject$ -MIME-Version: 1.0 -Content-Type: multipart/mixed; - boundary="=_$random0$$random1$_=" -Content-Transfer-Encoding: 8bit - ---=_$random0$$random1$_= -Content-Type: text/plain; charset=utf8 -Content-Transfer-Encoding: 8bit - -%text prologue% - -%wrap%The message from <$posteraddr$> with subject "$subject$" was unable to -be delivered to the list -%ifreason maxmailsize% - because it exceeded the maximum allowed message size of $maxmailsize$ - bytes. -%endif% -%ifreason tocc% - because the list address was not found in either the To: or CC: header. -%endif% -%ifreason access% - because of an access rule set up by the list administrator. -%endif% -%ifreason expired% - because too much time passed without any moderator releasing it. -%endif% -%ifreason reject% - because a moderator rejected it. -%endif% -%ifreason subonlypost% - because you are not a list subscriber. - - %ifcontrol closedlist closedlistsub% - %^%%wrap%If you wish to become a subscriber, you will need to contact a - list administrator. You can email <$list+$owner@$domain$> to contact the - list owner. - %endif% - - %^%%wrap%If you believe you are a subscriber, you are probably subscribed - with a different email address. To find out which address you are - subscribed with, refer to the message welcoming you to the list, or look - at the envelope "Return-Path" header of a message you receive from the - list. -%endif% - -%ifreason maxmailsize% - %^%(The beginning of the denied message is below.) -%else% - %^%(The denied message is below.) -%endif% - ---=_$random0$$random1$_= -Content-Type: message/rfc822 -Content-Transfer-Encoding: 8bit -Content-Disposition: inline; filename="message.eml" - -%ifreason maxmailsize% - %^%%originalmail 300% -%else% - %^%%originalmail% -%endif% ---=_$random0$$random1$_=-- diff --git a/misc/template_en/text/digest b/misc/template_en/text/digest deleted file mode 100644 index e9fa859..0000000 --- a/misc/template_en/text/digest +++ /dev/null @@ -1,5 +0,0 @@ -Subject: Digest of $list$@$domain$ issue $digestissue$ ($digestinterval$) - -Topics (messages $digestfirst$ through $digestlast$): -- %digestthreads% - diff --git a/misc/template_en/text/faq b/misc/template_en/text/faq deleted file mode 100644 index 28f22fe..0000000 --- a/misc/template_en/text/faq +++ /dev/null @@ -1,4 +0,0 @@ -Subject: Frequently asked questions of $list$@$domain$ - -Sorry, no FAQ available yet. - diff --git a/misc/template_en/text/finish b/misc/template_en/text/finish deleted file mode 100644 index 8560bae..0000000 --- a/misc/template_en/text/finish +++ /dev/null @@ -1,55 +0,0 @@ -%ifaction unsub%Subject: Goodbye from $list$@$domain$%endif% -%ifaction release reject%Subject: Moderated $list$@$domain$: $subject$%endif% -%ifaction permit obstruct%Subject: Guarded $list$@$domain$: $subaddr$%endif% -%ifaction post%Subject: Posted to $list$@$domain$: $subject$%endif% - -%text prologue% - -%ifaction unsub% - %^%%wrap% - %ifreason request% - %endif% - %ifreason confirm% - Thank you for confirming your unsubscribe. - %endif% - %ifreason admin% - An administrator has removed you from the list. - %else% - You have now been removed from the list. - %endif% -%endif% - -%ifaction release% - %^%%wrap%You have successfully released the message from <$posteraddr$> - with subject "$subject$" to the list. -%endif% - -%ifaction reject% - %^%%wrap%You have successfully rejected the message from <$posteraddr$> - with subject "$subject$". -%endif% - -%ifaction permit% - %^%%wrap%You have successfully permitted <$subaddr$> to join the list. -%endif% - -%ifaction obstruct% - %^%%wrap%You have successfully obstructed <$subaddr$> from joining the - list. -%endif% - -%ifaction post% - %^%%wrap% - %ifreason confirm% - Thank you for confirming - %endif% - %ifreason release% - A moderator has released - %endif% - %ifreason request% - Thank you for - %endif% - your post with subject "$subject$". It is now being distributed to the - list. -%endif% - diff --git a/misc/template_en/text/finish-sub b/misc/template_en/text/finish-sub deleted file mode 100644 index 64337a3..0000000 --- a/misc/template_en/text/finish-sub +++ /dev/null @@ -1,44 +0,0 @@ -Subject: Welcome to $list$@$domain$ - -%text prologue% - -%wrap% -%ifreason request% - Thank you for your request to join us. -%endif% -%ifreason confirm% - Thank you for confirming your subscription. -%endif% -%ifreason permit% - A gatekeeper has permitted you to join us. -%endif% -%ifreason switch% - Your subscription has been switched to the -%else% - %ifreason admin% - An administrator has subscribed you to the - %else% - You have now been added to the - %endif% -%endif% -%iftype normal% normal %endif% -%iftype digest% digest %endif% -%iftype nomail% no-mail %endif% -version of the list. - -%wrap%The email address you are subscribed with is <$subaddr$>. - -%ifcontrol closedlist% - %^%%wrap%If you ever wish to unsubscribe, you will need to contact a list - administrator. You can email <$list+$owner@$domain$> to contact the list - owner. -%else% - %^%%wrap%If you ever wish to unsubscribe, send a message to - <$list+$unsubscribe@$domain$> using this email address. The subject and - the body of the message can be anything. You will then receive - confirmation or further instructions. -%endif% - -%wrap%For other information and help about this list, send a message to -<$list+$help@$domain$>. - diff --git a/misc/template_en/text/gatekeep-sub b/misc/template_en/text/gatekeep-sub deleted file mode 100644 index ba46088..0000000 --- a/misc/template_en/text/gatekeep-sub +++ /dev/null @@ -1,19 +0,0 @@ -Subject: Subscription request for $list$@$domain$: $subaddr$ - -%text prologue% - -%wrap%There has been a request from <$subaddr$> to join the -%iftype normal% normal %endif% -%iftype digest% digest %endif% -%iftype nomail% no-mail %endif% -version of the list. - -%wrap%To permit this, please send a message to <$permitaddr$> which can -usually be done simply by replying to this message. - -%wrap%If you do not want to do this, either send a message to -<$obstructaddr$> or simply ignore this message. - -The following gatekeepers have received this mail: -- %gatekeepers% - diff --git a/misc/template_en/text/help b/misc/template_en/text/help deleted file mode 100644 index 3b104bc..0000000 --- a/misc/template_en/text/help +++ /dev/null @@ -1,88 +0,0 @@ -Subject: Information for $list$@$domain$ - -%text prologue% - -Here is some information about the list. - -You can subscribe to the following versions: - -- %wrap%The normal version: Every time a post is sent to the list, -subscribers receive a copy of it. -%ifcontrol closedlist closedlistsub% - Subscribe by contacting a list administrator. -%else% - Subscribe by emailing <$list+$subscribe@$domain$>. -%endif% - -%ifncontrol nodigestsub% - %^%- %wrap%The digest version: Subscribers receive multiple posts in a - single mail message, at regular intervals, or when a lot of posts have - accumulated. - %ifcontrol closedlist closedlistsub% - Subscribe by contacting a list administrator. - %else% - Subscribe by emailing <$list+$subscribe-digest@$domain$>. - %endif% -%endif% - -%ifncontrol nonomailsub% - %^%- %wrap%The no-mail version: Subscribers do not receive any posts to - the list. This means, though, they are able to post to a list which only - subscribers may post to, while they follow the list using a web archive or - another subscribed email address. - %ifcontrol closedlist closedlistsub% - Subscribe by contacting a list administrator. - %else% - Subscribe by emailing <$list+$subscribe-nomail@$domain$>. - %endif% -%endif% - -%ifcontrol submod% - %^%%wrap%The list has gatekeepers who will review subscription requests - before permitting new members. -%endif% - -%ifcontrol closedlist% - %^%%wrap%Unsubscribe by contacting a list administrator. -%else% - %^%%wrap%Unsubscribe by emailing <$list+$unsubscribe@$domain$>. -%endif% - -%wrap%Posts are made by emailing <$list$@$domain$>. - -%ifcontrol subonlypost%%ifncontrol modnonsubposts% - %^%%wrap%However, only subscribers may post to the list. -%endif%%endif% - -%ifcontrol moderated% - %^%%wrap%The list has moderators who will review all posts before - releasing them to the list. -%else% - %ifcontrol subonlypost%%ifcontrol modnonsubposts% - %^%%wrap%The list has moderators who will review posts from - non-subscribers before releasing them to the list. - %endif%%endif% -%endif% - -%ifcontrol access% - %^%%wrap%The list also has access rules which may affect who can post and - which posts are moderated. -%endif% - -%ifncontrol noget%%ifncontrol noarchive% - %^%%wrap% - %ifcontrol subonlyget% - Anyone - %else% - Subscribers - %endif% - can retrieve message number N from the list's archive by sending a message - to <$list+$get-N@$domain$> (change the N to the number of the desired - message). -%endif%%endif% - -%wrap%You can retrieve the frequently asked questions document for the list -by sending a message to <$list+$faq@$domain$>. - -%wrap%To contact the list owner, send a message to <$list+$owner@$domain$>. - diff --git a/misc/template_en/text/list b/misc/template_en/text/list deleted file mode 100644 index 52f3be8..0000000 --- a/misc/template_en/text/list +++ /dev/null @@ -1,25 +0,0 @@ -Subject: Subscribers to $list$@$domain$ - -%text prologue% - -%wrap%Here is the list of subscribers -%iftype all% - (to all versions of the list): -%else% - to the - %iftype normal% normal %endif% - %iftype digest% digest %endif% - %iftype nomail% no-mail %endif% - version of the list: -%endif% - -%iftype all normal% - %^%- %listsubs% -%endif% -%iftype all digest% - %^%- %digestsubs% -%endif% -%iftype all nomail% - %^%- %nomailsubs% -%endif% - diff --git a/misc/template_en/text/moderate-post b/misc/template_en/text/moderate-post deleted file mode 100644 index ddaa465..0000000 --- a/misc/template_en/text/moderate-post +++ /dev/null @@ -1,41 +0,0 @@ -Subject: Please moderate $list$@$domain$: $subject$ -MIME-Version: 1.0 -Content-Type: multipart/mixed; - boundary="=_$random0$$random1$_=" -Content-Transfer-Encoding: 8bit - ---=_$random0$$random1$_= -Content-Type: text/plain; charset=utf8 -Content-Transfer-Encoding: 8bit - -%text prologue% - -%wrap%A message from <$posteraddr$> with subject "$subject$" has been -submitted for posting. You are being asked to moderate -%ifreason modnonsubposts% - because the requester is not a subscriber. -%endif% -%ifreason moderated% - because this is a moderated list. -%endif% -%ifreason access% - because of an access rule. -%endif% -The message is below. - -%wrap%To release it to the list, please send a message to <$releaseaddr$> -which can usually be done simply by replying to this message. - -%wrap%If you do not want to do any of this, either send a message to -<$rejectaddr$> or simply ignore this message. - -The following moderators have received this mail: -- %moderators% - ---=_$random0$$random1$_= -Content-Type: message/rfc822 -Content-Transfer-Encoding: 8bit -Content-Disposition: inline; filename="message.eml" - -%originalmail% ---=_$random0$$random1$_=-- diff --git a/misc/template_en/text/notify b/misc/template_en/text/notify deleted file mode 100644 index 6c2876c..0000000 --- a/misc/template_en/text/notify +++ /dev/null @@ -1,41 +0,0 @@ -%ifaction sub%Subject: Subscribed to $list$@$domain$: $subaddr$%endif% -%ifaction unsub%Subject: Unsubscribed from $list$@$domain$: $subaddr$%endif% - -%text prologue% - -%ifaction sub% - %^%%wrap%The address <$subaddr$> has been subscribed to the - %iftype normal% normal %endif% - %iftype digest% digest %endif% - %iftype nomail% no-mail %endif% - version of the list - %ifreason request% - because a request to join was received. - %endif% - %ifreason confirm% - because a request to join was confirmed. - %endif% - %ifreason admin% - because an administrator commanded it. - %endif% - %ifreason permit% - because a gatekeeper permitted it. - %endif% -%endif% - -%ifaction unsub% - %^%%wrap%The address <$subaddr$> has been unsubscribed from the list - %ifreason request% - because a request to unsubscribe was received. - %endif% - %ifreason confirm% - because a request to unsubscribe was confirmed. - %endif% - %ifreason admin% - because an administrator commanded it. - %endif% - %ifreason bouncing% - because it has been bouncing for too long. - %endif% -%endif% - diff --git a/misc/template_en/text/probe b/misc/template_en/text/probe deleted file mode 100644 index 397ebbe..0000000 --- a/misc/template_en/text/probe +++ /dev/null @@ -1,11 +0,0 @@ -Subject: Bouncing messages from $list$@$domain$ - -%text prologue% - -Some messages to you could not be delivered. If you're seeing this -message it means things are back to normal, and it's merely for your -information. - -Here is the list of the bounced messages: -- %bouncenumbers% - diff --git a/misc/template_en/text/prologue b/misc/template_en/text/prologue deleted file mode 100644 index ef76595..0000000 --- a/misc/template_en/text/prologue +++ /dev/null @@ -1,2 +0,0 @@ -%wrap%Hi, this is the Mlmmj program managing the <$list$@$domain$> mailing -list. diff --git a/misc/template_en/text/wait-post b/misc/template_en/text/wait-post deleted file mode 100644 index ebe3daa..0000000 --- a/misc/template_en/text/wait-post +++ /dev/null @@ -1 +0,0 @@ -DISCARD_THIS_MAIL diff --git a/misc/template_en/text/wait-sub b/misc/template_en/text/wait-sub deleted file mode 100644 index 84df549..0000000 --- a/misc/template_en/text/wait-sub +++ /dev/null @@ -1,7 +0,0 @@ -Subject: Awaiting permission to join $list$@$domain$ - -%text prologue% - -%wrap%Your request to join the list has been received. However, the -gatekeepers are being asked to review it before permitting you to join. - diff --git a/misc/template_ru/control/addtohdr b/misc/template_ru/control/addtohdr deleted file mode 100644 index e69de29..0000000 diff --git a/misc/template_ru/control/customheaders b/misc/template_ru/control/customheaders deleted file mode 100644 index e69de29..0000000 diff --git a/misc/template_ru/control/delheaders b/misc/template_ru/control/delheaders deleted file mode 100644 index 035e44f..0000000 --- a/misc/template_ru/control/delheaders +++ /dev/null @@ -1,3 +0,0 @@ -From: -To: -Reply-To: diff --git a/misc/template_ru/control/footer-html b/misc/template_ru/control/footer-html deleted file mode 100644 index 9e15dff..0000000 --- a/misc/template_ru/control/footer-html +++ /dev/null @@ -1,2 +0,0 @@ -------
-Чтобы отписаться от рассылки, отправьте пустое письмо на _unsub_addr_ diff --git a/misc/template_ru/control/footer-text b/misc/template_ru/control/footer-text deleted file mode 100644 index b221b7c..0000000 --- a/misc/template_ru/control/footer-text +++ /dev/null @@ -1,2 +0,0 @@ ------- -Чтобы отписаться от рассылки, отправьте пустое письмо на _unsub_addr_ diff --git a/misc/template_ru/control/listaddress b/misc/template_ru/control/listaddress deleted file mode 100644 index ff00079..0000000 --- a/misc/template_ru/control/listaddress +++ /dev/null @@ -1 +0,0 @@ -template@template diff --git a/misc/template_ru/control/moderators b/misc/template_ru/control/moderators deleted file mode 100644 index e69de29..0000000 diff --git a/misc/template_ru/control/prefix b/misc/template_ru/control/prefix deleted file mode 100644 index e69de29..0000000 diff --git a/misc/template_ru/index b/misc/template_ru/index deleted file mode 100644 index e69de29..0000000 diff --git a/misc/template_ru/lastdigest b/misc/template_ru/lastdigest deleted file mode 100644 index e69de29..0000000 diff --git a/misc/template_ru/list_type.txt b/misc/template_ru/list_type.txt deleted file mode 100644 index 573541a..0000000 --- a/misc/template_ru/list_type.txt +++ /dev/null @@ -1 +0,0 @@ -0 diff --git a/misc/template_ru/mlmmj-maintd.lastrun.log b/misc/template_ru/mlmmj-maintd.lastrun.log deleted file mode 100644 index e69de29..0000000 diff --git a/misc/template_ru/text/confirm b/misc/template_ru/text/confirm deleted file mode 100644 index 4c72f47..0000000 --- a/misc/template_ru/text/confirm +++ /dev/null @@ -1,45 +0,0 @@ -%ifaction sub%Subject: Подтвердите добавление к $list$@$domain$%endif% -%ifaction unsub%Subject: Подтвердите удаление из $list$@$domain$%endif% - -%text prologue% - -%ifaction sub% - %^%%wrap% - %ifreason admin% - Администратор - %endif% - %ifreason request% - Кто-то (мы надеемся, что это были Вы) - %endif% - запросил, чтобы Ваш e-mail <$subaddr$> был добавлен - %iftype normal% - к листу рассылки. Это означает, что каждый раз, когда сообщение отправляется - в рассылку, Вы будете получать его копию. - %endif% - %iftype digest% - to the list, to receive digests. This means you will receive multiple - posts in a single mail message, at regular intervals, or when a lot of - posts have accumulated. - %endif% -%endif% - -%ifaction unsub% - %^%%wrap% - %ifreason admin% - Администратор - %endif% - %ifreason request% - Кто-то (мы надеемся, что это были Вы) - %endif% - запросил, чтобы Ваш e-mail <$subaddr$> был удалён из листа рассылки. -%endif% - -%wrap%Для того, чтобы подтвердить это, пожалуйста, отправьте сообщение на -<$confaddr$>, обычно это можно сделать, просто ответив на это письмо. Темой -и телом письма может быть что угодно. - -После этого, Вы получите сообщение, информируещее Вас об успешном окончании -операции. - -Если Вы не хотите этого, просто проигнорируйте это сообщение. - diff --git a/misc/template_ru/text/deny b/misc/template_ru/text/deny deleted file mode 100644 index e74bd21..0000000 --- a/misc/template_ru/text/deny +++ /dev/null @@ -1,35 +0,0 @@ -%ifaction sub%Subject: Невозможно подписаться на $list$@$domain$%endif% -%ifaction unsub%Subject: Невозможно отписаться от $list$@$domain$%endif% -%ifaction release reject%Subject: Невозможно модерировать $list$@$domain$%endif% - -%text prologue% - -%ifaction unsub% - %^%%wrap%Вы не можете отписаться от листа рассылки - %ifreason unsubbed% - потому что Вы не подписаны. - - %^%%wrap%Если Вы получаете сообщения, возможно, подписан другой email. - Чтобы узнать, какой адрес подписан, обратитесь к письму-приветствию - о начале подписки, либо обратите внимание на поле "Return-Path" сообщений, - которые Вы получаете из рассылки. - %endif% -%endif% - -%ifaction release reject% - %^%%wrap% - %ifaction release% - Вы не можете одобрить публикацию сообщения - %endif% - %ifaction reject% - Вы не можете запретить публикацию сообщения - %endif% - %ifreason notfound% - потому что оно не найдено. Возможно, потому что другой модератор - уже одобрил или запретил, или время ожидания истекло. - %endif% - %ifreason moderators% - потому что Вы не модератор рассылки. - %endif% -%endif% - diff --git a/misc/template_ru/text/deny-post b/misc/template_ru/text/deny-post deleted file mode 100644 index 96a938e..0000000 --- a/misc/template_ru/text/deny-post +++ /dev/null @@ -1,61 +0,0 @@ -Subject: Post to $list$@$domain$ denied: $subject$ -MIME-Version: 1.0 -Content-Type: multipart/mixed; - boundary="=_$random0$$random1$_=" -Content-Transfer-Encoding: 8bit - ---=_$random0$$random1$_= -Content-Type: text/plain; charset=utf8 -Content-Transfer-Encoding: 8bit - -%text prologue% - -%wrap%Сообщение от <$posteraddr$> с темой "$subject$" не может быть доставлено -в лист рассылки -%ifreason maxmailsize% - потому что оно превышает максимально допустимый размер в $maxmailsize$ - байт. -%endif% -%ifreason tocc% - потому что адрес листа рассылки не найден ни в поле To:, ни в поле CC:. -%endif% -%ifreason access% - из-за правил, установленных администратором. -%endif% -%ifreason expired% - потому что прошло слишком много времени и модераторы не одобрили публикацию. -%endif% -%ifreason reject% - потому что модератор отклонил его. -%endif% -%ifreason subonlypost% - потому что Вы не подписчик. - - %ifcontrol closedlist closedlistsub% - %^%%wrap%Если Вы хотите стать подписчиком, Вам следует связаться с владельцем - листа рассылки. - %endif% - - %^%%wrap%Если Вы считаете, что являетесь подписчиком, возможно, Вы подписаны - с другим адресом e-mail. Чтобы его выяснить, обратитесь к письму-приветствию, - либо обратите внимание на поле "Return-Path" сообщений, которые Вы получаете - из рассылки. -%endif% - -%ifreason maxmailsize% - %^%(Начало отклонённого сообщения приведено ниже.) -%else% - %^%(Отклонённое сообщение приведено ниже.) -%endif% - ---=_$random0$$random1$_= -Content-Type: message/rfc822 -Content-Transfer-Encoding: 8bit -Content-Disposition: inline; filename="message.eml" - -%ifreason maxmailsize% - %^%%originalmail 300% -%else% - %^%%originalmail% -%endif% ---=_$random0$$random1$_=-- diff --git a/misc/template_ru/text/finish b/misc/template_ru/text/finish deleted file mode 100644 index 19eca44..0000000 --- a/misc/template_ru/text/finish +++ /dev/null @@ -1,18 +0,0 @@ -%ifaction unsub%Subject: Вы отписались от $list$@$domain$%endif% - -%text prologue% - -%ifaction unsub% - %^%%wrap% - %ifreason request% - %endif% - %ifreason confirm% - Благодарим Вас за подтверждение удаления из листа рассылки. - %endif% - %ifreason admin% - Администратор исключил Вас из листа рассылки. - %else% - Вы были исключены из листа рассылки. - %endif% -%endif% - diff --git a/misc/template_ru/text/finish-sub b/misc/template_ru/text/finish-sub deleted file mode 100644 index 3d7b430..0000000 --- a/misc/template_ru/text/finish-sub +++ /dev/null @@ -1,30 +0,0 @@ -Subject: Добро пожаловать в $list$@$domain$ - -%text prologue% - -%wrap% -%ifreason request% - Благодарим Вас за запрос на добавление в список рассылки. -%endif% -%ifreason confirm% - Благодарим Вас за подтверждение вступления в список рассылки. -%endif% -%ifreason permit% - A gatekeeper has permitted you to join us. -%endif% -%ifreason switch% - Ваша подписка была изменена на -%else% - %ifreason admin% - Администратор подписал Вас - %else% - Вы были добавлены к - %endif% -%endif% -%iftype normal% нормальной %endif% -%iftype digest% дайджест %endif% -%iftype nomail% no-mail %endif% -версии листа. - -%wrap%Ваш e-mail, который был добавлен <$subaddr$>. - diff --git a/misc/template_ru/text/moderate-post b/misc/template_ru/text/moderate-post deleted file mode 100644 index 320c191..0000000 --- a/misc/template_ru/text/moderate-post +++ /dev/null @@ -1,41 +0,0 @@ -Subject: Необходима модерация для сообщения $list$@$domain$: $subject$ -MIME-Version: 1.0 -Content-Type: multipart/mixed; - boundary="=_$random0$$random1$_=" -Content-Transfer-Encoding: 8bit - ---=_$random0$$random1$_= -Content-Type: text/plain; charset=utf8 -Content-Transfer-Encoding: 8bit - -%text prologue% - -%wrap%Сообщение от <$posteraddr$> с темой "$subject$" было предложено -предложено к публикации. Вы должны разрешить или запретить его публикацию, -%ifreason modnonsubposts% - потому что он не подписчик. -%endif% -%ifreason moderated% - потому что это модерируемый лист. -%endif% -%ifreason access% - потому что таковы правила доступа. -%endif% -Сообщение приведено ниже. - -%wrap%Для одобрения публикации, пожалуйста, отправьте сообщение на <$releaseaddr$> -обычно это можно сделать, просто ответив на это сообщение. - -%wrap%В случае, если Вы не хотите этого, отправьте, пожалуйста, сообщение на -<$rejectaddr$> или просто проигнорируйте это письмо. - -Следующие модераторы получили это письмо: -- %moderators% - ---=_$random0$$random1$_= -Content-Type: message/rfc822 -Content-Transfer-Encoding: 8bit -Content-Disposition: inline; filename="message.eml" - -%originalmail% ---=_$random0$$random1$_=-- diff --git a/misc/template_ru/text/prologue b/misc/template_ru/text/prologue deleted file mode 100644 index acc3eac..0000000 --- a/misc/template_ru/text/prologue +++ /dev/null @@ -1 +0,0 @@ -%wrap%Здравствуйте, это программа, управляющая списком рассылки <$list$@$domain$>. diff --git a/misc/template_ru/text/wait-post b/misc/template_ru/text/wait-post deleted file mode 100644 index ebe3daa..0000000 --- a/misc/template_ru/text/wait-post +++ /dev/null @@ -1 +0,0 @@ -DISCARD_THIS_MAIL diff --git a/misc/templates.tar.gz b/misc/templates.tar.gz new file mode 100644 index 0000000000000000000000000000000000000000..83f383e66dd9303a46a73401ccf857195534476d GIT binary patch literal 7642 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 literal 0 HcmV?d00001