-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
email: Various minor fixes and updates.
mod_webmail: Fix typo adding Cc and Reply-To recipients to "To" list. mod_webmail: Flush updates before IDLE to prevent client getting out of sync. net_imap: Reject FETCH commands immediately if missing sequence number. Previously, an error response would have been sent for every message, otherwise. libetpan.sh: Update installation to incorporate unmerged SMTP patch.
- Loading branch information
1 parent
48f371b
commit 5e0b0f3
Showing
4 changed files
with
60 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,24 @@ | ||
#!/bin/sh | ||
|
||
# This script can be used to compile libetpan from source. | ||
# However, as of this writing, the package version also suffices. | ||
# This script is used to compile libetpan from source, | ||
# with modifications that are required for LBBS and other software. | ||
|
||
set -e | ||
|
||
cd /usr/local/src | ||
git clone https://github.com/dinhvh/libetpan.git | ||
cd libetpan | ||
if [ ! -d libetpan ]; then | ||
git clone https://github.com/dinhvh/libetpan.git | ||
cd libetpan | ||
else | ||
cd libetpan | ||
git stash | ||
git pull | ||
make clean | ||
fi | ||
wget "https://github.com/dinhvh/libetpan/commit/5ea630e6482422ffa2e26b9afe5fb47a9eb673a2.diff" | ||
git apply "5ea630e6482422ffa2e26b9afe5fb47a9eb673a2.diff" | ||
wget "https://github.com/dinhvh/libetpan/commit/4226610e3dc19f58345ae7c5146fa8cf249ca97b.patch" | ||
git apply "5ea630e6482422ffa2e26b9afe5fb47a9eb673a2.diff" # IMAP STATUS=SIZE | ||
git apply "4226610e3dc19f58345ae7c5146fa8cf249ca97b.patch" # SMTP AUTH | ||
./autogen.sh --with-poll | ||
make | ||
make install | ||
make install |