about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorSeán C McCord <scm@cycoresys.com>2020-09-13 15:17:36 -0400
committerReto Brunner <reto@labrat.space>2020-09-14 07:14:16 +0200
commit72d81ba6034d31924a346c7c327e38b0db538c53 (patch)
tree7c12ee3564847d37d673a8fc2c4a4d534667917d
parent9d801414084470340f4cc1a9e0597d0a8d792587 (diff)
downloadaerc-72d81ba6034d31924a346c7c327e38b0db538c53.tar.gz
doc: add oauth to aerc-smtp
Signed-off-by: Seán C McCord <ulexus@gmail.com>
-rw-r--r--doc/aerc-smtp.5.scd6
1 files changed, 5 insertions, 1 deletions
diff --git a/doc/aerc-smtp.5.scd b/doc/aerc-smtp.5.scd
index 79dc8b8..8490c58 100644
--- a/doc/aerc-smtp.5.scd
+++ b/doc/aerc-smtp.5.scd
@@ -16,7 +16,7 @@ In accounts.conf (see *aerc-config*(5)), the following SMTP-specific options are
 available:
 
 *outgoing*
-	smtp[s][+plain|+none]://username[:password]@hostname[:port]
+	smtp[s][+plain|+login|+none|+oauthbearer]://username[:password]@hostname[:port]?[:oauth2_params]
 
 	Remember that all fields must be URL encoded. The "@" symbol, when URL
 	encoded, is *%40*.
@@ -43,6 +43,10 @@ available:
 		Authenticate with a username and password using AUTH LOGIN. This is an obsolete
 		protocol, but is required for some common webmail providers.
 
+	*+oauthbearer*:
+		SMTP with TLS/SSL using OAUTHBEARER Authentication.  See documentation in
+		*aerc-imap*(5) for usage.
+
 *outgoing-cred-cmd*
 	Specifies the command to run to get the password for the SMTP
 	account. This command will be run using `sh -c [command]`. If a
n138'>138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249