NeoMutt  2025-09-05-43-g177ed6
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
mutt_account.h
Go to the documentation of this file.
1
23
24#ifndef MUTT_CONN_MUTT_ACCOUNT_H
25#define MUTT_CONN_MUTT_ACCOUNT_H
26
27struct ConnAccount;
28struct Url;
29
42
43int account_from_url(struct ConnAccount *account, const struct Url *url);
44void account_to_url (struct ConnAccount *account, struct Url *url);
45
46#endif /* MUTT_CONN_MUTT_ACCOUNT_H */
int account_from_url(struct ConnAccount *account, const struct Url *url)
Fill ConnAccount with information from url.
AccountType
Account types.
@ MUTT_ACCT_TYPE_SMTP
Smtp Account.
@ MUTT_ACCT_TYPE_POP
Pop Account.
@ MUTT_ACCT_TYPE_NNTP
Nntp (Usenet) Account.
@ MUTT_ACCT_TYPE_IMAP
Imap Account.
@ MUTT_ACCT_TYPE_NONE
Account type is unknown.
@ MUTT_ACCT_TYPE_MAX
void account_to_url(struct ConnAccount *account, struct Url *url)
Fill URL with info from account.
Login details for a remote server.
Definition connaccount.h:53
A parsed URL proto://user:password@host:port/path?a=1&b=2
Definition url.h:69