import rt 3.8.7
[freeside.git] / rt / etc / upgrade / 3.7.10 / content
1
2 @Templates = (
3     {  Queue       => 0,
4        Name        => "Error: public key",    # loc
5        Description =>
6          "Inform user that he has problems with public key and couldn't recieve encrypted content", # loc
7        Content => q{Subject: We have no your public key or it's wrong
8
9 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.
10 }
11     },
12     {  Queue       => 0,
13        Name        => "Error to RT owner: public key",    # loc
14        Description =>
15          "Inform RT owner that user(s) have problems with public keys", # loc
16        Content => q{Subject: Some users have problems with public keys
17
18 You received this message as RT has problems with public keys of the following user:
19 {
20     foreach my $e ( @BadRecipients ) {
21         $OUT .= "* ". $e->{'Message'} ."\n";
22     }
23 }}
24     },
25     {  Queue       => 0,
26        Name        => "Error: no private key",    # loc
27        Description =>
28          "Inform user that we received an encrypted email and we have no private keys to decrypt", # loc
29        Content => q{Subject: we received message we cannot decrypt
30
31 You sent an encrypted message with subject '{ $Message->head->get('Subject') }',
32 but we have no private key it's encrypted to.
33
34 Please, check that you encrypt messages with correct keys
35 or contact the system administrator.}
36     },
37     {  Queue       => 0,
38        Name        => "Error: bad GnuPG data",    # loc
39        Description =>
40          "Inform user that a message he sent has invalid GnuPG data", # loc
41        Content => q{Subject: We received a message we cannot handle
42
43 You sent us a message that we cannot handle due to corrupted GnuPG signature or encrypted block. we get the following error(s):
44 { foreach my $msg ( @Messages ) {
45     $OUT .= "* $msg\n";
46   }
47 }}
48     },
49 );