Welcome to Centmin Mod Community
Become a Member

How to use Evernote with CentOS server

Discussion in 'System Administration' started by eva2000, Jan 25, 2015.

  1. eva2000

    eva2000 Administrator Staff Member

    53,488
    12,130
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,672
    Local Time:
    11:25 AM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    Evernote is a great app for organising your notes etc. One great feature in Evernote is ability to send or inset notes into Evernote via email address. When you sign up for Evernote account (basic and premium), you get assigned an email address which you can find in your Account Info/Settings i.e. yourassignedname@m.evernote.com.

    You can download Evernote for desktop apps as well as mobile and tablet devices so you can share and sync notes and access the notes on all devices :)

    A very simple example of grabbing the last 5 lines of my /var/log/cron log and emailing it to my Evernote assigned email address. I used the subject title "/var/log/maillog `hostname` `date`" so as to title the note entry with my server's hostname and date. The best part is Evernote's powerful search and tagging ability.

    Code:
    tail -5 /var/log/cron | mail -s "/var/log/maillog `hostname` `date`" yourassignedname@m.evernote.com
    Evernote Web client when logged into your browser.

    evernote_web_00.png

    Centmin Mod installs and uses mailx for the mail command, so check out the manual for what you can do here. Other mailx guides below
    You can be as creative as you want to utilise Evernote and the ability to sync and access all your notes across all your desktop, mobile and tablet devices :)

    If you think of more examples of how you could use Evernote for Centmin Mod / CentOS setups, post a reply here :D

    Evernote account limits for free vs premium outlined here Evernote Knowledge Base | Evernote. Free accounts limited to 60MB per month upload and unlimited storage. Premium limited to 4GB per month and unlimited storage.

    evernote_uploads_00.png

    There's also email limits depending on plans

    Enjoy !

     
    Last edited: Jan 26, 2015
  2. eva2000

    eva2000 Administrator Staff Member

    53,488
    12,130
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +18,672
    Local Time:
    11:25 AM
    Nginx 1.27.x
    MariaDB 10.x/11.4+
    Awesome got an email from Evernote for more email tips :D

    Let's test this out

    Code:
    tail -5 /var/log/cron | mail -s "/var/log/cron `hostname` `date` @sslspdy.com #sslspdy"  yourassignedname@m.evernote.com
    seems it went to right notebook called sslspdy.com but the tag wasn't added heh

    evernote_centos_00.png
     
    Last edited: Jan 26, 2015