blob: 28ee9f6a3df70fee7ea5b8b0f90cb5b03c8f19e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
|
Past and Upcoming Changes
=========================
v1.0.0 release plan
-------------------
✓ consider renaming, relicensing
✓ License
✓ GPLv3+ and enter copyright info
* Maybe the translation/documentation can be made available under a different license
* may relicense this under the AGPL.
✓ Rename
✓ JWebmail
✓ make github ready
✓ remove sensitive files (gitignore)
✓ add git vcs
✓ remove part of the english translation
* check legal requirements
✓ BUG: home not displaying
✓ show new messages per folder
✓ BUG: empty folder not displaying correctly
✓ better documentation
✓ document i18n snippets
✓ cleanup comments
✓ list functionality for ReadMails#communicate
✓ OMail
✓ OMail::Helper
✓ OMail::Controller::All
✓ OMail::Plugin::I18N
✓ OMail::Plugin::INIConfig
✓ OMail::Plugin::ServerSideSessionData
✓ OMail::Model::WriteMails
✓ OMail::Model::ReadMails
✓ OMail::Model::Driver::QMailAuthuser
✓ OMail::Model::Driver::QMailAuthuser::Extract
✓ better pagination
✓ BUG: pagination forward -> backward is shifting by 1 (page start needs to be decremented)
✓ move out to helper
✓ more generic names
✓ advance ini config plugin
✓ set global section to global scope
✓ introduce arrays
✓ make nesting sections more explicit
✓ write more tests
✓ test pagination
✓ test mail_line
✓ test for ini parser
✓ basic test for application
✓ improve i18n
✓ german translation
✓ look into i18n configuration
✓ remove TXT alias
✓ more configuration (for model)
✓ disable cram
✓ select mock read model
✓ lazy init for mock model
✓ add switch disabling message send
✓ Extract: user to switch to
✓ Extract: adjustable maildir directory
✓ read secret from config file
✓ Extract: configurable perl lib
✓ Extract: encoding issues
✓ improve session data security
✓ use a server side cookie implementation
✓ use a one time pad
✓ resolve server/client session duration issues
✓ use cryptographically secure random data
✓ hide password length
✓ handle empty folders
✓ logging support for Extract.pm
✓ true perl 5.16 support
✓ cpan build and deploy script
✓ remove prefs
✓ file upload for attachment
✓ file type detection
✓ move WriteMails from Email::Simple to Email::MIME
✓ configuration as plugin (Mojo::Plugin::Config)
✓ model as helpers, initialized in startup
✓ send
✓ multiple mails for cc etc.
* content-transfer encoding, research (currently 8bit)
✓ better design for send and read
✓ send
✓ read
✓ sandbox html mails
✓ i18n as ini files
✓ rework mail folders
✓ rewrite about
✓ search in subject
v1.1.0 release plan
-------------------
* INV: wrong subject being shown
* INV: new mails are not highlighted
✓ better back buttons
✓ writemail
✓ read mail
✓ improve server side session cleanup process coordination
✓ consider using Crypt::URandom instead of Crypt::Random
✓ factor out date format function
✓ add a delete session function for s3d, maybe
✓ simply remove key from cookie
* separate development and production configuration
* create base configuration
* repurpose status field in displayheader
✓ currently just renamed
* improve performance
* async read for extract
✓ async version of driver
✓ async version of model
* async version of controller
* async wait for send
* add wait_for_child to event loop
* consider using more mojo functions
✓ use Mojolicious::Types to replace File::Type
✓ Helper
* QMailAuthuser
* moving mails to other folders
* creating new folders
* backend
* add more mime types
* jpeg
* png
* giv
v1.2.0 release plan
-------------------
* advance ini config plugin
* allow non-leaf nodes to be arrays
* allow quotes
* allow continuation over multiple lines
* warn about overrides
* add template support, maybe
* improve i18n
* add localization of dates and time
* better pagination
* merge with partial templates, maybe
* improve performance, consider alternatives to Extract.pm
* based on Maildir::Light
* add config validation
* click on sender to answer
* mobile optimize
* download mail and attachments
* cleanup css
* allow multiple attachments
* consider using more mojo functions
* base64
* encoding
* json
* filepaths
* dump
* mail?
* add mails to Sent folder
v1.3.0 release plan
-------------------
* smtp send model, maybe
* pop read model, maybe
* add icons for navigation
|