summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
* Enumerate Cc and Bcc lists in composerDrew DeVault2019-06-021-1/+20
|
* Fix infinite recursion in reply.go:findPlaintextDrew DeVault2019-06-021-1/+1
|
* Simplify layout of message viewer gridDrew DeVault2019-06-021-17/+3
| | | | This sub-grid was an artifact of an older design
* Fetch plaintext part when replyingDrew DeVault2019-06-011-6/+34
|
* Use forked version of tcellDrew DeVault2019-06-013-4/+15
|
* widgets/terminal: Don't segfault on resizeKevin Kuehler2019-06-011-10/+15
| | | | | | | vterm.Write and vterm.SetSize race when the window resizes, which causing the underlying library to segfault. Signed-off-by: Kevin Kuehler <keur@ocf.berkeley.edu>
* Remove more GNU-isms from MakefileSam Whited2019-06-011-11/+18
| | | | Signed-off-by: Sam Whited <sam@samwhited.com>
* Remove "wildcard" GNU-ism from MakefileSam Whited2019-05-301-15/+2
| | | | Signed-off-by: Sam Whited <sam@samwhited.com>
* Add :save and :pipe commands to viewerGalen Abell2019-05-278-37/+194
| | | | | | | | | * :save takes a path and saves the current message part to that location * :pipe is the same as pipe on the account page, but uses the current message part rather than the whole email (ie :pipe gzip -d) * Refactored account:pipe and extracted common pipe code to commands.util.QuickTerm * Added helper command aerc.PushError
* Update terminal color handling per vterm changesDrew DeVault2019-05-263-44/+25
|
* Update to the latest go-libvtermDrew DeVault2019-05-264-5/+15
|
* Update go-libvtermDrew DeVault2019-05-262-1/+3
|
* Skip non selectable mailboxes in directory listingReto Brunner2019-05-261-0/+13
| | | | | | | | | | | | | | | | If a MailboxInfo has the attribute \Noselect, it is not possible to use this name as a selectable mailbox. Therefore it should not be passed to the directory handlers. The issue pops up if one has a hierarchy like this: INBOX INBOX/lists/stuff INBOX/lists/otherStuff Even though lists is not a valid inbox (doesn't contain mail, only other maildirs) it will show up in the directory listing, when we iterate over the MailboxInfo. It does have the corresponding attribute set though and we can simply filter it out.
* Add aerc-announce to README.mdDrew DeVault2019-05-261-3/+6
|
* Implement :edit in compose screenDrew DeVault2019-05-264-28/+80
|
* msgviewer: copy stderr into pagerDrew DeVault2019-05-261-1/+17
| | | | This prevents a broken filter config from being a silent error
* Subsitute prefix in aerc.conf for installDrew DeVault2019-05-263-7/+21
|
* Document :forward in aerc(1)Drew DeVault2019-05-251-0/+3
|
* binds.conf: make reply -a easier to use than replyDrew DeVault2019-05-251-4/+4
|
* Update README.mdDrew DeVault2019-05-251-1/+1
|
* Update README.mdDrew DeVault2019-05-251-13/+4
|
* Update README.mdDrew DeVault2019-05-251-1/+3
|
* ensureScroll on text input framesDrew DeVault2019-05-251-0/+2
|
* Implement scrolling in text inputDrew DeVault2019-05-251-3/+31
|
* Implement :forwardDrew DeVault2019-05-251-31/+81
|
* Fix special characters in address.PersonalNameDrew DeVault2019-05-255-33/+47
|
* Change ex command to C-x when using terminalDrew DeVault2019-05-242-2/+5
|
* Bind :compose to C in binds.confFrancis Dinh2019-05-231-0/+2
| | | | | The tutorial mentions using "C" for composing messages, but this was not actually implemented in binds.conf.
* Fix key value typo in documentationRoshless2019-05-232-2/+2
|
* Mention custom headers in aerc-tutorial(7)Drew DeVault2019-05-221-1/+3
|
* Minor fixes to list of filter dependenciesFrancis Dinh2019-05-221-1/+1
| | | | | - "sockify" -> "socksify" - Added colorama dependency
* Makefile: Minor improvements, usage of $@ and $(RM)Stefan Tatschner2019-05-221-2/+2
|
* Correct typo in MakefileDrew DeVault2019-05-221-1/+1
|
* Install $(MANDIR)/man7Drew DeVault2019-05-221-1/+1
|
* Install aerc-tutorial man page with make installDrew DeVault2019-05-221-0/+1
|
* Minor improvements to aerc-tutorialDrew DeVault2019-05-221-7/+4
|
* Install default configs to XDG config if not foundDrew DeVault2019-05-223-14/+53
|
* Add GOFLAGS variable to MakefileDrew DeVault2019-05-221-1/+3
|
* Show account wizard if no accounts configuredDrew DeVault2019-05-224-12/+12
|
* Implement :helpDrew DeVault2019-05-221-0/+21
|
* Implement opening tutorial after account wizardDrew DeVault2019-05-224-2/+170
|
* Write new accounts to config and open tabDrew DeVault2019-05-222-8/+140
|
* Fix always showing last account tabDrew DeVault2019-05-221-2/+2
|
* Remove excess padding from incoming config pageDrew DeVault2019-05-211-1/+1
|
* New account wizard, part oneDrew DeVault2019-05-217-13/+683
|
* Use kebab-case for cred-cmdsDrew DeVault2019-05-212-9/+7
|
* Load IMAP worker for imap+insecureDrew DeVault2019-05-203-4/+13
|
* Pass ServerName to tls.Config for SMTPDrew DeVault2019-05-201-2/+12
|
* Show unsupported mimetype message in redDrew DeVault2019-05-201-1/+1
|
* Show attachment names in multipart viewDrew DeVault2019-05-201-1/+5
|
a> 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172