0
|
1 <?php
|
|
2
|
|
3 /**
|
|
4 +-------------------------------------------------------------------------+
|
|
5 | Signature class for the Enigma Plugin |
|
|
6 | |
|
|
7 | Copyright (C) 2010-2015 The Roundcube Dev Team |
|
|
8 | |
|
|
9 | Licensed under the GNU General Public License version 3 or |
|
|
10 | any later version with exceptions for skins & plugins. |
|
|
11 | See the README file for a full license statement. |
|
|
12 | |
|
|
13 +-------------------------------------------------------------------------+
|
|
14 | Author: Aleksander Machniak <alec@alec.pl> |
|
|
15 +-------------------------------------------------------------------------+
|
|
16 */
|
|
17
|
|
18 class enigma_signature
|
|
19 {
|
|
20 public $id;
|
|
21 public $valid;
|
|
22 public $fingerprint;
|
|
23 public $created;
|
|
24 public $expires;
|
|
25 public $name;
|
|
26 public $comment;
|
|
27 public $email;
|
|
28
|
|
29 // Set it to true if signature is valid, but part of the message
|
|
30 // was out of the signed block
|
|
31 public $partial;
|
|
32 }
|