imap-settings
IMAP library

Next:with-imap ( host email password quot -- )


Vocabulary
imap

Variable description
A tuple for holding the host, email, and password for an IMAP account. Setting this information as a global variable in your .factor-rc or .factor-boot-rc is recommended.

Examples
Run the next example and click the link to edit your boot rc:
USING: imap tools.scaffold ; scaffold-factor-boot-rc

Add the following settings to your bootstrap rc file:
USING: imap namespaces ; "imap.gmail.com" "foo@gmail.com" "password" <imap-settings> \ imap-settings set-global

Run your boot rc again:
USING: command-line ; run-bootstrap-init


See also
with-imap-settings

Variable value
Current value in global namespace:
T{ imap-settings f "imap.gmail.com" "factor.builds2@gmail.com"...


Definition

TUPLE: imap-settings host email password ;