[Rt-commit] r7706 - in rt/branches/3.7-EXPERIMENTAL: .
ruz at bestpractical.com
ruz at bestpractical.com
Wed Apr 25 23:09:42 EDT 2007
Author: ruz
Date: Wed Apr 25 23:09:42 2007
New Revision: 7706
Added:
rt/branches/3.7-EXPERIMENTAL/etc/upgrade/3.7.10/
rt/branches/3.7-EXPERIMENTAL/etc/upgrade/3.7.10/content
Modified:
rt/branches/3.7-EXPERIMENTAL/ (props changed)
rt/branches/3.7-EXPERIMENTAL/releng.cnf
Log:
r5154 at cubic-pc: cubic | 2007-04-26 07:08:33 +0400
* add upgrade script
* bump to 3.7.10, we skip several numbers for 3.7-EXP-RTIR-2.2 branch
Added: rt/branches/3.7-EXPERIMENTAL/etc/upgrade/3.7.10/content
==============================================================================
--- (empty file)
+++ rt/branches/3.7-EXPERIMENTAL/etc/upgrade/3.7.10/content Wed Apr 25 23:09:42 2007
@@ -0,0 +1,49 @@
+
+ at Templates = (
+ { Queue => 0,
+ Name => "Error: public key", # loc
+ Description =>
+ "Inform user that he has problems with public key and couldn't recieve encrypted content", # loc
+ Content => q{Subject: We have no your public key or it's wrong
+
+You received this message as we have no your public PGP key or we have a problem with your key. Inform the administrator about the problem.
+}
+ },
+ { Queue => 0,
+ Name => "Error to RT owner: public key", # loc
+ Description =>
+ "Inform RT owner that user(s) have problems with public keys", # loc
+ Content => q{Subject: Some users have problems with public keys
+
+You received this message as RT has problems with public keys of the following user:
+{
+ foreach my $e ( @BadRecipients ) {
+ $OUT .= "* ". $e->{'Message'} ."\n";
+ }
+}}
+ },
+ { Queue => 0,
+ Name => "Error: no private key", # loc
+ Description =>
+ "Inform user that we received an encrypted email and we have no private keys to decrypt", # loc
+ Content => q{Subject: we received message we cannot decrypt
+
+You sent an encrypted message with subject '{ $Message->head->get('Subject') }',
+but we have no private key it's encrypted to.
+
+Please, check that you encrypt messages with correct keys
+or contact the system administrator.}
+ },
+ { Queue => 0,
+ Name => "Error: bad GnuPG data", # loc
+ Description =>
+ "Inform user that a message he sent has invalid GnuPG data", # loc
+ Content => q{Subject: We received a message we cannot handle
+
+You sent us a message that we cannot handle due to corrupted GnuPG signature or encrypted block. we get the following error(s):
+{ foreach my $msg ( @Messages ) {
+ $OUT .= "* $msg\n";
+ }
+}}
+ },
+);
Modified: rt/branches/3.7-EXPERIMENTAL/releng.cnf
==============================================================================
--- rt/branches/3.7-EXPERIMENTAL/releng.cnf (original)
+++ rt/branches/3.7-EXPERIMENTAL/releng.cnf Wed Apr 25 23:09:42 2007
@@ -1,5 +1,5 @@
PRODUCT = rt
-TAG = 3.7.4
+TAG = 3.7.10
CANONICAL_REPO = svn+ssh://svn.bestpractical.com/svn/bps-public/rt/
TAGS = tags/
TRUNK = branches/3.7-EXPERIMENTAL
More information about the Rt-commit
mailing list