roundcube
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
roundcube [2022/07/19 19:52] – created 85.134.209.200 | roundcube [2022/07/27 20:56] (current) – verify_peer_name to false also admin | ||
---|---|---|---|
Line 4: | Line 4: | ||
I did think of using ilohamail as it was on apt-get, but I heard and used roundcube before, so I said I'd go with that, even though it wasn't on apt-get for lenny. | I did think of using ilohamail as it was on apt-get, but I heard and used roundcube before, so I said I'd go with that, even though it wasn't on apt-get for lenny. | ||
+ | |||
+ | ====== Setup Roundcube on Debian Bullseye with SQLite ====== | ||
+ | ==== Install ==== | ||
+ | < | ||
+ | apt-get install roundcube-core roundcube-sqlite3 | ||
+ | |||
+ | Configure database for roundcube with dbconfig-common? | ||
+ | YES | ||
+ | |||
+ | When prompted choose | ||
+ | sqlite | ||
+ | </ | ||
+ | That should be it installed. | ||
+ | |||
+ | ==== Configure Apache ==== | ||
+ | By default roundcube gets enabled in apache and its config is placed in: / | ||
+ | < | ||
+ | vi / | ||
+ | #uncomment | ||
+ | #Alias /roundcube / | ||
+ | |||
+ | / | ||
+ | </ | ||
+ | In your browser navigate to: http:// | ||
+ | |||
+ | ==== Config Roundcube ==== | ||
+ | Need to config for imaps and to ignore self-signed cert. | ||
+ | < | ||
+ | vi / | ||
+ | |||
+ | $config[' | ||
+ | $config[' | ||
+ | |||
+ | $config[' | ||
+ | ' | ||
+ | ' | ||
+ | ' | ||
+ | ' | ||
+ | ), | ||
+ | ); | ||
+ | |||
+ | </ | ||
+ | Now you should be able to login. | ||
+ | |||
+ | === Sending Emails with Roundcube Config === | ||
+ | I was getting error: **SMTP Error (250): Authentication failed** | ||
+ | |||
+ | Config used: | ||
+ | < | ||
+ | vi / | ||
+ | # | ||
+ | $config[' | ||
+ | $config[' | ||
+ | $config[' | ||
+ | ' | ||
+ | ' | ||
+ | ' | ||
+ | ' | ||
+ | ' | ||
+ | ), | ||
+ | ); | ||
+ | $config[' | ||
+ | $config[' | ||
+ | $config[' | ||
+ | </ | ||
+ | |||
+ | I tried to get roundcube to send without auth, but it wouldn' | ||
+ | The above works. This works with postfix setup [[setup-config-debian-bullseye# | ||
+ | |||
====== Setup Roundcube on Debian Lenny with SQLite ====== | ====== Setup Roundcube on Debian Lenny with SQLite ====== | ||
Line 9: | Line 78: | ||
http:// | http:// | ||
+ | < | ||
cd /var/www/ | cd /var/www/ | ||
mkdir roundcube | mkdir roundcube | ||
Line 61: | Line 131: | ||
# | # | ||
| | ||
+ | </ | ||
===== Notes ===== | ===== Notes ===== | ||
I was happy I could use ssl on 993 as I have imap 143 blocked at the firewall. I think roundcube bottom posts (as opposed to top post) when replying to emails. I think this will be fixed down the line. It wasn't much of an issue. | I was happy I could use ssl on 993 as I have imap 143 blocked at the firewall. I think roundcube bottom posts (as opposed to top post) when replying to emails. I think this will be fixed down the line. It wasn't much of an issue. | ||
Line 67: | Line 137: | ||
===== Issues ===== | ===== Issues ===== | ||
chmod 777 or setting the permissions on sqlite.db was unsufficient on its own. The folder in which sqlite.db is located must be writable by the server (to create temp lock files). As a result I chose to create a db folder and to place sqlite.db in that! Otherwise you might get this error: | chmod 777 or setting the permissions on sqlite.db was unsufficient on its own. The folder in which sqlite.db is located must be writable by the server (to create temp lock files). As a result I chose to create a db folder and to place sqlite.db in that! Otherwise you might get this error: | ||
+ | < | ||
| | ||
| | ||
Line 74: | Line 145: | ||
| | ||
| | ||
+ | </ | ||
The actual config for sqlite is: | The actual config for sqlite is: | ||
+ | < | ||
| | ||
# | # | ||
+ | </ | ||
Dont use sqlite3 to create the sqlite.db. It wont work. | Dont use sqlite3 to create the sqlite.db. It wont work. | ||
Looks good apart from that. | Looks good apart from that. | ||
References: | References: | ||
- | http:// | + | * http:// |
- | http:// | + | |
- | http:// | + | |
- | http:// | + | |
roundcube.1658260370.txt.gz · Last modified: 2022/07/19 20:13 (external edit)