Commit Graph

780 Commits

Author SHA1 Message Date
Luke Smith
8330175b03 mailbox detect now automatic on account add 2018-03-16 12:10:16 -07:00
Luke Smith
e9d16d6456
Merge pull request #38 from ZethJack/patch-1
Update offlineimap_profile
2018-03-16 00:30:47 -07:00
ZethJack
fe85cb6835
Update offlineimap_profile
Removed "sslcacerfile = /etc/ssl/cets/ca-certificates.crt" on line 10 - it was pointing to non-existant directory "cets" instead of "certs" - this setting is overwritten later with correct path therefore no errors would register.
2018-03-16 07:26:58 +00:00
Fred Frey
baac8f2ee4 escape special chars in password 2018-03-13 16:24:59 -04:00
Luke Smith
14c289ccb4
Merge pull request #36 from meain/patch-1
Use `$EDITOR` instead of hardcoding vim
2018-03-13 08:19:16 -07:00
Luke Smith
56cb13e822
Merge pull request #35 from meain/macos
MacOS compatibility
2018-03-13 08:18:43 -07:00
Abin Simon
b739589fa5
Use $EDITOR instead of hardcoding vim 2018-03-13 19:48:34 +05:30
Abin Simon
4537d35666 MacOS fixes
fix adding new account in macos

Fix mailsync ping command

Fix mutt-wizard

Fix muttrc for mac

Add files for offlineimap_profile and offlineimap_header

Update README with MacOS install instructions
2018-03-13 14:26:58 +05:30
Luke Smith
a4e016a8f3 fix for trailing whitespace in accounts line 2018-03-12 07:29:02 -07:00
Luke Smith
7dacd6a99a
Merge pull request #25 from praschdorff/master
added option to get rid of XOATH2 authentication failed warnings
2018-03-06 16:06:44 -07:00
praschdorff
f91aaf0cdb
changed GPG parameters from -q to --quiet
under Qubes OS the use of qubes-gpg-client (instead of gpg) will not work with the -q option, but with the --quiet option.
As such using the full parameter names will not harm to all "normal" users, but make the script more stable for other users.
Additionaly it makes the scripts more readable for beginners to understand what the script is doing.
2018-03-06 22:25:02 +01:00
Luke Smith
125e439930 old redundancy removed 2018-03-06 01:11:45 -07:00
Luke Smith
5875e57035 Merge branch 'master' of github.com:LukeSmithxyz/mutt-wizard 2018-03-05 23:43:19 -07:00
Luke Smith
91c960d440
Merge pull request #31 from praschdorff/patch-1
Changed "port" to "remoteport" in [Repository $title-remote]
2018-03-05 23:43:18 -07:00
Luke Smith
3049b27fa5 notify system added 2018-03-05 23:38:22 -07:00
praschdorff
309a9102ce
Changed "port" to "remoteport" in [Repository $title-remote]
configuring offlinemap to get emails from Microsoft Exchange via Davmail I run into a problem, which could be fixed by changing "port" to "remoteport" in the remote-part of the config.
See also here:
https://github.com/OfflineIMAP/offlineimap/blob/master/offlineimap.conf
# This option stands in the [Repository RemoteExample] section.
# Specify the port.  If not specified, use a default port.
#remoteport = 993
2018-03-05 21:44:51 +01:00
Luke Smith
580cc963cb header colors 2018-03-03 17:02:26 -07:00
Luke Smith
8f7efc69db color changes and fixes 2018-03-03 16:54:02 -07:00
praschdorff
31002f29a7
added option to get rid of COATH2 authentication failed warnings
If running offlineimap it will show the following warning message (tested when using GMAIL)...

 XOAUTH2 authentication failed: AUTHENTICATE command error: BAD ['Client aborted AUTHENTICATE command.
<randomstring>']. Data: DIEF2 AUTHENTICATE XOAUTH

... and then continue with the download/sync of emails.
You can get rid of the warning message, when adding auth_mechanisms = LOGIN .offlineimaprc in the <...>-remote section.
2018-03-03 21:42:03 +01:00
Luke Smith
cbb96e3448 unbind key to prevent warnings 2018-03-02 11:15:58 -07:00
Luke Smith
5b6b71de5f
Merge pull request #23 from drmtmych/upstream
muttrc: some minor customizations
2018-03-01 16:29:09 +00:00
Andrey Drobyshev
a2edd469c2 muttrc: set more vim-like keybindings
Signed-off-by: Andrey Drobyshev <drmtmych@gmail.com>
2018-03-01 19:06:34 +03:00
Andrey Drobyshev
e5d1e26917 muttrc: set more accustomed Fwd subject.
Signed-off-by: Andrey Drobyshev <drmtmych@gmail.com>
2018-03-01 19:03:03 +03:00
Andrey Drobyshev
4a42637c05 muttrc: add attachments indication to index.
Signed-off-by: Andrey Drobyshev <drmtmych@gmail.com>
2018-03-01 19:01:42 +03:00
Luke
74a484885e forwarding whole mail by default 2018-02-27 11:04:42 -07:00
Luke
6aa267c867 quotes added for multi-word mailbox names 2018-02-27 10:52:18 -07:00
Luke Smith
2c05667dee
Merge pull request #21 from drmtmych/master
Add account name to sidebar head.
2018-02-26 18:12:02 -05:00
Andrey Drobyshev
ed1a729aaf Add account name to sidebar head.
When managing multiple accounts it's hard to determine which one you're
currently viewing. This patch makes sidebar look like this:

+++++++++++++++++++++++++
luke@lukesmith          +
----------------------- +
INBOX                 99+
Sent Mail               +
Drafts                  +
Trash                   +
Spam			+
+++++++++++++++++++++++++

The only problem with it is the necessity of changing sidebar_format, as with
its current value these 2 excess mailboxes are being appended with 0. That
leads to situation when size of an empty mailbox is being displayed as empty
string instead of 0. I consider it's not a big deal.
2018-02-27 00:23:40 +03:00
Luke Smith
8545f779bf
Merge pull request #20 from drmtmych/master
Clear mailboxes list before its assignment.
2018-02-25 18:03:09 -05:00
Andrey Drobyshev
8e09df4ea9 Clear mailboxes list before its assignment.
On account change new account's mailboxes are being appended to the old
one's. This commit forces mailboxes list to be cleared before adding new
items to it.
2018-02-26 00:31:02 +03:00
Luke Smith
9c1c8d45c7
Merge pull request #18 from scattenlaeufer/personal.muttrc
Untrack personal.muttrc
2018-02-23 17:46:52 -05:00
Luke
66215ba1a7 only one box at a time selected 2018-02-21 08:12:46 -07:00
Luke
a20cd4493f sent and postponed only one line 2018-02-21 08:07:59 -07:00
Björn Guth
3963488dba Untrack personal.muttrc
This commit untracks personal.muttrc and moves the import of
personal.muttrc to the last line of muttrc. I did this for several
reasons:

1. I moved the personal.muttrc import to have the possibility to
   overwrite settings made in muttrc. This makes personalizing mutt
   easier.
2. Since personal.muttrc is currently empty, but gets automatically
   filled with the macros to switch between mail accounts, this will
   always appear as a modified file in `git status`. Also when all mail
   accounts get deleted via mutt-wizzard.sh, personal.muttrc gets
   deleted and therefore might cause inconveniences this way.
3. This makes it virtually impossible to accidentally commit personal
   mutt configurations, which would be pretty easy if personal.muttrc
   stays part of this repo as a tracked file.
4. It makes the repo look and feel nicer.
2018-02-21 15:48:23 +01:00
Luke
4b186c6370 reordering 2018-02-20 22:33:26 -07:00
Luke
aa1bdbb7d6 readme with optional dependencies 2018-02-20 21:40:18 -07:00
Luke
567fdd08d2 Merge branch 'master' of github.com:LukeSmithxyz/mutt-wizard 2018-02-20 08:58:02 -07:00
Luke Smith
ac3db1ded0
Merge pull request #15 from scattenlaeufer/new_servers
Add new domains to domains.csv
2018-02-20 10:58:30 -05:00
Björn Guth
2a26e3d885 Add new domains to domains.csv 2018-02-20 14:41:51 +01:00
Luke
f503c6a9aa doc changes 2018-02-19 18:04:27 -07:00
Luke
6b72e911d8 license added 2018-02-18 15:03:29 -07:00
Luke Smith
0b999a2a3c
Merge pull request #11 from scattenlaeufer/login_name
Ask for a login name during account creation
2018-02-18 11:01:31 -05:00
Björn Guth
90fe2383c0 Use $fulladdr if no login is given
This should resolve #6.
2018-02-18 16:53:26 +01:00
Luke
a4495298dc googlemail 2018-02-18 08:43:08 -07:00
Luke
a106cd3ac9 Merge branch 'master' of github.com:LukeSmithxyz/mutt-wizard 2018-02-18 08:41:24 -07:00
Luke
91bbeaa52f pfix? 2018-02-18 08:41:02 -07:00
Luke Smith
54fa5a86ff
Merge pull request #10 from scattenlaeufer/smtp_fix
Fix smtp url for manually entered smtp servers
2018-02-18 10:39:12 -05:00
Björn Guth
4c1cc3a6a7 Fix smtp url for manually entered smtp servers
This fixes one half of #6.
2018-02-18 16:34:07 +01:00
Luke
91eb7744f2 addaccount redundant dir creation 2018-02-18 08:24:57 -07:00
Luke
9160af5d38 readme clarifications 2018-02-18 08:00:46 -07:00