email-importer.txt 1.5 KB

12345678910111213141516171819202122232425262728293031323334
  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/ssl 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. Access the moderation with this link: index.php?p=stats
  11. After authentication there will be more info and one called Moderation
  12. Here are the important configs:
  13. EMAIL_SERVER => Address of your E-Mail server
  14. EMAIL_SERVER_PORT_IMAP => The SSL Imap port. Default: 993
  15. EMAIL_SERVER_MAILBOX => The name of your Inbox. Default: INBOX
  16. EMAIL_ARCHIVE_FOLDER => The name of the archive folder in which the processed emails will be moved
  17. EMAIL_REPORT_BACK => set this to true if you want to report to the sender. Default: false
  18. EMAIL_SERVER_PORT_SMTP => The SSL SMTP port for using the report back function. Default: 465
  19. EMAIL_REPLY_BACK_VALID => Multiple E-Mails addresses which can be reported back to. RFC822-style comma-separated email addresses
  20. EMAIL_REPLY_BACK_ADDRESS => The E-Mail address which sends the report mail. Usually the address from which your read the mails
  21. Syntax of the E-Mail body:
  22. absolute-link|multiple,category,strings|multiple,tag,strings\n
  23. new-absolute-link|multiple,category,strings|multiple,tag,strings\n
  24. Create a cronjob to execute the email-import.php file.