File tree 2 files changed +2
-24
lines changed
2 files changed +2
-24
lines changed Original file line number Diff line number Diff line change @@ -54,9 +54,10 @@ Documentation for older releases are available here:
54
54
link:RelNotes/1.7.7.1.txt[1.7.7.1],
55
55
link:RelNotes/1.7.7.txt[1.7.7].
56
56
57
- * link:v1.7.6.5 /git.html[documentation for release 1.7.6.5 ]
57
+ * link:v1.7.6.6 /git.html[documentation for release 1.7.6.6 ]
58
58
59
59
* release notes for
60
+ link:RelNotes/1.7.6.6.txt[1.7.6.6],
60
61
link:RelNotes/1.7.6.5.txt[1.7.6.5],
61
62
link:RelNotes/1.7.6.4.txt[1.7.6.4],
62
63
link:RelNotes/1.7.6.3.txt[1.7.6.3],
Original file line number Diff line number Diff line change @@ -41,36 +41,13 @@ struct store_conf {
41
41
unsigned trash_remote_new :1 , trash_only_new :1 ;
42
42
};
43
43
44
- struct string_list {
45
- struct string_list * next ;
46
- char string [1 ];
47
- };
48
-
49
- struct channel_conf {
50
- struct channel_conf * next ;
51
- char * name ;
52
- struct store_conf * master , * slave ;
53
- char * master_name , * slave_name ;
54
- char * sync_state ;
55
- struct string_list * patterns ;
56
- int mops , sops ;
57
- unsigned max_messages ; /* for slave only */
58
- };
59
-
60
- struct group_conf {
61
- struct group_conf * next ;
62
- char * name ;
63
- struct string_list * channels ;
64
- };
65
-
66
44
/* For message->status */
67
45
#define M_RECENT (1<<0) /* unsyncable flag; maildir_* depend on this being 1<<0 */
68
46
#define M_DEAD (1<<1) /* expunged */
69
47
#define M_FLAGS (1<<2) /* flags fetched */
70
48
71
49
struct message {
72
50
struct message * next ;
73
- /* struct string_list *keywords; */
74
51
size_t size ; /* zero implies "not fetched" */
75
52
int uid ;
76
53
unsigned char flags , status ;
You can’t perform that action at this time.
0 commit comments