Which e-mail IMAP/SMTP app ? - Printable Version +- PINE64 (https://forum.pine64.org) +-- Forum: PinePhone (https://forum.pine64.org/forumdisplay.php?fid=120) +--- Forum: PinePhone Software (https://forum.pine64.org/forumdisplay.php?fid=121) +---- Forum: UBPorts on PinePhone (https://forum.pine64.org/forumdisplay.php?fid=125) +---- Thread: Which e-mail IMAP/SMTP app ? (/showthread.php?tid=9358) |
Which e-mail IMAP/SMTP app ? - drpi - 03-05-2020 Hi, Which e-mail application is usable with UBPorts ? I tried Dekko2 but it doesn't work correctly. Nicolas RE: Which e-mail IMAP/SMTP app ? - pawlinski - 03-05-2020 At present, only Dekko2. I think that possibly Mutt (small text-based email client) RE: Which e-mail IMAP/SMTP app ? - drpi - 03-08-2020 (03-05-2020, 01:43 PM)pawlinsk Wrote: I think that possibly Mutt (small text-based email client) I'll wait for Dekko2 to work correctly RE: Which e-mail IMAP/SMTP app ? - kugiigi - 03-08-2020 (03-05-2020, 06:16 AM)drpi Wrote: Hi, How is it not working? What error do you get? I have it working on mine although sometimes when I open it, the system crashes and needing a reboot but other that, it works fine. I did not configure my setup on my pinephone though, I copied the data from my other UT device. RE: Which e-mail IMAP/SMTP app ? - drpi - 03-08-2020 (03-08-2020, 09:56 AM)kugiigi Wrote:(03-05-2020, 06:16 AM)drpi Wrote: Hi, The problem is with the UI. When configuring a new account, the UI is, most often, not updated while typing. I have to switch to another application and switch back to Dekko2 for the UI to update. This is very annoying. Creating a new account is very laborious. Same problem when typing a message. It looks like messages are received correctly (just made simple tests). I did not try to send one. Note : I filled a bugĀ on gitlab RE: Which e-mail IMAP/SMTP app ? - antiX-Dave - 04-14-2020 I have the same problem with the UI not updating. If the keyboard is not on screen then the UI updates fine. Unfortunately the keyboard not being on screen also makes it quite difficult to enter information. I cannot actually configure my email accounts as having to toggle the apps causes the keyboard to always appear leaving me unable to press the next button. It did work for another account but would crash when opened. Both issues are reported already from what I see. I also tried to use a "normal" linux desktop client with libertine but could not quite get libertine working. So for the time being I installed rainloop webmail client via ssh sudo su apt update apt install nginx-light php7.0-fpm php7.0-curl php7.0-xml made a directory in /opt, downloaded and extracted a copy of rainloop community edition from https://www.rainloop.net/downloads/ mkdir -p /opt/rainloop cd /opt/rainloop wget https://www.rainloop.net/repository/webmail/rainloop-community-latest.zip unzip rainloop-community-latest.zip Then entered the following for configuration in nginx mv /etc/nginx/site-available/default /etc/nginx/sites-available/original nano /etc/nginx/sites-enabled/default Code: server { Restarted nginx service nginx restart Edit the php configuration so that the option to fuzzy match files is disabled nano /etc/php/7.0/fpm/php.ini Look for the line #cgi.fix_pathinfo=1 uncomment and set to 0 cgi.fix_pathinfo=0 save and restart php /etc/init.d/php7-fpm restart Opened a browser on my computer and entered the address http://ip-of-phone/?admin User: admin Pass: 12345 Note: It may be possible to do this setup on phone in morph browser under desktop mode. It does not work on the phone under mobile view as the left side menu does not appear. Under domains add / configure your @domains server settings for logging in. Under security you should probably change your admin password Logout. Back in the ssh session open your nginx config again and change the listen line to only listen on localhost listen 127.0.0.1:80 default_server; save, close, and restart the nginx service. In morph browser type in the address bar http://localhost/ Login to your account. ex: myname@gmail.com mypass Optionals: If you have multiple accounts, after logging into one account you can press the person icon in the top right and press add account (as long as you set it up in the domains section earlier). You are then able to switch accounts by pressing the person icon followed by the account. To make a shortcut on the side bar or under the applications Add a .desktop file in /usr/share/applications/. I named mine mail.desktop nano /usr/share/applications/mail.desktop with the contents as follows, which a copy of morph-browser.desktop originally Code: [Desktop Entry] You should then (or shortly after saving) see the mail item in the applications menu. When you press it to run it is then possible to pin to the quick start menu via long press. RE: Which e-mail IMAP/SMTP app ? - clover - 04-15-2020 (04-14-2020, 09:45 PM)antiX-Dave Wrote: So for the time being I installed rainloop webmail client via sshThanks for the tip and fantastic tutorial. Will be trying this. |