Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
mailinabox
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
mailinabox
Commits
6336cc64
Commit
6336cc64
authored
Dec 22, 2015
by
Scott Bronson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tiny tweaks to make the bash slightly more readable
parent
62e88cff
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
10 deletions
+8
-10
mail-dovecot.sh
setup/mail-dovecot.sh
+5
-4
system.sh
setup/system.sh
+3
-6
No files found.
setup/mail-dovecot.sh
View file @
6336cc64
...
@@ -88,11 +88,12 @@ sed -i "s/#port = 110/port = 0/" /etc/dovecot/conf.d/10-master.conf
...
@@ -88,11 +88,12 @@ sed -i "s/#port = 110/port = 0/" /etc/dovecot/conf.d/10-master.conf
# this are minimal. But for good measure, let's go to 4 minutes to halve the
# this are minimal. But for good measure, let's go to 4 minutes to halve the
# bandwidth and number of times the device's networking might be woken up.
# bandwidth and number of times the device's networking might be woken up.
# The risk is that if the connection is silent for too long it might be reset
# The risk is that if the connection is silent for too long it might be reset
# by a peer. See #129 and http://razor.occams.info/blog/2014/08/09/how-bad-is-imap-idle/.
# by a peer. See [#129](https://github.com/mail-in-a-box/mailinabox/issues/129)
# and [How bad is IMAP IDLE](http://razor.occams.info/blog/2014/08/09/how-bad-is-imap-idle/).
tools/editconf.py /etc/dovecot/conf.d/20-imap.conf
\
tools/editconf.py /etc/dovecot/conf.d/20-imap.conf
\
imap_idle_notify_interval
=
"4 mins"
imap_idle_notify_interval
=
"4 mins"
# Set POP3 UIDL
# Set POP3 UIDL
.
# UIDLs are used by POP3 clients to keep track of what messages they've downloaded.
# UIDLs are used by POP3 clients to keep track of what messages they've downloaded.
# For new POP3 servers, the easiest way to set up UIDLs is to use IMAP's UIDVALIDITY
# For new POP3 servers, the easiest way to set up UIDLs is to use IMAP's UIDVALIDITY
# and UID values, the default in Dovecot.
# and UID values, the default in Dovecot.
...
...
setup/system.sh
View file @
6336cc64
...
@@ -12,12 +12,9 @@ source setup/functions.sh # load our functions
...
@@ -12,12 +12,9 @@ source setup/functions.sh # load our functions
# text search plugin for (and by) dovecot, which is not available in
# text search plugin for (and by) dovecot, which is not available in
# Ubuntu currently.
# Ubuntu currently.
#
#
# Add that to the system's list of repositories using add-apt-repository.
# So, first ensure add-apt-repository is installed, then use it to install
# But add-apt-repository may not be installed. If it's not available,
# the [mail-in-a-box ppa](https://launchpad.net/~mail-in-a-box/+archive/ubuntu/ppa).
# then install it. But we have to run apt-get update before we try to
# install anything so the package index is up to date. After adding the
# PPA, we have to run apt-get update *again* to load the PPA's index,
# so this must precede the apt-get update line below.
if
[
!
-f
/usr/bin/add-apt-repository
]
;
then
if
[
!
-f
/usr/bin/add-apt-repository
]
;
then
echo
"Installing add-apt-repository..."
echo
"Installing add-apt-repository..."
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment