diff options
author | 2019-12-03 13:25:35 +0100 | |
---|---|---|
committer | 2019-12-03 13:25:35 +0100 | |
commit | 4c528495397c72487af836613c023e78778295ee (patch) | |
tree | ed8d8f5b09a8e19760f34df686da67a3781e81e3 /imap.go | |
parent | f4808eb4c51f4f2a70b85ee7caaa4349e1b5689f (diff) | |
download | alps-4c528495397c72487af836613c023e78778295ee.tar.gz alps-4c528495397c72487af836613c023e78778295ee.tar.bz2 alps-4c528495397c72487af836613c023e78778295ee.zip |
Show last 50 messages in mailbox view
Diffstat (limited to 'imap.go')
-rw-r--r-- | imap.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -206,7 +206,7 @@ func listMessages(conn *imapclient.Client, mboxName string) ([]imapMessage, erro return nil, err } - n := uint32(10) + n := uint32(50) mbox := conn.Mailbox() from := uint32(1) |