email-importer.txt 1.4 KB

12345678910111213141516171819202122232425262728293031
  1. Insipid has a feature to fetch new links from E-Mails.
  2. Those E-Mails are read from a configured IMAP mailbox.
  3. You need to enable the imap functions within PHP and
  4. have a IMAP mailbox on a SSL/TLS email server.
  5. Set the config variables in the config file.
  6. Make sure you an individual marker string!
  7. There is no "security" within this method. Only the special string you can define.
  8. The new links will be hidden at first. You need to verify them before they are
  9. visible in your list.
  10. Here are the important configs:
  11. EMAIL_SERVER => Address of your E-Mail server
  12. EMAIL_SERVER_PORT_IMAP => The SSL Imap port. Default: 993
  13. EMAIL_SERVER_MAILBOX => The name of your Inbox. Default: INBOX
  14. EMAIL_ARCHIVE_FOLDER => The name of the archive folder in which the processed emails will be moved
  15. EMAIL_REPORT_BACK => set this to true if you want to report to the sender. Default: false
  16. EMAIL_SERVER_PORT_SMTP => The SSL SMTP port for using the report back function. Default: 465
  17. EMAIL_REPLY_BACK_VALID => Multiple E-Mails addresses which can be reported back to. RFC822-style comma-separated email addresses
  18. EMAIL_REPLY_BACK_ADDRESS => The E-Mail address which sends the report mail. Usually the address from which your read the mails
  19. Syntax of the E-Mail body:
  20. absolute-link|multiple,category,strings|multiple,tag,strings\n
  21. new-absolute-link|multiple,category,strings|multiple,tag,strings\n
  22. Create a cronjob to execute the email-import.php file.