Overview
Request 1745 (accepted)
Check in 0.8.1
- Created by vanmeeuwen over 8 years ago
- In state accepted
guam.spec
Changed
x
1
2
3
%{!?_unitdir: %global _unitdir /usr/lib/systemd/system}
4
5
+%define lock_version() %{1}%{?_isa} = %(rpm -q --queryformat "%{VERSION}" %{1})
6
+
7
Name: guam
8
-Version: 0.8
9
+Version: 0.8.1
10
Release: 0.20160219.git%{?dist}
11
Summary: A Smart Reverse IMAP Proxy
12
13
14
License: GPLv3+
15
URL: https://kolab.org/about/guam
16
17
-# From 3e4a3da61124e9c79b7f7f49516e6e86aa072051
18
-Source0: guam-0.8.tar.gz
19
+Source0: guam-%{version}.tar.gz
20
21
Patch9991: guam-0.8-T1312-set-HOME-environment-variable-in-sysvinit-script.patch
22
-
23
-Patch0001: 0001-introduce-net_iface-for-listeners.patch
24
-Patch0002: 0002-lets-start-keeping-a-changelog.patch
25
-Patch0003: 0003-enable-ipv6-by-default.patch
26
-Patch0004: 0004-update-this-function-for-the-data-structure-change-i.patch
27
-Patch0005: 0005-correct-version-of-eimap-though-this-is-like-to-bump.patch
28
-Patch0006: 0006-fix-typo.patch
29
-Patch0007: 0007-Correct-the-actual-version-back-to-0.8.patch
30
-Patch0008: 0008-Relax-dependency-on-lager.patch
31
-Patch0009: 0001-make-add_starttls_to_capabilities-work-also-on-the-f.patch
32
-Patch0010: 0006-correct-response-for-mplicit_tls-listeners.patch
33
-Patch0011: 0007-do-a-full-OK-CAPABILITY-banner-for-all-correct_hello.patch
34
-Patch0012: 0008-remove-AUTH-entries-put-LOGINDISABLED-if-we-put-up-a.patch
35
-Patch0013: 0011-switch-to-triggering-on-any-list-where-the-last-two-.patch
36
+Patch9992: guam-0.8.1-relax-dependencies-set-correct-version-number.patch
37
38
BuildRequires: erlang >= 17.4
39
BuildRequires: erlang-asn1
40
41
Requires(pre): shadow-utils
42
Requires(postun): shadow-utils
43
44
-Requires: erlang >= 17.4
45
-Requires: erlang-eimap >= 0.1.2
46
-Requires: erlang-goldrush
47
-Requires: erlang-lager >= 2.1.0
48
-Requires: erlang-lager_syslog >= 1.0.3
49
+Requires: %lock_version erlang
50
+Requires: %lock_version erlang-eimap
51
+Requires: %lock_version erlang-goldrush
52
+Requires: %lock_version erlang-lager
53
+Requires: %lock_version erlang-lager_syslog
54
55
%if 0%{?with_systemd}
56
%if 0%{?suse_version}
57
58
%setup -q
59
60
%patch9991 -p1
61
-
62
-%patch0001 -p1
63
-%patch0002 -p1
64
-%patch0003 -p1
65
-%patch0004 -p1
66
-%patch0005 -p1
67
-%patch0006 -p1
68
-%patch0007 -p1
69
-%patch0008 -p1
70
-%patch0009 -p1
71
-%patch0010 -p1
72
-%patch0011 -p1
73
-%patch0012 -p1
74
-%patch0013 -p1
75
+%patch9992 -p1
76
77
%build
78
rebar compile
79
80
rebar skip_deps=true eunit -v
81
82
%pretrans
83
-pushd /opt/kolab_guam/lib
84
+pushd /opt/kolab_guam/lib >/dev/null 2>&1 || :
85
for dir in $(ls -d */ | grep -v kolab_guam); do
86
dir=$(basename ${dir})
87
- rm -rf -- ${dir}
88
+ rm -rf -- /opt/kolab_guam/lib/${dir}
89
done
90
+popd >/dev/null 2>&1 || :
91
92
%pre
93
if [ $1 == 1 ]; then
94
95
/opt/%{realname}/
96
97
%changelog
98
+* Tue Jul 5 2016 Jeroen van Meeuwen <vanmeeuwen@kolabsys.com> - 0.8.1-1
99
+- Release of version 0.8.1
100
+
101
* Fri Jun 10 2016 Aaron Seigo <seigo@kolabsystems.com>
102
- Package version 0.8
103
104
0001-introduce-net_iface-for-listeners.patch
Deleted
91
1
2
-From f527fde7a659f67314adb161025965b242655b83 Mon Sep 17 00:00:00 2001
3
-From: Aaron Seigo <aseigo@kde.org>
4
-Date: Tue, 5 Jan 2016 10:49:13 +0100
5
-Subject: [PATCH 1/8] introduce net_iface for listeners
6
-
7
----
8
- apps/kolab_guam/src/kolab_guam_listener.erl | 17 +++++++++++++----
9
- docs/deployment.md | 16 ++++++++++++++--
10
- 2 files changed, 27 insertions(+), 6 deletions(-)
11
-
12
-diff --git a/apps/kolab_guam/src/kolab_guam_listener.erl b/apps/kolab_guam/src/kolab_guam_listener.erl
13
-index 7b7a283..c50b4b1 100644
14
---- a/apps/kolab_guam/src/kolab_guam_listener.erl
15
-+++ b/apps/kolab_guam/src/kolab_guam_listener.erl
16
-@@ -35,11 +35,12 @@ start_link(Name, Config) -> supervisor:start_link(?MODULE, [Name, Config]).
17
- %% gen_server API
18
- init([Name, Config]) ->
19
- Host = proplists:get_value(host, Config, none),
20
-+ NetIface = proplists:get_value(net_iface, Config, none),
21
- Port = proplists:get_value(port, Config, ?DEFAULT_IMAP_PORT),
22
- ImplicitTLS = proplists:get_value(implicit_tls, Config, false),
23
- TLSConfig = proplists:get_value(tls_config, Config, []),
24
- Rules = proplists:get_value(rules, Config, []),
25
-- Options = listen_options(Host, ImplicitTLS, TLSConfig),
26
-+ Options = listen_options(NetIface, Host, ImplicitTLS, TLSConfig),
27
- lager:info("Starting listener \"~p\" on port ~B (~p) with ~B rules", [Name, Port, Options, length(Rules)]),
28
- { ok, ListenSocket } = listen(ImplicitTLS, Port, Options),
29
- spawn_link(?MODULE, cleanup, [ListenSocket]),
30
-@@ -55,13 +56,21 @@ init([Name, Config]) ->
31
- imap_config(none) -> kolab_guam_sup:default_imap_server_config();
32
- imap_config(Backend) -> kolab_guam_sup:imap_server_config(Backend).
33
-
34
--listen_options(none, ImplicitTLS, TLSConfig) -> default_listen_options(ImplicitTLS, TLSConfig);
35
--listen_options(Hostname, ImplicitTLS, TLSConfig) ->
36
-+listen_options(none, none, ImplicitTLS, TLSConfig) -> default_listen_options(ImplicitTLS, TLSConfig);
37
-+listen_options(none, Hostname, ImplicitTLS, TLSConfig) ->
38
- case inet:gethostbyname(Hostname) of
39
- { ok, { hostent, _HostName, _Unused, inet, _Ver, [IP] } } ->
40
- [ { ip, IP } | default_listen_options(ImplicitTLS, TLSConfig) ];
41
- _ ->
42
-- listen_options(none, ImplicitTLS, TLSConfig)
43
-+ listen_options(none, none, ImplicitTLS, TLSConfig)
44
-+ end;
45
-+listen_options(Iface, Hostname, ImplicitTLS, TLSConfig) ->
46
-+ { ok, Ifaces } = inet:getifaddrs(),
47
-+ case proplists:get_value(Iface, Ifaces) of
48
-+ undefined -> listen_options(none, Hostname, ImplicitTLS, TLSConfig);
49
-+ Info -> Addr = proplists:get_value(addr, Info, none),
50
-+ lager:info("YEAH! ~p", [Addr]),
51
-+ listen_options(none, Addr, ImplicitTLS, TLSConfig)
52
- end.
53
-
54
- default_listen_options(true, TLSConfig) -> [ { reuseaddr, true }, {active, once } | TLSConfig ];
55
-diff --git a/docs/deployment.md b/docs/deployment.md
56
-index 33cd450..484d0ed 100644
57
---- a/docs/deployment.md
58
-+++ b/docs/deployment.md
59
-@@ -84,14 +84,26 @@ contains the configuration specifics. Example:
60
- { rules, [ { filter_groupware, [] } ] },
61
- { tls_config, [ { certfile, "/etc/ssl/sample.pem" } ] }
62
- ]
63
-+ },
64
-+ { default, [
65
-+ { net_iface, "eth0" },
66
-+ { port, 1993 },
67
-+ { imap_server, default },
68
-+ { implicit_tls, true },
69
-+ { rules, [ { filter_groupware, [] } ] },
70
-+ { tls_config, [ { certfile, "/etc/ssl/sample.pem" } ] }
71
-+ ]
72
- }
73
- }
74
-
75
- The host entry is optional, and is used to bind the connection to a specific
76
--network interface. Leaving it empty will cause Guam to bind to the port accross
77
-+network interface by ip address. Alternatively, the net_iface may be defined and
78
-+guam will attempt to bind to an address on that network device. net_iface overrides
79
-+host, though host will be used as a fallback if net_iface does not produce a network
80
-+interface. Leaving host and net_iface empty will cause Guam to bind to the port accross
81
- all network interfaces available to it.
82
-
83
--port defines the port it is listening on.
84
-+port defines the port the listener is active on.
85
-
86
- imap_server refers to the entry in the imap_servers block. If not provided, the
87
- default entry in the imap_servers configuration is used.
88
---
89
-2.5.5
90
-
91
0001-make-add_starttls_to_capabilities-work-also-on-the-f.patch
Deleted
39
1
2
-From f1df1fe2766912652a57c4c2cc1706e8eecf529f Mon Sep 17 00:00:00 2001
3
-From: Aaron Seigo <aseigo@kde.org>
4
-Date: Tue, 28 Jun 2016 08:47:19 +0200
5
-Subject: [PATCH] make add_starttls_to_capabilities work also on the first
6
- hello response
7
-
8
-.. which does not have a CAPABILITIES clause. do try to be put it after the
9
-the IMAP4v1 clause, though, for neatness
10
----
11
- apps/kolab_guam/src/kolab_guam_session.erl | 11 ++++++++++-
12
- 1 file changed, 10 insertions(+), 1 deletion(-)
13
-
14
-diff --git a/apps/kolab_guam/src/kolab_guam_session.erl b/apps/kolab_guam/src/kolab_guam_session.erl
15
-index 9439018..1f3869b 100644
16
---- a/apps/kolab_guam/src/kolab_guam_session.erl
17
-+++ b/apps/kolab_guam/src/kolab_guam_session.erl
18
-@@ -296,7 +296,16 @@ ensure_hello_has_starttls(ServerResponse) ->
19
-
20
- add_starttls_to_capabilities(ServerHello) ->
21
- case binary:match(ServerHello, <<"CAPABILITY ">>) of
22
-- nomatch -> ServerHello;
23
-+ nomatch -> add_starttls_after_imap4_atom(ServerHello);
24
-+ { Start, End } ->
25
-+ Prefix = binary:part(ServerHello, 0, Start + End),
26
-+ Suffix = binary:part(ServerHello, Start + End, size(ServerHello) - Start - End),
27
-+ <<Prefix/binary, "STARTTLS ", Suffix/binary>>
28
-+ end.
29
-+
30
-+add_starttls_after_imap4_atom(ServerHello) ->
31
-+ case binary:match(ServerHello, <<"IMAP4rev1 ">>) of
32
-+ nomatch -> <<"STARTTLS ", ServerHello/binary>>;
33
- { Start, End } ->
34
- Prefix = binary:part(ServerHello, 0, Start + End),
35
- Suffix = binary:part(ServerHello, Start + End, size(ServerHello) - Start - End),
36
---
37
-2.5.5
38
-
39
0002-lets-start-keeping-a-changelog.patch
Deleted
46
1
2
-From fde09ae6dd5b38642d8712893f39066d8f4f2091 Mon Sep 17 00:00:00 2001
3
-From: Aaron Seigo <aseigo@kde.org>
4
-Date: Mon, 13 Jun 2016 10:28:02 +0200
5
-Subject: [PATCH 2/8] lets start keeping a changelog
6
-
7
----
8
- CHANGELOG.md | 25 +++++++++++++++++++++++++
9
- 1 file changed, 25 insertions(+)
10
- create mode 100644 CHANGELOG.md
11
-
12
-diff --git a/CHANGELOG.md b/CHANGELOG.md
13
-new file mode 100644
14
-index 0000000..5f04931
15
---- /dev/null
16
-+++ b/CHANGELOG.md
17
-@@ -0,0 +1,25 @@
18
-+# Changelog
19
-+All notable changes to this project will be documented in this file.
20
-+
21
-+This project adheres to [Semantic Versioning](http://semver.org/).
22
-+
23
-+## [Unreleased]
24
-+### Added
25
-+- bind to a network interface (rather than an IP/host) with net_iface
26
-+### Changed
27
-+- upgraded build to rebar3
28
-+### Deprecated
29
-+### Removed
30
-+### Fixed
31
-+### Security
32
-+
33
-+
34
-+## [0.8.0] - 2016-06-08
35
-+### Added
36
-+- systemd service module
37
-+- sysv init script
38
-+### Changed
39
-+- Upgraded eimap to 0.2.4
40
-+### Fixed
41
-+- Support more variations of the LIST command args in the filter_groupware rule
42
-+
43
---
44
-2.5.5
45
-
46
0003-enable-ipv6-by-default.patch
Deleted
53
1
2
-From 86b9e66beabe4b61e7d091b8df7ad30e293c0cca Mon Sep 17 00:00:00 2001
3
-From: Aaron Seigo <aseigo@kde.org>
4
-Date: Mon, 20 Jun 2016 12:20:06 +0200
5
-Subject: [PATCH 3/8] enable ipv6 by default
6
-
7
-Summary:
8
-Set the listen socket to ipv6 mode always
9
-
10
-Tested and works with ipv4 addresses as well
11
-
12
-Reviewers: #guam_developers, vanmeeuwen
13
-
14
-Reviewed By: vanmeeuwen
15
-
16
-Differential Revision: https://git.kolab.org/D185
17
----
18
- apps/kolab_guam/src/kolab_guam_listener.erl | 8 +++++---
19
- 1 file changed, 5 insertions(+), 3 deletions(-)
20
-
21
-diff --git a/apps/kolab_guam/src/kolab_guam_listener.erl b/apps/kolab_guam/src/kolab_guam_listener.erl
22
-index c50b4b1..ebb0c99 100644
23
---- a/apps/kolab_guam/src/kolab_guam_listener.erl
24
-+++ b/apps/kolab_guam/src/kolab_guam_listener.erl
25
-@@ -56,6 +56,7 @@ init([Name, Config]) ->
26
- imap_config(none) -> kolab_guam_sup:default_imap_server_config();
27
- imap_config(Backend) -> kolab_guam_sup:imap_server_config(Backend).
28
-
29
-+-spec listen_options(Iface :: string(), Hostname :: string(), ImplicitTLS :: boolean(), TLSConfig :: list()) -> list().
30
- listen_options(none, none, ImplicitTLS, TLSConfig) -> default_listen_options(ImplicitTLS, TLSConfig);
31
- listen_options(none, Hostname, ImplicitTLS, TLSConfig) ->
32
- case inet:gethostbyname(Hostname) of
33
-@@ -69,12 +70,13 @@ listen_options(Iface, Hostname, ImplicitTLS, TLSConfig) ->
34
- case proplists:get_value(Iface, Ifaces) of
35
- undefined -> listen_options(none, Hostname, ImplicitTLS, TLSConfig);
36
- Info -> Addr = proplists:get_value(addr, Info, none),
37
-- lager:info("YEAH! ~p", [Addr]),
38
-+ %lager:info("YEAH! ~p", [Addr]),
39
- listen_options(none, Addr, ImplicitTLS, TLSConfig)
40
- end.
41
-
42
--default_listen_options(true, TLSConfig) -> [ { reuseaddr, true }, {active, once } | TLSConfig ];
43
--default_listen_options(_ImplicitTLS, _Config) -> [ { active, once }, { reuseaddr, true } ].
44
-+default_listen_options(true, TLSConfig) -> default_listen_options() ++ TLSConfig;
45
-+default_listen_options(_ImplicitTLS, _Config) -> default_listen_options().
46
-+default_listen_options() -> [ { reuseaddr, true }, {active, once }, inet6 ].
47
-
48
- create_initial_listeners(PID) when is_pid(PID) ->
49
- lager:debug("Creating session pool for listener ~p", [PID]),
50
---
51
-2.5.5
52
-
53
0004-update-this-function-for-the-data-structure-change-i.patch
Deleted
29
1
2
-From 130349adeef36dcbcf65e5435d16e66974f60804 Mon Sep 17 00:00:00 2001
3
-From: Aaron Seigo <aseigo@kde.org>
4
-Date: Mon, 20 Jun 2016 13:31:59 +0200
5
-Subject: [PATCH 4/8] update this function for the data structure change in
6
- eimap 0.2
7
-
8
----
9
- apps/kolab_guam/src/kolab_guam_session.erl | 3 ++-
10
- 1 file changed, 2 insertions(+), 1 deletion(-)
11
-
12
-diff --git a/apps/kolab_guam/src/kolab_guam_session.erl b/apps/kolab_guam/src/kolab_guam_session.erl
13
-index 60a28cb..69e239c 100644
14
---- a/apps/kolab_guam/src/kolab_guam_session.erl
15
-+++ b/apps/kolab_guam/src/kolab_guam_session.erl
16
-@@ -303,7 +303,8 @@ add_starttls_to_capabilities(ServerHello) ->
17
- <<Prefix/binary, "STARTTLS ", Suffix/binary>>
18
- end.
19
-
20
--ensure_hello_does_not_have_starttls(ServerHello) ->
21
-+ensure_hello_does_not_have_starttls(ServerResponse) ->
22
-+ ServerHello = proplists:get_value(capabilities, ServerResponse, <<>>),
23
- case binary:match(ServerHello, <<"STARTTLS">>) of
24
- nomatch -> ServerHello;
25
- { Start, End } ->
26
---
27
-2.5.5
28
-
29
0005-correct-version-of-eimap-though-this-is-like-to-bump.patch
Deleted
28
1
2
-From 1341368e92efcda4d98d0a12a61ce14a102c324b Mon Sep 17 00:00:00 2001
3
-From: Aaron Seigo <aseigo@kde.org>
4
-Date: Mon, 20 Jun 2016 16:57:34 +0200
5
-Subject: [PATCH 5/8] correct version of eimap (though this is like to bump
6
- again to 0.2.5)
7
-
8
----
9
- rebar.config | 2 +-
10
- 1 file changed, 1 insertion(+), 1 deletion(-)
11
-
12
-diff --git a/rebar.config b/rebar.config
13
-index bd55f4e..3dafb5a 100644
14
---- a/rebar.config
15
-+++ b/rebar.config
16
-@@ -5,7 +5,7 @@
17
- { deps, [
18
- { lager, "(2.0|2.1|2.2).*", { git, "git://github.com/basho/lager.git", { tag, "2.2.0" } } },
19
- { lager_syslog, "2.*", { git, "git://github.com/basho/lager_syslog.git", { tag, "2.1.3" } } },
20
-- { eimap, ".*", { git, "https://git.kolab.org/diffusion/EI/eimap.git", { tag, "0.2.2" } } }
21
-+ { eimap, ".*", { git, "https://git.kolab.org/diffusion/EI/eimap.git", { tag, "0.2.4" } } }
22
- %% pull in the proper version of meck before jobs 0.3 gets around to pulling in the wrong version
23
- ]
24
- }.
25
---
26
-2.5.5
27
-
28
0006-correct-response-for-mplicit_tls-listeners.patch
Deleted
60
1
2
-From 18bd1abb8a1221b16b2ec53641b07d8ef49130ea Mon Sep 17 00:00:00 2001
3
-From: Aaron Seigo <aseigo@kde.org>
4
-Date: Fri, 1 Jul 2016 12:40:04 +0200
5
-Subject: [PATCH 6/8] correct response for mplicit_tls listeners
6
-
7
----
8
- apps/kolab_guam/src/kolab_guam_session.erl | 20 ++++++++++++++------
9
- 1 file changed, 14 insertions(+), 6 deletions(-)
10
-
11
-diff --git a/apps/kolab_guam/src/kolab_guam_session.erl b/apps/kolab_guam/src/kolab_guam_session.erl
12
-index 1f3869b..df195a1 100644
13
---- a/apps/kolab_guam/src/kolab_guam_session.erl
14
-+++ b/apps/kolab_guam/src/kolab_guam_session.erl
15
-@@ -71,8 +71,8 @@ handle_info({ tcp, Socket, Data }, #state{ client_tls_active = false } = State)
16
- handle_info({ ssl, Socket, Data }, State) ->
17
- %lager:debug("Data coming in from client over SSL, ~p", [Data]),
18
- process_client_data(Socket, Data, State);
19
--handle_info({ server_hello, ServerHello }, #state{ imap_session = ImapSession, tls_config = TLSConfig, socket = Socket, client_tls_active = TLSActive, deflator = Deflator } = State) ->
20
-- CorrectedHello = correct_hello(TLSActive, TLSConfig, ServerHello),
21
-+handle_info({ server_hello, ServerHello }, #state{ imap_session = ImapSession, tls_config = TLSConfig, socket = Socket, client_implicit_tls = ImplicitTLS, client_tls_active = TLSActive, deflator = Deflator } = State) ->
22
-+ CorrectedHello = correct_hello(TLSActive, ImplicitTLS, TLSConfig, ServerHello),
23
- eimap:start_passthrough(ImapSession, self()),
24
- relay_response(Socket, postprocess_server_data(Deflator, <<CorrectedHello/binary, "\r\n">>), TLSActive),
25
- { noreply, State };
26
-@@ -275,18 +275,26 @@ start_client_compression(Socket, TLS, Tag) ->
27
- set_socket_active(true, Socket) -> ssl:setopts(Socket, [{ active, once }]);
28
- set_socket_active(_, Socket) -> inet:setopts(Socket, [{ active, once }]).
29
-
30
---spec correct_hello(TLSActive :: true | false, TlSConfig :: [] | list(), ServerHello :: binary()) -> CorrectedHello :: binary().
31
--correct_hello(true, _TLSConfig, ServerHello) ->
32
-+-spec correct_hello(TLSActive :: true | false, ImplicitTLS :: true | false, TlSConfig :: [] | list(), ServerHello :: binary()) -> CorrectedHello :: binary().
33
-+correct_hello(true, true, _TLSConfig, ServerHello) ->
34
-+ % the connection is already secured, so don't advertise starttls to the client
35
-+ build_hello_for_implicit_tls(ServerHello);
36
-+correct_hello(true, _ImplicitTLS, _TLSConfig, ServerHello) ->
37
- % the connection is already secured, so don't advertise starttls to the client
38
- ensure_hello_does_not_have_starttls(ServerHello);
39
--correct_hello(_TLSActive, [], ServerHello) ->
40
-+correct_hello(_TLSActive, _ImplicitTLS, [], ServerHello) ->
41
- % guam does not have a TLS config and so can not provide TLS to the client
42
- ensure_hello_does_not_have_starttls(ServerHello);
43
--correct_hello(_TLSActive, _TLSConfig, ServerHello) ->
44
-+correct_hello(_TLSActive, _ImplicitTLS, _TLSConfig, ServerHello) ->
45
- % guam has a TLS config, and it is not currently active, so make sure to include
46
- % STARTTLS in our response regardless of what the backend says
47
- ensure_hello_has_starttls(ServerHello).
48
-
49
-+build_hello_for_implicit_tls(ServerResponse) ->
50
-+ NoTLSCapabilities = ensure_hello_does_not_have_starttls(ServerResponse),
51
-+ ServerIdent = proplists:get_value(server_id, ServerResponse, <<>>),
52
-+ <<"* OK [CAPABILITIES ", NoTLSCapabilities/binary, "] ", ServerIdent/binary>>.
53
-+
54
- ensure_hello_has_starttls(ServerResponse) ->
55
- ServerHello = proplists:get_value(capabilities, ServerResponse, <<>>),
56
- case binary:match(ServerHello, <<"STARTTLS">>) of
57
---
58
-2.5.5
59
-
60
0006-fix-typo.patch
Deleted
27
1
2
-From 06f22152fbb0daf5b1d5cc471cf5de5c587246f7 Mon Sep 17 00:00:00 2001
3
-From: Aaron Seigo <aseigo@kde.org>
4
-Date: Mon, 20 Jun 2016 16:57:58 +0200
5
-Subject: [PATCH 6/8] fix typo
6
-
7
----
8
- apps/kolab_guam/src/kolab_guam_session.erl | 2 +-
9
- 1 file changed, 1 insertion(+), 1 deletion(-)
10
-
11
-diff --git a/apps/kolab_guam/src/kolab_guam_session.erl b/apps/kolab_guam/src/kolab_guam_session.erl
12
-index 69e239c..9439018 100644
13
---- a/apps/kolab_guam/src/kolab_guam_session.erl
14
-+++ b/apps/kolab_guam/src/kolab_guam_session.erl
15
-@@ -282,7 +282,7 @@ correct_hello(true, _TLSConfig, ServerHello) ->
16
- correct_hello(_TLSActive, [], ServerHello) ->
17
- % guam does not have a TLS config and so can not provide TLS to the client
18
- ensure_hello_does_not_have_starttls(ServerHello);
19
--correct_hello(_TLSAcive, _TLSConfig, ServerHello) ->
20
-+correct_hello(_TLSActive, _TLSConfig, ServerHello) ->
21
- % guam has a TLS config, and it is not currently active, so make sure to include
22
- % STARTTLS in our response regardless of what the backend says
23
- ensure_hello_has_starttls(ServerHello).
24
---
25
-2.5.5
26
-
27
0007-Correct-the-actual-version-back-to-0.8.patch
Deleted
27
1
2
-From 1d277e7bf8225600a31413165e9d5ec3cc36a74a Mon Sep 17 00:00:00 2001
3
-From: "Jeroen van Meeuwen (Kolab Systems)" <vanmeeuwen@kolabsys.com>
4
-Date: Mon, 27 Jun 2016 15:14:52 +0200
5
-Subject: [PATCH 7/8] Correct the actual version back to 0.8
6
-
7
----
8
- rel/reltool.config | 2 +-
9
- 1 file changed, 1 insertion(+), 1 deletion(-)
10
-
11
-diff --git a/rel/reltool.config b/rel/reltool.config
12
-index 1ece54f..298f1ac 100644
13
---- a/rel/reltool.config
14
-+++ b/rel/reltool.config
15
-@@ -4,7 +4,7 @@
16
- {lib_dirs, ["../deps"]},
17
- {erts, [{mod_cond, derived}, {app_file, strip}]},
18
- {app_file, strip},
19
-- {rel, "kolab_guam", "0.9",
20
-+ {rel, "kolab_guam", "0.8",
21
- [
22
- kernel,
23
- stdlib,
24
---
25
-2.5.5
26
-
27
0007-do-a-full-OK-CAPABILITY-banner-for-all-correct_hello.patch
Deleted
64
1
2
-From 75ce99f2226438cab4cf57cb8b7dbbe6e4d22885 Mon Sep 17 00:00:00 2001
3
-From: Aaron Seigo <aseigo@kde.org>
4
-Date: Fri, 1 Jul 2016 12:44:09 +0200
5
-Subject: [PATCH 7/8] do a full "* OK [CAPABILITY" banner for all correct_hello
6
- paths
7
-
8
----
9
- apps/kolab_guam/src/kolab_guam_session.erl | 25 +++++++++++--------------
10
- 1 file changed, 11 insertions(+), 14 deletions(-)
11
-
12
-diff --git a/apps/kolab_guam/src/kolab_guam_session.erl b/apps/kolab_guam/src/kolab_guam_session.erl
13
-index df195a1..fb9c72b 100644
14
---- a/apps/kolab_guam/src/kolab_guam_session.erl
15
-+++ b/apps/kolab_guam/src/kolab_guam_session.erl
16
-@@ -73,8 +73,10 @@ handle_info({ ssl, Socket, Data }, State) ->
17
- process_client_data(Socket, Data, State);
18
- handle_info({ server_hello, ServerHello }, #state{ imap_session = ImapSession, tls_config = TLSConfig, socket = Socket, client_implicit_tls = ImplicitTLS, client_tls_active = TLSActive, deflator = Deflator } = State) ->
19
- CorrectedHello = correct_hello(TLSActive, ImplicitTLS, TLSConfig, ServerHello),
20
-+ ServerIdent = proplists:get_value(server_id, ServerHello, <<>>),
21
-+ FullGreeting = <<"* OK [CAPABILITIES ", CorrectedHello/binary, "] ", ServerIdent/binary, "\r\n">>,
22
- eimap:start_passthrough(ImapSession, self()),
23
-- relay_response(Socket, postprocess_server_data(Deflator, <<CorrectedHello/binary, "\r\n">>), TLSActive),
24
-+ relay_response(Socket, postprocess_server_data(Deflator, FullGreeting), TLSActive),
25
- { noreply, State };
26
- handle_info({ { rule_data, Module, ResponseToken }, Data }, #state{ rules_active = ActiveRules } = State) ->
27
- %lager:debug("Got back data requested by rule ~p: ~p", [Module, Data]),
28
-@@ -276,24 +278,19 @@ set_socket_active(true, Socket) -> ssl:setopts(Socket, [{ active, once }]);
29
- set_socket_active(_, Socket) -> inet:setopts(Socket, [{ active, once }]).
30
-
31
- -spec correct_hello(TLSActive :: true | false, ImplicitTLS :: true | false, TlSConfig :: [] | list(), ServerHello :: binary()) -> CorrectedHello :: binary().
32
--correct_hello(true, true, _TLSConfig, ServerHello) ->
33
-+correct_hello(true, true, _TLSConfig, ServerResponse) ->
34
- % the connection is already secured, so don't advertise starttls to the client
35
-- build_hello_for_implicit_tls(ServerHello);
36
--correct_hello(true, _ImplicitTLS, _TLSConfig, ServerHello) ->
37
-+ ensure_hello_does_not_have_starttls(ServerResponse);
38
-+correct_hello(true, _ImplicitTLS, _TLSConfig, ServerResponse) ->
39
- % the connection is already secured, so don't advertise starttls to the client
40
-- ensure_hello_does_not_have_starttls(ServerHello);
41
--correct_hello(_TLSActive, _ImplicitTLS, [], ServerHello) ->
42
-+ ensure_hello_does_not_have_starttls(ServerResponse);
43
-+correct_hello(_TLSActive, _ImplicitTLS, [], ServerResponse) ->
44
- % guam does not have a TLS config and so can not provide TLS to the client
45
-- ensure_hello_does_not_have_starttls(ServerHello);
46
--correct_hello(_TLSActive, _ImplicitTLS, _TLSConfig, ServerHello) ->
47
-+ ensure_hello_does_not_have_starttls(ServerResponse);
48
-+correct_hello(_TLSActive, _ImplicitTLS, _TLSConfig, ServerResponse) ->
49
- % guam has a TLS config, and it is not currently active, so make sure to include
50
- % STARTTLS in our response regardless of what the backend says
51
-- ensure_hello_has_starttls(ServerHello).
52
--
53
--build_hello_for_implicit_tls(ServerResponse) ->
54
-- NoTLSCapabilities = ensure_hello_does_not_have_starttls(ServerResponse),
55
-- ServerIdent = proplists:get_value(server_id, ServerResponse, <<>>),
56
-- <<"* OK [CAPABILITIES ", NoTLSCapabilities/binary, "] ", ServerIdent/binary>>.
57
-+ ensure_hello_has_starttls(ServerResponse).
58
-
59
- ensure_hello_has_starttls(ServerResponse) ->
60
- ServerHello = proplists:get_value(capabilities, ServerResponse, <<>>),
61
---
62
-2.5.5
63
-
64
0008-Relax-dependency-on-lager.patch
Deleted
27
1
2
-From 02f346fd187169b850be49ba5589234fefe4b548 Mon Sep 17 00:00:00 2001
3
-From: "Jeroen van Meeuwen (Kolab Systems)" <vanmeeuwen@kolabsys.com>
4
-Date: Mon, 27 Jun 2016 15:15:08 +0200
5
-Subject: [PATCH 8/8] Relax dependency on lager
6
-
7
----
8
- rebar.config | 2 +-
9
- 1 file changed, 1 insertion(+), 1 deletion(-)
10
-
11
-diff --git a/rebar.config b/rebar.config
12
-index 3dafb5a..f08d5ac 100644
13
---- a/rebar.config
14
-+++ b/rebar.config
15
-@@ -3,7 +3,7 @@
16
-
17
- { deps_dir, "deps" }.
18
- { deps, [
19
-- { lager, "(2.0|2.1|2.2).*", { git, "git://github.com/basho/lager.git", { tag, "2.2.0" } } },
20
-+ { lager, "3.*", { git, "git://github.com/basho/lager.git" } },
21
- { lager_syslog, "2.*", { git, "git://github.com/basho/lager_syslog.git", { tag, "2.1.3" } } },
22
- { eimap, ".*", { git, "https://git.kolab.org/diffusion/EI/eimap.git", { tag, "0.2.4" } } }
23
- %% pull in the proper version of meck before jobs 0.3 gets around to pulling in the wrong version
24
---
25
-2.5.5
26
-
27
0008-remove-AUTH-entries-put-LOGINDISABLED-if-we-put-up-a.patch
Deleted
65
1
2
-From 4cb9fd2e94f7746e5ec05f0cd3c1c7cca895efa3 Mon Sep 17 00:00:00 2001
3
-From: Aaron Seigo <aseigo@kde.org>
4
-Date: Fri, 1 Jul 2016 13:16:16 +0200
5
-Subject: [PATCH 8/8] remove AUTH= entries, put LOGINDISABLED if we put up a
6
- STARTTLS
7
-
8
----
9
- apps/kolab_guam/src/kolab_guam_session.erl | 28 ++++++++++++++++++++++++++--
10
- 1 file changed, 26 insertions(+), 2 deletions(-)
11
-
12
-diff --git a/apps/kolab_guam/src/kolab_guam_session.erl b/apps/kolab_guam/src/kolab_guam_session.erl
13
-index fb9c72b..79114b1 100644
14
---- a/apps/kolab_guam/src/kolab_guam_session.erl
15
-+++ b/apps/kolab_guam/src/kolab_guam_session.erl
16
-@@ -305,7 +305,8 @@ add_starttls_to_capabilities(ServerHello) ->
17
- { Start, End } ->
18
- Prefix = binary:part(ServerHello, 0, Start + End),
19
- Suffix = binary:part(ServerHello, Start + End, size(ServerHello) - Start - End),
20
-- <<Prefix/binary, "STARTTLS ", Suffix/binary>>
21
-+ CorrectHello = <<Prefix/binary, "STARTTLS ", Suffix/binary>>,
22
-+ remove_auth_offers(CorrectHello)
23
- end.
24
-
25
- add_starttls_after_imap4_atom(ServerHello) ->
26
-@@ -314,7 +315,8 @@ add_starttls_after_imap4_atom(ServerHello) ->
27
- { Start, End } ->
28
- Prefix = binary:part(ServerHello, 0, Start + End),
29
- Suffix = binary:part(ServerHello, Start + End, size(ServerHello) - Start - End),
30
-- <<Prefix/binary, "STARTTLS ", Suffix/binary>>
31
-+ CorrectHello = <<Prefix/binary, "STARTTLS ", Suffix/binary>>,
32
-+ remove_auth_offers(CorrectHello)
33
- end.
34
-
35
- ensure_hello_does_not_have_starttls(ServerResponse) ->
36
-@@ -327,3 +329,25 @@ ensure_hello_does_not_have_starttls(ServerResponse) ->
37
- <<Prefix/binary, Suffix/binary>>
38
- end.
39
-
40
-+remove_auth_offers(ServerHello) ->
41
-+ case binary:match(ServerHello, <<"AUTH=">>) of
42
-+ nomatch -> ensure_advertise_login_disabled(ServerHello);
43
-+ { Start, End } ->
44
-+ Prefix = binary:part(ServerHello, 0, Start),
45
-+ Suffix =
46
-+ case binary:match(ServerHello, <<" ">>, [{ scope, { Start, size(ServerHello) - Start } }]) of
47
-+ nomatch ->
48
-+ %% end of the line, so no suffix
49
-+ <<>>;
50
-+ { SpaceStart, SpaceEnd } ->
51
-+ binary:part(ServerHello, SpaceStart + SpaceEnd, size(ServerHello) - SpaceStart - SpaceEnd)
52
-+ end,
53
-+ remove_auth_offers(<<Prefix/binary, Suffix/binary>>)
54
-+ end.
55
-+
56
-+ensure_advertise_login_disabled(ServerHello) ->
57
-+ case binary:match(ServerHello, <<"LOGINDISABLED">>) of
58
-+ nomatch -> <<ServerHello/binary, " LOGINDISABLED">>;
59
-+ _ -> ServerHello
60
-+ end.
61
-+
62
---
63
-2.5.5
64
-
65
0011-switch-to-triggering-on-any-list-where-the-last-two-.patch
Deleted
63
1
2
-From 7a96caca1d8f8db6f6d7bd625867d5eb292694f0 Mon Sep 17 00:00:00 2001
3
-From: Aaron Seigo <aseigo@kde.org>
4
-Date: Mon, 4 Jul 2016 09:47:46 +0200
5
-Subject: [PATCH 11/11] switch to triggering on any list where the last two
6
- bytes are not ""
7
-
8
-if the suffix of the command is "" that means "this is not really a LIST
9
-command, rather I am wanting the root and separator" .. otherwise known
10
-as IMAP's poorly considered attempt at a poor man's NAMESPACE command
11
----
12
- .../src/rules/kolab_guam_rule_filter_groupware.erl | 16 +++++++++-------
13
- 1 file changed, 9 insertions(+), 7 deletions(-)
14
-
15
-diff --git a/apps/kolab_guam/src/rules/kolab_guam_rule_filter_groupware.erl b/apps/kolab_guam/src/rules/kolab_guam_rule_filter_groupware.erl
16
-index a383ad9..49211aa 100644
17
---- a/apps/kolab_guam/src/rules/kolab_guam_rule_filter_groupware.erl
18
-+++ b/apps/kolab_guam/src/rules/kolab_guam_rule_filter_groupware.erl
19
-@@ -27,14 +27,12 @@ new(_Config) -> #state { blacklist = undefined }.
20
- applies(_ConnectionDetails, Buffer, State) ->
21
- { _Tag, Command, Data } = eimap_utils:split_command_into_components(Buffer),
22
- %lager:debug("********** Checking ...~n Command: ~s ~s", [Command, Data]),
23
-- { apply_if_id_matches(Command, Data, State#state.trigger_commands), State }.
24
-+ { apply_if_id_matches(Command, Data, State), State }.
25
-
26
- apply_to_client_message(ImapSession, Buffer, State) ->
27
- { Tag, Command, Data } = eimap_utils:split_command_into_components(Buffer),
28
- { Active, StateTag }=
29
-- case lists:any(fun(T) -> (Command =:= T) andalso
30
-- ((binary:match(Data, <<"*">>) =/= nomatch) orelse (binary:match(Data, <<"%">>) =/= nomatch)) end,
31
-- State#state.trigger_commands) of
32
-+ case is_triggering_command(Command, Data, State) of
33
- true -> fetch_metadata(ImapSession, State), { true, Tag };
34
- _ -> { false, <<>> }
35
- end,
36
-@@ -55,16 +53,20 @@ imap_data(blacklist, Response, State) ->
37
- State#state{ blacklist = Blacklist }.
38
-
39
- %%PRIVATE
40
-+is_triggering_command(Command, Data, #state{ trigger_commands = TriggerCommands }) ->
41
-+ lists:any(fun(T) -> (Command =:= T) andalso (binary:longest_common_suffix([Data, <<"\"\"">>]) =:= 2) end,
42
-+ TriggerCommands).
43
-+
44
-
45
- fetch_metadata(none, #state{ blacklist = undefined }) -> ok;
46
- fetch_metadata(ImapSession, #state{ blacklist = undefined }) ->
47
- eimap:get_folder_metadata(ImapSession, self(), { rule_data, ?MODULE, blacklist }, "*", ["/shared/vendor/kolab/folder-type"]);
48
- fetch_metadata(_ImapSession, _State) -> ok.
49
-
50
--apply_if_id_matches(<<"ID">>, Data, _TriggerCommands) ->
51
-+apply_if_id_matches(<<"ID">>, Data, _State) ->
52
- apply_if_found_kolab(binary:match(Data, <<"/Kolab">>));
53
--apply_if_id_matches(Command, _Data, TriggerCommands) ->
54
-- case lists:any(fun(T) -> Command =:= T end, TriggerCommands) of
55
-+apply_if_id_matches(Command, Data, State) ->
56
-+ case is_triggering_command(Command, Data, State) of
57
- true -> true;
58
- _ -> notyet
59
- end.
60
---
61
-2.5.5
62
-
63
guam-0.8-debian-concat.patch
Deleted
227
1
2
-diff -ur guam-0.8.orig/apps/kolab_guam/src/kolab_guam_listener.erl guam-0.8/apps/kolab_guam/src/kolab_guam_listener.erl
3
---- guam-0.8.orig/apps/kolab_guam/src/kolab_guam_listener.erl 2016-06-08 14:18:58.000000000 +0200
4
-+++ guam-0.8/apps/kolab_guam/src/kolab_guam_listener.erl 2016-07-01 13:33:11.784314048 +0200
5
-@@ -35,11 +35,12 @@
6
- %% gen_server API
7
- init([Name, Config]) ->
8
- Host = proplists:get_value(host, Config, none),
9
-+ NetIface = proplists:get_value(net_iface, Config, none),
10
- Port = proplists:get_value(port, Config, ?DEFAULT_IMAP_PORT),
11
- ImplicitTLS = proplists:get_value(implicit_tls, Config, false),
12
- TLSConfig = proplists:get_value(tls_config, Config, []),
13
- Rules = proplists:get_value(rules, Config, []),
14
-- Options = listen_options(Host, ImplicitTLS, TLSConfig),
15
-+ Options = listen_options(NetIface, Host, ImplicitTLS, TLSConfig),
16
- lager:info("Starting listener \"~p\" on port ~B (~p) with ~B rules", [Name, Port, Options, length(Rules)]),
17
- { ok, ListenSocket } = listen(ImplicitTLS, Port, Options),
18
- spawn_link(?MODULE, cleanup, [ListenSocket]),
19
-@@ -55,17 +56,27 @@
20
- imap_config(none) -> kolab_guam_sup:default_imap_server_config();
21
- imap_config(Backend) -> kolab_guam_sup:imap_server_config(Backend).
22
-
23
--listen_options(none, ImplicitTLS, TLSConfig) -> default_listen_options(ImplicitTLS, TLSConfig);
24
--listen_options(Hostname, ImplicitTLS, TLSConfig) ->
25
-+-spec listen_options(Iface :: string(), Hostname :: string(), ImplicitTLS :: boolean(), TLSConfig :: list()) -> list().
26
-+listen_options(none, none, ImplicitTLS, TLSConfig) -> default_listen_options(ImplicitTLS, TLSConfig);
27
-+listen_options(none, Hostname, ImplicitTLS, TLSConfig) ->
28
- case inet:gethostbyname(Hostname) of
29
- { ok, { hostent, _HostName, _Unused, inet, _Ver, [IP] } } ->
30
- [ { ip, IP } | default_listen_options(ImplicitTLS, TLSConfig) ];
31
- _ ->
32
-- listen_options(none, ImplicitTLS, TLSConfig)
33
-+ listen_options(none, none, ImplicitTLS, TLSConfig)
34
-+ end;
35
-+listen_options(Iface, Hostname, ImplicitTLS, TLSConfig) ->
36
-+ { ok, Ifaces } = inet:getifaddrs(),
37
-+ case proplists:get_value(Iface, Ifaces) of
38
-+ undefined -> listen_options(none, Hostname, ImplicitTLS, TLSConfig);
39
-+ Info -> Addr = proplists:get_value(addr, Info, none),
40
-+ %lager:info("YEAH! ~p", [Addr]),
41
-+ listen_options(none, Addr, ImplicitTLS, TLSConfig)
42
- end.
43
-
44
--default_listen_options(true, TLSConfig) -> [ { reuseaddr, true }, {active, once } | TLSConfig ];
45
--default_listen_options(_ImplicitTLS, _Config) -> [ { active, once }, { reuseaddr, true } ].
46
-+default_listen_options(true, TLSConfig) -> default_listen_options() ++ TLSConfig;
47
-+default_listen_options(_ImplicitTLS, _Config) -> default_listen_options().
48
-+default_listen_options() -> [ { reuseaddr, true }, {active, once }, inet6 ].
49
-
50
- create_initial_listeners(PID) when is_pid(PID) ->
51
- lager:debug("Creating session pool for listener ~p", [PID]),
52
-diff -ur guam-0.8.orig/apps/kolab_guam/src/kolab_guam_session.erl guam-0.8/apps/kolab_guam/src/kolab_guam_session.erl
53
---- guam-0.8.orig/apps/kolab_guam/src/kolab_guam_session.erl 2016-06-08 14:18:58.000000000 +0200
54
-+++ guam-0.8/apps/kolab_guam/src/kolab_guam_session.erl 2016-07-01 13:34:12.008992665 +0200
55
-@@ -71,10 +71,12 @@
56
- handle_info({ ssl, Socket, Data }, State) ->
57
- %lager:debug("Data coming in from client over SSL, ~p", [Data]),
58
- process_client_data(Socket, Data, State);
59
--handle_info({ server_hello, ServerHello }, #state{ imap_session = ImapSession, tls_config = TLSConfig, socket = Socket, client_tls_active = TLSActive, deflator = Deflator } = State) ->
60
-- CorrectedHello = correct_hello(TLSActive, TLSConfig, ServerHello),
61
-+handle_info({ server_hello, ServerHello }, #state{ imap_session = ImapSession, tls_config = TLSConfig, socket = Socket, client_implicit_tls = ImplicitTLS, client_tls_active = TLSActive, deflator = Deflator } = State) ->
62
-+ CorrectedHello = correct_hello(TLSActive, ImplicitTLS, TLSConfig, ServerHello),
63
-+ ServerIdent = proplists:get_value(server_id, ServerHello, <<>>),
64
-+ FullGreeting = <<"* OK [CAPABILITIES ", CorrectedHello/binary, "] ", ServerIdent/binary, "\r\n">>,
65
- eimap:start_passthrough(ImapSession, self()),
66
-- relay_response(Socket, postprocess_server_data(Deflator, <<CorrectedHello/binary, "\r\n">>), TLSActive),
67
-+ relay_response(Socket, postprocess_server_data(Deflator, FullGreeting), TLSActive),
68
- { noreply, State };
69
- handle_info({ { rule_data, Module, ResponseToken }, Data }, #state{ rules_active = ActiveRules } = State) ->
70
- %lager:debug("Got back data requested by rule ~p: ~p", [Module, Data]),
71
-@@ -275,17 +277,20 @@
72
- set_socket_active(true, Socket) -> ssl:setopts(Socket, [{ active, once }]);
73
- set_socket_active(_, Socket) -> inet:setopts(Socket, [{ active, once }]).
74
-
75
---spec correct_hello(TLSActive :: true | false, TlSConfig :: [] | list(), ServerHello :: binary()) -> CorrectedHello :: binary().
76
--correct_hello(true, _TLSConfig, ServerHello) ->
77
-+-spec correct_hello(TLSActive :: true | false, ImplicitTLS :: true | false, TlSConfig :: [] | list(), ServerHello :: binary()) -> CorrectedHello :: binary().
78
-+correct_hello(true, true, _TLSConfig, ServerResponse) ->
79
- % the connection is already secured, so don't advertise starttls to the client
80
-- ensure_hello_does_not_have_starttls(ServerHello);
81
--correct_hello(_TLSActive, [], ServerHello) ->
82
-+ ensure_hello_does_not_have_starttls(ServerResponse);
83
-+correct_hello(true, _ImplicitTLS, _TLSConfig, ServerResponse) ->
84
-+ % the connection is already secured, so don't advertise starttls to the client
85
-+ ensure_hello_does_not_have_starttls(ServerResponse);
86
-+correct_hello(_TLSActive, _ImplicitTLS, [], ServerResponse) ->
87
- % guam does not have a TLS config and so can not provide TLS to the client
88
-- ensure_hello_does_not_have_starttls(ServerHello);
89
--correct_hello(_TLSAcive, _TLSConfig, ServerHello) ->
90
-+ ensure_hello_does_not_have_starttls(ServerResponse);
91
-+correct_hello(_TLSActive, _ImplicitTLS, _TLSConfig, ServerResponse) ->
92
- % guam has a TLS config, and it is not currently active, so make sure to include
93
- % STARTTLS in our response regardless of what the backend says
94
-- ensure_hello_has_starttls(ServerHello).
95
-+ ensure_hello_has_starttls(ServerResponse).
96
-
97
- ensure_hello_has_starttls(ServerResponse) ->
98
- ServerHello = proplists:get_value(capabilities, ServerResponse, <<>>),
99
-@@ -296,14 +301,26 @@
100
-
101
- add_starttls_to_capabilities(ServerHello) ->
102
- case binary:match(ServerHello, <<"CAPABILITY ">>) of
103
-- nomatch -> ServerHello;
104
-+ nomatch -> add_starttls_after_imap4_atom(ServerHello);
105
-+ { Start, End } ->
106
-+ Prefix = binary:part(ServerHello, 0, Start + End),
107
-+ Suffix = binary:part(ServerHello, Start + End, size(ServerHello) - Start - End),
108
-+ CorrectHello = <<Prefix/binary, "STARTTLS ", Suffix/binary>>,
109
-+ remove_auth_offers(CorrectHello)
110
-+ end.
111
-+
112
-+add_starttls_after_imap4_atom(ServerHello) ->
113
-+ case binary:match(ServerHello, <<"IMAP4rev1 ">>) of
114
-+ nomatch -> <<"STARTTLS ", ServerHello/binary>>;
115
- { Start, End } ->
116
- Prefix = binary:part(ServerHello, 0, Start + End),
117
- Suffix = binary:part(ServerHello, Start + End, size(ServerHello) - Start - End),
118
-- <<Prefix/binary, "STARTTLS ", Suffix/binary>>
119
-+ CorrectHello = <<Prefix/binary, "STARTTLS ", Suffix/binary>>,
120
-+ remove_auth_offers(CorrectHello)
121
- end.
122
-
123
--ensure_hello_does_not_have_starttls(ServerHello) ->
124
-+ensure_hello_does_not_have_starttls(ServerResponse) ->
125
-+ ServerHello = proplists:get_value(capabilities, ServerResponse, <<>>),
126
- case binary:match(ServerHello, <<"STARTTLS">>) of
127
- nomatch -> ServerHello;
128
- { Start, End } ->
129
-@@ -312,3 +329,25 @@
130
- <<Prefix/binary, Suffix/binary>>
131
- end.
132
-
133
-+remove_auth_offers(ServerHello) ->
134
-+ case binary:match(ServerHello, <<"AUTH=">>) of
135
-+ nomatch -> ensure_advertise_login_disabled(ServerHello);
136
-+ { Start, End } ->
137
-+ Prefix = binary:part(ServerHello, 0, Start),
138
-+ Suffix =
139
-+ case binary:match(ServerHello, <<" ">>, [{ scope, { Start, size(ServerHello) - Start } }]) of
140
-+ nomatch ->
141
-+ %% end of the line, so no suffix
142
-+ <<>>;
143
-+ { SpaceStart, SpaceEnd } ->
144
-+ binary:part(ServerHello, SpaceStart + SpaceEnd, size(ServerHello) - SpaceStart - SpaceEnd)
145
-+ end,
146
-+ remove_auth_offers(<<Prefix/binary, Suffix/binary>>)
147
-+ end.
148
-+
149
-+ensure_advertise_login_disabled(ServerHello) ->
150
-+ case binary:match(ServerHello, <<"LOGINDISABLED">>) of
151
-+ nomatch -> <<ServerHello/binary, " LOGINDISABLED">>;
152
-+ _ -> ServerHello
153
-+ end.
154
-+
155
-Only in guam-0.8: CHANGELOG.md
156
-diff -ur guam-0.8.orig/contrib/guam.sysvinit guam-0.8/contrib/guam.sysvinit
157
---- guam-0.8.orig/contrib/guam.sysvinit 2016-06-08 14:18:58.000000000 +0200
158
-+++ guam-0.8/contrib/guam.sysvinit 2016-07-01 13:33:49.086734379 +0200
159
-@@ -11,6 +11,8 @@
160
-
161
- name=`basename $0`
162
-
163
-+export HOME=/opt/kolab_guam/
164
-+
165
- start_cmd="$name start"
166
- restart_cmd="$name restart"
167
- stop_cmd="$name stop"
168
-diff -ur guam-0.8.orig/docs/deployment.md guam-0.8/docs/deployment.md
169
---- guam-0.8.orig/docs/deployment.md 2016-06-08 14:18:58.000000000 +0200
170
-+++ guam-0.8/docs/deployment.md 2016-07-01 13:32:52.850100693 +0200
171
-@@ -84,14 +84,26 @@
172
- { rules, [ { filter_groupware, [] } ] },
173
- { tls_config, [ { certfile, "/etc/ssl/sample.pem" } ] }
174
- ]
175
-+ },
176
-+ { default, [
177
-+ { net_iface, "eth0" },
178
-+ { port, 1993 },
179
-+ { imap_server, default },
180
-+ { implicit_tls, true },
181
-+ { rules, [ { filter_groupware, [] } ] },
182
-+ { tls_config, [ { certfile, "/etc/ssl/sample.pem" } ] }
183
-+ ]
184
- }
185
- }
186
-
187
- The host entry is optional, and is used to bind the connection to a specific
188
--network interface. Leaving it empty will cause Guam to bind to the port accross
189
-+network interface by ip address. Alternatively, the net_iface may be defined and
190
-+guam will attempt to bind to an address on that network device. net_iface overrides
191
-+host, though host will be used as a fallback if net_iface does not produce a network
192
-+interface. Leaving host and net_iface empty will cause Guam to bind to the port accross
193
- all network interfaces available to it.
194
-
195
--port defines the port it is listening on.
196
-+port defines the port the listener is active on.
197
-
198
- imap_server refers to the entry in the imap_servers block. If not provided, the
199
- default entry in the imap_servers configuration is used.
200
-diff -ur guam-0.8.orig/rebar.config guam-0.8/rebar.config
201
---- guam-0.8.orig/rebar.config 2016-06-08 14:18:58.000000000 +0200
202
-+++ guam-0.8/rebar.config 2016-07-01 13:33:41.190645404 +0200
203
-@@ -3,9 +3,9 @@
204
-
205
- { deps_dir, "deps" }.
206
- { deps, [
207
-- { lager, "(2.0|2.1|2.2).*", { git, "git://github.com/basho/lager.git", { tag, "2.2.0" } } },
208
-+ { lager, "3.*", { git, "git://github.com/basho/lager.git" } },
209
- { lager_syslog, "2.*", { git, "git://github.com/basho/lager_syslog.git", { tag, "2.1.3" } } },
210
-- { eimap, ".*", { git, "https://git.kolab.org/diffusion/EI/eimap.git", { tag, "0.2.2" } } }
211
-+ { eimap, ".*", { git, "https://git.kolab.org/diffusion/EI/eimap.git", { tag, "0.2.4" } } }
212
- %% pull in the proper version of meck before jobs 0.3 gets around to pulling in the wrong version
213
- ]
214
- }.
215
-diff -ur guam-0.8.orig/rel/reltool.config guam-0.8/rel/reltool.config
216
---- guam-0.8.orig/rel/reltool.config 2016-06-08 14:18:58.000000000 +0200
217
-+++ guam-0.8/rel/reltool.config 2016-07-01 13:33:35.894585727 +0200
218
-@@ -4,7 +4,7 @@
219
- {lib_dirs, ["../deps"]},
220
- {erts, [{mod_cond, derived}, {app_file, strip}]},
221
- {app_file, strip},
222
-- {rel, "kolab_guam", "0.9",
223
-+ {rel, "kolab_guam", "0.8",
224
- [
225
- kernel,
226
- stdlib,
227
guam-0.8.1-relax-dependencies-set-correct-version-number.patch
Added
26
1
2
+diff -ur guam-0.8.1.orig/rebar.config guam-0.8.1/rebar.config
3
+--- guam-0.8.1.orig/rebar.config 2016-07-04 12:40:07.000000000 +0200
4
++++ guam-0.8.1/rebar.config 2016-07-05 11:13:53.683350555 +0200
5
+@@ -3,7 +3,7 @@
6
+
7
+ { deps_dir, "deps" }.
8
+ { deps, [
9
+- { lager, "(2.0|2.1|2.2).*", { git, "git://github.com/basho/lager.git", { tag, "2.2.0" } } },
10
++ { lager, "3.*", { git, "git://github.com/basho/lager.git" } },
11
+ { lager_syslog, "2.*", { git, "git://github.com/basho/lager_syslog.git", { tag, "2.1.3" } } },
12
+ { eimap, ".*", { git, "https://git.kolab.org/diffusion/EI/eimap.git", { tag, "0.2.5" } } }
13
+ %% pull in the proper version of meck before jobs 0.3 gets around to pulling in the wrong version
14
+diff -ur guam-0.8.1.orig/rel/reltool.config guam-0.8.1/rel/reltool.config
15
+--- guam-0.8.1.orig/rel/reltool.config 2016-07-04 12:40:07.000000000 +0200
16
++++ guam-0.8.1/rel/reltool.config 2016-07-05 11:14:03.958466677 +0200
17
+@@ -4,7 +4,7 @@
18
+ {lib_dirs, ["../deps"]},
19
+ {erts, [{mod_cond, derived}, {app_file, strip}]},
20
+ {app_file, strip},
21
+- {rel, "kolab_guam", "0.9",
22
++ {rel, "kolab_guam", "0.8.1",
23
+ [
24
+ kernel,
25
+ stdlib,
26
debian.changelog
Changed
11
1
2
+guam (0.8.1-1) unstable; urgency=medium
3
+
4
+ * Release of 0.8.1
5
+
6
+ -- Jeroen van Meeuwen <vanmeeuwen@kolabsys.com> Tue, 5 Jul 2016 06:06:06 +0600
7
+
8
guam (0.8-2mic1) unstable; urgency=medium
9
10
* add patches from rpm builds
11
debian.series
Changed
6
1
2
-guam-0.8-debian-concat.patch -p1
3
-0011-switch-to-triggering-on-any-list-where-the-last-two-.patch -p1
4
+guam-0.8-T1312-set-HOME-environment-variable-in-sysvinit-script.patch -p1
5
+guam-0.8.1-relax-dependencies-set-correct-version-number.patch -p1
6
guam-0.8.1.tar.gz/CHANGELOG.md
Added
27
1
2
+# Changelog
3
+All notable changes to this project will be documented in this file.
4
+
5
+This project adheres to [Semantic Versioning](http://semver.org/).
6
+
7
+## [Unreleased]
8
+### Added
9
+- bind to a network interface (rather than an IP/host) with net_iface
10
+### Changed
11
+- upgraded build to rebar3
12
+### Deprecated
13
+### Removed
14
+### Fixed
15
+### Security
16
+
17
+
18
+## [0.8.0] - 2016-06-08
19
+### Added
20
+- systemd service module
21
+- sysv init script
22
+### Changed
23
+- Upgraded eimap to 0.2.4
24
+### Fixed
25
+- Support more variations of the LIST command args in the filter_groupware rule
26
+
27
guam-0.8.tar.gz/apps/kolab_guam/src/kolab_guam.app.src -> guam-0.8.1.tar.gz/apps/kolab_guam/src/kolab_guam.app.src
Changed
10
1
2
{application, kolab_guam,
3
[
4
{description, "IMAP session proxy"},
5
- {vsn, "0.8"},
6
+ {vsn, "0.8.1"},
7
{registered, []},
8
{applications, [
9
kernel,
10
guam-0.8.tar.gz/apps/kolab_guam/src/kolab_guam_listener.erl -> guam-0.8.1.tar.gz/apps/kolab_guam/src/kolab_guam_listener.erl
Changed
48
1
2
%% gen_server API
3
init([Name, Config]) ->
4
Host = proplists:get_value(host, Config, none),
5
+ NetIface = proplists:get_value(net_iface, Config, none),
6
Port = proplists:get_value(port, Config, ?DEFAULT_IMAP_PORT),
7
ImplicitTLS = proplists:get_value(implicit_tls, Config, false),
8
TLSConfig = proplists:get_value(tls_config, Config, []),
9
Rules = proplists:get_value(rules, Config, []),
10
- Options = listen_options(Host, ImplicitTLS, TLSConfig),
11
+ Options = listen_options(NetIface, Host, ImplicitTLS, TLSConfig),
12
lager:info("Starting listener \"~p\" on port ~B (~p) with ~B rules", [Name, Port, Options, length(Rules)]),
13
{ ok, ListenSocket } = listen(ImplicitTLS, Port, Options),
14
spawn_link(?MODULE, cleanup, [ListenSocket]),
15
16
imap_config(none) -> kolab_guam_sup:default_imap_server_config();
17
imap_config(Backend) -> kolab_guam_sup:imap_server_config(Backend).
18
19
-listen_options(none, ImplicitTLS, TLSConfig) -> default_listen_options(ImplicitTLS, TLSConfig);
20
-listen_options(Hostname, ImplicitTLS, TLSConfig) ->
21
+-spec listen_options(Iface :: string(), Hostname :: string(), ImplicitTLS :: boolean(), TLSConfig :: list()) -> list().
22
+listen_options(none, none, ImplicitTLS, TLSConfig) -> default_listen_options(ImplicitTLS, TLSConfig);
23
+listen_options(none, Hostname, ImplicitTLS, TLSConfig) ->
24
case inet:gethostbyname(Hostname) of
25
{ ok, { hostent, _HostName, _Unused, inet, _Ver, [IP] } } ->
26
[ { ip, IP } | default_listen_options(ImplicitTLS, TLSConfig) ];
27
_ ->
28
- listen_options(none, ImplicitTLS, TLSConfig)
29
+ listen_options(none, none, ImplicitTLS, TLSConfig)
30
+ end;
31
+listen_options(Iface, Hostname, ImplicitTLS, TLSConfig) ->
32
+ { ok, Ifaces } = inet:getifaddrs(),
33
+ case proplists:get_value(Iface, Ifaces) of
34
+ undefined -> listen_options(none, Hostname, ImplicitTLS, TLSConfig);
35
+ Info -> Addr = proplists:get_value(addr, Info, none),
36
+ %lager:info("YEAH! ~p", [Addr]),
37
+ listen_options(none, Addr, ImplicitTLS, TLSConfig)
38
end.
39
40
-default_listen_options(true, TLSConfig) -> [ { reuseaddr, true }, {active, once } | TLSConfig ];
41
-default_listen_options(_ImplicitTLS, _Config) -> [ { active, once }, { reuseaddr, true } ].
42
+default_listen_options(true, TLSConfig) -> default_listen_options() ++ TLSConfig;
43
+default_listen_options(_ImplicitTLS, _Config) -> default_listen_options().
44
+default_listen_options() -> [ { reuseaddr, true }, {active, once }, inet6 ].
45
46
create_initial_listeners(PID) when is_pid(PID) ->
47
lager:debug("Creating session pool for listener ~p", [PID]),
48
guam-0.8.tar.gz/apps/kolab_guam/src/kolab_guam_session.erl -> guam-0.8.1.tar.gz/apps/kolab_guam/src/kolab_guam_session.erl
Changed
101
1
2
handle_info({ ssl, Socket, Data }, State) ->
3
%lager:debug("Data coming in from client over SSL, ~p", [Data]),
4
process_client_data(Socket, Data, State);
5
-handle_info({ server_hello, ServerHello }, #state{ imap_session = ImapSession, tls_config = TLSConfig, socket = Socket, client_tls_active = TLSActive, deflator = Deflator } = State) ->
6
- CorrectedHello = correct_hello(TLSActive, TLSConfig, ServerHello),
7
+handle_info({ server_hello, ServerHello }, #state{ imap_session = ImapSession, tls_config = TLSConfig, socket = Socket, client_implicit_tls = ImplicitTLS, client_tls_active = TLSActive, deflator = Deflator } = State) ->
8
+ CorrectedHello = correct_hello(TLSActive, ImplicitTLS, TLSConfig, ServerHello),
9
+ ServerIdent = proplists:get_value(server_id, ServerHello, <<>>),
10
+ FullGreeting = <<"* OK [CAPABILITIES ", CorrectedHello/binary, "] ", ServerIdent/binary, "\r\n">>,
11
eimap:start_passthrough(ImapSession, self()),
12
- relay_response(Socket, postprocess_server_data(Deflator, <<CorrectedHello/binary, "\r\n">>), TLSActive),
13
+ relay_response(Socket, postprocess_server_data(Deflator, FullGreeting), TLSActive),
14
{ noreply, State };
15
handle_info({ { rule_data, Module, ResponseToken }, Data }, #state{ rules_active = ActiveRules } = State) ->
16
%lager:debug("Got back data requested by rule ~p: ~p", [Module, Data]),
17
18
set_socket_active(true, Socket) -> ssl:setopts(Socket, [{ active, once }]);
19
set_socket_active(_, Socket) -> inet:setopts(Socket, [{ active, once }]).
20
21
--spec correct_hello(TLSActive :: true | false, TlSConfig :: [] | list(), ServerHello :: binary()) -> CorrectedHello :: binary().
22
-correct_hello(true, _TLSConfig, ServerHello) ->
23
+-spec correct_hello(TLSActive :: true | false, ImplicitTLS :: true | false, TlSConfig :: [] | list(), ServerHello :: binary()) -> CorrectedHello :: binary().
24
+correct_hello(true, true, _TLSConfig, ServerResponse) ->
25
% the connection is already secured, so don't advertise starttls to the client
26
- ensure_hello_does_not_have_starttls(ServerHello);
27
-correct_hello(_TLSActive, [], ServerHello) ->
28
+ ensure_hello_does_not_have_starttls(ServerResponse);
29
+correct_hello(true, _ImplicitTLS, _TLSConfig, ServerResponse) ->
30
+ % the connection is already secured, so don't advertise starttls to the client
31
+ ensure_hello_does_not_have_starttls(ServerResponse);
32
+correct_hello(_TLSActive, _ImplicitTLS, [], ServerResponse) ->
33
% guam does not have a TLS config and so can not provide TLS to the client
34
- ensure_hello_does_not_have_starttls(ServerHello);
35
-correct_hello(_TLSAcive, _TLSConfig, ServerHello) ->
36
+ ensure_hello_does_not_have_starttls(ServerResponse);
37
+correct_hello(_TLSActive, _ImplicitTLS, _TLSConfig, ServerResponse) ->
38
% guam has a TLS config, and it is not currently active, so make sure to include
39
% STARTTLS in our response regardless of what the backend says
40
- ensure_hello_has_starttls(ServerHello).
41
+ ensure_hello_has_starttls(ServerResponse).
42
43
ensure_hello_has_starttls(ServerResponse) ->
44
ServerHello = proplists:get_value(capabilities, ServerResponse, <<>>),
45
46
47
add_starttls_to_capabilities(ServerHello) ->
48
case binary:match(ServerHello, <<"CAPABILITY ">>) of
49
- nomatch -> ServerHello;
50
+ nomatch -> add_starttls_after_imap4_atom(ServerHello);
51
+ { Start, End } ->
52
+ Prefix = binary:part(ServerHello, 0, Start + End),
53
+ Suffix = binary:part(ServerHello, Start + End, size(ServerHello) - Start - End),
54
+ CorrectHello = <<Prefix/binary, "STARTTLS ", Suffix/binary>>,
55
+ remove_auth_offers(CorrectHello)
56
+ end.
57
+
58
+add_starttls_after_imap4_atom(ServerHello) ->
59
+ case binary:match(ServerHello, <<"IMAP4rev1 ">>) of
60
+ nomatch -> <<"STARTTLS ", ServerHello/binary>>;
61
{ Start, End } ->
62
Prefix = binary:part(ServerHello, 0, Start + End),
63
Suffix = binary:part(ServerHello, Start + End, size(ServerHello) - Start - End),
64
- <<Prefix/binary, "STARTTLS ", Suffix/binary>>
65
+ CorrectHello = <<Prefix/binary, "STARTTLS ", Suffix/binary>>,
66
+ remove_auth_offers(CorrectHello)
67
end.
68
69
-ensure_hello_does_not_have_starttls(ServerHello) ->
70
+ensure_hello_does_not_have_starttls(ServerResponse) ->
71
+ ServerHello = proplists:get_value(capabilities, ServerResponse, <<>>),
72
case binary:match(ServerHello, <<"STARTTLS">>) of
73
nomatch -> ServerHello;
74
{ Start, End } ->
75
76
<<Prefix/binary, Suffix/binary>>
77
end.
78
79
+remove_auth_offers(ServerHello) ->
80
+ case binary:match(ServerHello, <<"AUTH=">>) of
81
+ nomatch -> ensure_advertise_login_disabled(ServerHello);
82
+ { Start, _End } ->
83
+ Prefix = binary:part(ServerHello, 0, Start),
84
+ Suffix =
85
+ case binary:match(ServerHello, <<" ">>, [{ scope, { Start, size(ServerHello) - Start } }]) of
86
+ nomatch ->
87
+ %% end of the line, so no suffix
88
+ <<>>;
89
+ { SpaceStart, SpaceEnd } ->
90
+ binary:part(ServerHello, SpaceStart + SpaceEnd, size(ServerHello) - SpaceStart - SpaceEnd)
91
+ end,
92
+ remove_auth_offers(<<Prefix/binary, Suffix/binary>>)
93
+ end.
94
+
95
+ensure_advertise_login_disabled(ServerHello) ->
96
+ case binary:match(ServerHello, <<"LOGINDISABLED">>) of
97
+ nomatch -> <<ServerHello/binary, " LOGINDISABLED">>;
98
+ _ -> ServerHello
99
+ end.
100
+
101
guam-0.8.tar.gz/apps/kolab_guam/src/rules/kolab_guam_rule_filter_groupware.erl -> guam-0.8.1.tar.gz/apps/kolab_guam/src/rules/kolab_guam_rule_filter_groupware.erl
Changed
44
1
2
applies(_ConnectionDetails, Buffer, State) ->
3
{ _Tag, Command, Data } = eimap_utils:split_command_into_components(Buffer),
4
%lager:debug("********** Checking ...~n Command: ~s ~s", [Command, Data]),
5
- { apply_if_id_matches(Command, Data, State#state.trigger_commands), State }.
6
+ { apply_if_id_matches(Command, Data, State), State }.
7
8
apply_to_client_message(ImapSession, Buffer, State) ->
9
{ Tag, Command, Data } = eimap_utils:split_command_into_components(Buffer),
10
{ Active, StateTag }=
11
- case lists:any(fun(T) -> (Command =:= T) andalso
12
- ((binary:match(Data, <<"*">>) =/= nomatch) orelse (binary:match(Data, <<"%">>) =/= nomatch)) end,
13
- State#state.trigger_commands) of
14
+ case is_triggering_command(Command, Data, State) of
15
true -> fetch_metadata(ImapSession, State), { true, Tag };
16
_ -> { false, <<>> }
17
end,
18
19
State#state{ blacklist = Blacklist }.
20
21
%%PRIVATE
22
+is_triggering_command(Command, Data, #state{ trigger_commands = TriggerCommands }) ->
23
+ %% if the command is in the list of trigger commands and the ending is not "" (which means "send me
24
+ %% the root and separator" according to RFC 3501), then it is treated as a triggering event
25
+ lists:any(fun(T) -> (Command =:= T) andalso (binary:longest_common_suffix([Data, <<"\"\"">>]) =/= 2) end,
26
+ TriggerCommands).
27
+
28
29
fetch_metadata(none, #state{ blacklist = undefined }) -> ok;
30
fetch_metadata(ImapSession, #state{ blacklist = undefined }) ->
31
eimap:get_folder_metadata(ImapSession, self(), { rule_data, ?MODULE, blacklist }, "*", ["/shared/vendor/kolab/folder-type"]);
32
fetch_metadata(_ImapSession, _State) -> ok.
33
34
-apply_if_id_matches(<<"ID">>, Data, _TriggerCommands) ->
35
+apply_if_id_matches(<<"ID">>, Data, _State) ->
36
apply_if_found_kolab(binary:match(Data, <<"/Kolab">>));
37
-apply_if_id_matches(Command, _Data, TriggerCommands) ->
38
- case lists:any(fun(T) -> Command =:= T end, TriggerCommands) of
39
+apply_if_id_matches(Command, Data, State) ->
40
+ case is_triggering_command(Command, Data, State) of
41
true -> true;
42
_ -> notyet
43
end.
44
guam-0.8.tar.gz/docs/deployment.md -> guam-0.8.1.tar.gz/docs/deployment.md
Changed
30
1
2
{ rules, [ { filter_groupware, [] } ] },
3
{ tls_config, [ { certfile, "/etc/ssl/sample.pem" } ] }
4
]
5
+ },
6
+ { default, [
7
+ { net_iface, "eth0" },
8
+ { port, 1993 },
9
+ { imap_server, default },
10
+ { implicit_tls, true },
11
+ { rules, [ { filter_groupware, [] } ] },
12
+ { tls_config, [ { certfile, "/etc/ssl/sample.pem" } ] }
13
+ ]
14
}
15
}
16
17
The host entry is optional, and is used to bind the connection to a specific
18
-network interface. Leaving it empty will cause Guam to bind to the port accross
19
+network interface by ip address. Alternatively, the net_iface may be defined and
20
+guam will attempt to bind to an address on that network device. net_iface overrides
21
+host, though host will be used as a fallback if net_iface does not produce a network
22
+interface. Leaving host and net_iface empty will cause Guam to bind to the port accross
23
all network interfaces available to it.
24
25
-port defines the port it is listening on.
26
+port defines the port the listener is active on.
27
28
imap_server refers to the entry in the imap_servers block. If not provided, the
29
default entry in the imap_servers configuration is used.
30
guam-0.8.tar.gz/rebar.config -> guam-0.8.1.tar.gz/rebar.config
Changed
10
1
2
{ deps, [
3
{ lager, "(2.0|2.1|2.2).*", { git, "git://github.com/basho/lager.git", { tag, "2.2.0" } } },
4
{ lager_syslog, "2.*", { git, "git://github.com/basho/lager_syslog.git", { tag, "2.1.3" } } },
5
- { eimap, ".*", { git, "https://git.kolab.org/diffusion/EI/eimap.git", { tag, "0.2.2" } } }
6
+ { eimap, ".*", { git, "https://git.kolab.org/diffusion/EI/eimap.git", { tag, "0.2.5" } } }
7
%% pull in the proper version of meck before jobs 0.3 gets around to pulling in the wrong version
8
]
9
}.
10
guam.dsc
Changed
17
1
2
Source: guam
3
Binary: guam
4
Architecture: any
5
-Version: 0.8-2mic1
6
+Version: 0.8.1-1
7
Maintainer: Christoph Erhardt <kolab@sicherha.de>
8
Homepage: https://kolab.org/about/guam
9
Standards-Version: 3.9.6
10
11
Package-List:
12
guam deb mail extra
13
Files:
14
- 00000000000000000000000000000000 0 guam-0.8.tar.gz
15
+ 00000000000000000000000000000000 0 guam-0.8.1.tar.gz
16
00000000000000000000000000000000 0 debian.tar.gz
17
Refresh
guam
x86_64
x86_64
x86_64
x86_64
x86_64
x86_64
x86_64
x86_64
Refresh
Login required, please
login
in order to comment
Request History
vanmeeuwen created request over 8 years ago
Check in 0.8.1
vanmeeuwen accepted review over 8 years ago
Accept
vanmeeuwen approved review over 8 years ago
Accept
vanmeeuwen accepted review over 8 years ago
Accept
vanmeeuwen accepted request over 8 years ago
Accept