Codebase list cyrus-imapd / 0ad92ff
New upstream version 3.8.0~beta2 Yadd 1 year, 29 days ago
551 changed file(s) with 3627 addition(s) and 1946 deletion(s). Raw diff Collapse all Expand all
39393939
39403940 lib/libcyrus.la: $(lib_libcyrus_la_OBJECTS) $(lib_libcyrus_la_DEPENDENCIES) $(EXTRA_lib_libcyrus_la_DEPENDENCIES) lib/$(am__dirstamp)
39413941 $(AM_V_CCLD)$(lib_libcyrus_la_LINK) -rpath $(libdir) $(lib_libcyrus_la_OBJECTS) $(lib_libcyrus_la_LIBADD) $(LIBS)
3942 lib/strerror.$(OBJEXT): lib/$(am__dirstamp)
3943 lib/strerror.lo: lib/$(am__dirstamp)
39443942 lib/memmove.$(OBJEXT): lib/$(am__dirstamp)
39453943 lib/memmove.lo: lib/$(am__dirstamp)
3946 lib/posix_fadvise.$(OBJEXT): lib/$(am__dirstamp)
3947 lib/posix_fadvise.lo: lib/$(am__dirstamp)
3948 lib/ftruncate.$(OBJEXT): lib/$(am__dirstamp)
3949 lib/ftruncate.lo: lib/$(am__dirstamp)
39503944 lib/memmem.$(OBJEXT): lib/$(am__dirstamp)
39513945 lib/memmem.lo: lib/$(am__dirstamp)
39523946 lib/strsep.$(OBJEXT): lib/$(am__dirstamp)
39533947 lib/strsep.lo: lib/$(am__dirstamp)
3948 lib/posix_fadvise.$(OBJEXT): lib/$(am__dirstamp)
3949 lib/posix_fadvise.lo: lib/$(am__dirstamp)
3950 lib/getdtablesize.$(OBJEXT): lib/$(am__dirstamp)
3951 lib/getdtablesize.lo: lib/$(am__dirstamp)
39543952 lib/memrchr.$(OBJEXT): lib/$(am__dirstamp)
39553953 lib/memrchr.lo: lib/$(am__dirstamp)
3956 lib/getdtablesize.$(OBJEXT): lib/$(am__dirstamp)
3957 lib/getdtablesize.lo: lib/$(am__dirstamp)
3954 lib/ftruncate.$(OBJEXT): lib/$(am__dirstamp)
3955 lib/ftruncate.lo: lib/$(am__dirstamp)
3956 lib/strerror.$(OBJEXT): lib/$(am__dirstamp)
3957 lib/strerror.lo: lib/$(am__dirstamp)
39583958 lib/strcasecmp.$(OBJEXT): lib/$(am__dirstamp)
39593959 lib/strcasecmp.lo: lib/$(am__dirstamp)
39603960 lib/lib_libcyrus_min_la-arrayu64.lo: lib/$(am__dirstamp) \
0 3.8.0-beta1
0 3.8.0-beta2
56195619 '', 'HTTP/1.1 404 Not Found');
56205620 }
56215621
5622 sub test_conditional_delete_collection
5623 :needs_component_httpd
5624 {
5625 my ($self) = @_;
5626
5627 my $caldav = $self->{caldav};
5628
5629 my $calid = $caldav->NewCalendar({name => 'foo'});
5630 $self->assert_not_null($calid);
5631
5632 my $res = $caldav->GetCalendar($calid);
5633 $self->assert_not_null($res);
5634 my $synctoken = $res->{syncToken};
5635
5636 xlog $self, "Try to delete collection with bogus state token";
5637 $res = $caldav->ua->request('DELETE', $caldav->request_url($calid), {
5638 headers => {
5639 'Authorization' => $caldav->auth_header(),
5640 'If' => '(<foobar>)'
5641 }
5642 });
5643 $self->assert_str_equals('412', $res->{status});
5644
5645 xlog $self, "Delete collection with bogus sync token";
5646 $res = $caldav->ua->request('DELETE', $caldav->request_url($calid), {
5647 headers => {
5648 'Authorization' => $caldav->auth_header(),
5649 'If' => "(<$synctoken>)"
5650 }
5651 });
5652 $self->assert_str_equals('204', $res->{status});
5653 }
5654
56225655 1;
117117 my $store = $svc->create_store(username => $case->{user});
118118 if ($case->{can_login})
119119 {
120 xlog $self, "Expecting this to succeeed";
120 xlog $self, "Expecting this to succeed";
121121 my $talk = $store->get_client();
122122 my $r = $talk->status('inbox', [ 'messages' ]);
123123 $self->assert_deep_equals({ messages => 0 }, $r);
321321 $self->assert_null($talk->get_response_code('alert'));
322322
323323 xlog $self, "Write some text to the shutdown file";
324 my $admin_store = $svc->create_store(folder => 'user.casssandane',
324 my $admin_store = $svc->create_store(folder => 'user.cassandane',
325325 username => 'admin');
326326 my $shut_message = "The Mayans were right";
327327 $admin_store->get_client()->setmetadata("",
0 #!/usr/bin/perl
1 #
2 # Copyright (c) 2011-2013 FastMail Pty Ltd. All rights reserved.
3 #
4 # Redistribution and use in source and binary forms, with or without
5 # modification, are permitted provided that the following conditions
6 # are met:
7 #
8 # 1. Redistributions of source code must retain the above copyright
9 # notice, this list of conditions and the following disclaimer.
10 #
11 # 2. Redistributions in binary form must reproduce the above copyright
12 # notice, this list of conditions and the following disclaimer in
13 # the documentation and/or other materials provided with the
14 # distribution.
15 #
16 # 3. The name "Fastmail Pty Ltd" must not be used to
17 # endorse or promote products derived from this software without
18 # prior written permission. For permission or any legal
19 # details, please contact
20 # FastMail Pty Ltd
21 # PO Box 234
22 # Collins St West 8007
23 # Victoria
24 # Australia
25 #
26 # 4. Redistributions of any form whatsoever must retain the following
27 # acknowledgment:
28 # "This product includes software developed by Fastmail Pty. Ltd."
29 #
30 # FASTMAIL PTY LTD DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
31 # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
32 # EVENT SHALL OPERA SOFTWARE AUSTRALIA BE LIABLE FOR ANY SPECIAL, INDIRECT
33 # OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
34 # USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
35 # TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
36 # OF THIS SOFTWARE.
37 #
38
39 package Cassandane::Cyrus::MurderDAV;
40 use strict;
41 use warnings;
42 use URI;
43 use Data::Dumper;
44
45 use lib '.';
46 use base qw(Cassandane::Cyrus::TestCase);
47 use Cassandane::Util::Log;
48 use Cassandane::Instance;
49
50 $Data::Dumper::Sortkeys = 1;
51
52 sub new
53 {
54 my ($class, @args) = @_;
55
56 my $config = Cassandane::Config->default()->clone();
57 $config->set('conversations' => 'yes');
58 $config->set_bits('httpmodules', 'caldav', 'carddav');
59
60 return $class->SUPER::new({
61 config => $config,
62 httpmurder => 1,
63 jmap => 1,
64 adminstore => 1
65 }, @args);
66 }
67
68 sub set_up
69 {
70 my ($self) = @_;
71 $self->SUPER::set_up();
72 }
73
74 sub tear_down
75 {
76 my ($self) = @_;
77 $self->SUPER::tear_down();
78 }
79
80 sub test_aaa_setup
81 :needs_component_murder
82 {
83 my ($self) = @_;
84
85 # does everything set up and tear down cleanly?
86 $self->assert(1);
87 }
88
89 # XXX This can't pass because we don't support multiple murder services
90 # XXX at once, but renaming out the "bogus" and running it, and it failing,
91 # XXX proves the infrastructure to prevent requesting both works.
92 sub bogustest_aaa_imapdav_setup
93 :needs_component_murder
94 :IMAPMurder
95 {
96 my ($self) = @_;
97
98 # does everything set up and tear down cleanly?
99 $self->assert(1);
100 }
101
102 sub test_frontend_commands
103 :needs_component_murder :needs_component_httpd :min_version_3_5
104 {
105 my ($self) = @_;
106 my $result;
107
108 my $frontend_svc = $self->{frontend}->get_service("http");
109 my $frontend_host = $frontend_svc->host();
110 my $frontend_port = $frontend_svc->port();
111 my $proxy_re = qr{
112 \b
113 ( localhost | $frontend_host )
114 : $frontend_port
115 \b
116 }x;
117
118 my $frontend_caldav = Net::CalDAVTalk->new(
119 user => 'cassandane',
120 password => 'pass',
121 host => $frontend_host,
122 port => $frontend_port,
123 scheme => 'http',
124 url => "http://$frontend_host:$frontend_port"
125 );
126
127 my $CALDAV = "urn:ietf:params:xml:ns:caldav";
128 my $CARDDAV = "urn:ietf:params:xml:ns:carddav";
129 my $xml = <<EOF;
130 <?xml version="1.0" encoding="UTF-8"?>
131 <D:propfind xmlns:D="DAV:" xmlns:C="$CALDAV" xmlns:A="$CARDDAV">
132 <D:prop>
133 <C:calendar-home-set/>
134 <A:addressbook-home-set/>
135 </D:prop>
136 </D:propfind>
137 EOF
138
139 xlog $self, "Get current-user-principal";
140 my $url = $frontend_caldav->GetCurrentUserPrincipal();
141 $self->assert_not_null($url);
142
143 # Copied from Net::DAVTalk::SetURL
144 my (undef, undef, undef, $cur_princ) =
145 $url =~ m{^http(s)?://([^/:]+)(?::(\d+))?(.*)?};
146
147 xlog $self, "PROPFIND for home-sets";
148 my $res = $frontend_caldav->Request('PROPFIND', $cur_princ,
149 $xml, 'Content-Type' => 'text/xml');
150
151 my $propstat = $res->{'{DAV:}response'}[0]{'{DAV:}propstat'}[0];
152 my $props = $propstat->{'{DAV:}prop'};
153 $self->assert_str_equals('HTTP/1.1 200 OK',
154 $propstat->{'{DAV:}status'}{content});
155 my $cal_home = $props->{"{$CALDAV}calendar-home-set"}{'{DAV:}href'}{content};
156 my $card_home =
157 $props->{"{$CARDDAV}addressbook-home-set"}{'{DAV:}href'}{content};
158 $self->assert_not_null($cal_home);
159 $self->assert_not_null($card_home);
160
161 xlog $self, "Create new calendar";
162 $frontend_caldav->SetURL($cal_home);
163 my $calid1 = $frontend_caldav->NewCalendar({name => 'foo'});
164 $self->assert_not_null($calid1);
165
166 xlog $self, "Change calendar name";
167 my $newid = $frontend_caldav->UpdateCalendar({ id => $calid1,
168 name => 'bar'});
169 $self->assert_str_equals($calid1, $newid);
170
171 xlog $self, "Create new event";
172 my $eventid1 = $frontend_caldav->NewEvent($calid1, {
173 timeZone => 'Etc/UTC',
174 start => '2015-01-01T12:00:00',
175 duration => 'PT1H',
176 title => 'waterfall',
177 });
178 $self->assert_not_null($eventid1);
179
180 xlog $self, "GET event";
181 $res = $frontend_caldav->Request('GET', $cal_home . $eventid1);
182 $self->assert_matches(qr/SUMMARY:waterfall/, $res->{content});
183
184 xlog $self, "Get calendars";
185 $res = $frontend_caldav->GetCalendars();
186 $self->assert_num_equals(2, scalar @{$res});
187
188 my $sync1;
189 my $sync2;;
190 my $calid2;
191 if ($res->[0]{id} eq $calid1) {
192 $sync1 = $res->[0]{syncToken};
193 $sync2 = $res->[1]{syncToken};
194 $calid2 = $res->[1]{id};
195 }
196 else {
197 $sync1 = $res->[1]{syncToken};
198 $sync2 = $res->[0]{syncToken};
199 $calid2 = $res->[0]{id};
200 }
201 $self->assert_not_null($calid1);
202 $self->assert_not_null($sync1);
203 $self->assert_not_null($sync2);
204
205 xlog $self, "Move event";
206 my $eventid2 = $frontend_caldav->MoveEvent($eventid1, $calid2);
207 $self->assert_not_null($eventid2);
208
209 xlog $self, "Sync Calendars";
210 my ($adds, $removes, $errors) =
211 $frontend_caldav->SyncEvents($calid1, syncToken => $sync1);
212 $self->assert_num_equals(0, scalar @{$adds});
213 $self->assert_num_equals(1, scalar @{$removes});
214 $self->assert_str_equals($removes->[0],
215 $frontend_caldav->fullpath($eventid1));
216
217 ($adds, $removes, $errors) =
218 $frontend_caldav->SyncEvents($calid2, syncToken => $sync2);
219 $self->assert_num_equals(1, scalar @{$adds});
220 $self->assert_str_equals($adds->[0]{href},
221 $frontend_caldav->fullpath($eventid2));
222 $self->assert_str_equals('waterfall', $adds->[0]{title});
223 $self->assert_num_equals(0, scalar @{$removes});
224
225 xlog $self, "Delete event";
226 $res = $frontend_caldav->DeleteEvent($eventid2);
227 $self->assert_num_equals(1, $res);
228
229 xlog $self, "Delete calendar";
230 $frontend_caldav->DeleteCalendar($calid1);
231 $res = $frontend_caldav->GetCalendar($calid1);
232 $self->assert_null($res);
233
234 # XXX test other commands
235 }
236
237 1;
110110 $result = $frontend->getmetadata('INBOX',
111111 '/shared/vendor/cmu/cyrus-imapd/size');
112112 $self->assert_not_null($result);
113 $self->assert(exists $result->{'INBOX'}{'/shared/vendor/cmu/cyrus-imapd/size'});
113114 $self->assert_str_equals('ok', $frontend->get_last_completion_response());
114115 $result = $frontend->getmetadata('(INBOX INBOX.newfolder)',
115116 '/shared/vendor/cmu/cyrus-imapd/size');
116117 $self->assert_not_null($result);
118 $self->assert(exists $result->{'INBOX'}{'/shared/vendor/cmu/cyrus-imapd/size'});
119 $self->assert(exists $result->{'INBOX.newfolder'}{'/shared/vendor/cmu/cyrus-imapd/size'});
117120 $self->assert_str_equals('ok', $frontend->get_last_completion_response());
118121
119122 # XXX test other commands
68946894 $self->check_messages({ 1 => $msg }, check_guid => 0);
68956895 }
68966896
6897 sub test_redirect_address_with_phrase
6898 :needs_component_sieve
6899 {
6900 my ($self) = @_;
6901
6902 xlog $self, "Install a script";
6903 $self->{instance}->install_sieve_script(<<EOF
6904 redirect "Foo <foo\@example.com>";
6905 EOF
6906 );
6907
6908 xlog $self, "Deliver a message";
6909 my $msg = $self->{gen}->generate(subject => "Message 1");
6910 $self->{instance}->deliver($msg);
6911
6912 # Verify that message was redirected (no RCPT TO error)
6913 if ($self->{instance}->{have_syslog_replacement}) {
6914 my @lines = $self->{instance}->getsyslog();
6915 $self->assert_does_not_match(qr/RCPT TO: code=553 text=5.1.1/, "@lines");
6916 }
6917
6918 xlog $self, "Make sure that message is NOT in INBOX (due to runtime error)";
6919 my $talk = $self->{store}->get_client();
6920 $talk->select("INBOX");
6921 $self->assert_num_equals(0, $talk->get_response_code('exists'));
6922 }
6923
68976924 1;
7373 $Self->{_rcpt_to_count}++;
7474 if ($Self->{_rcpt_to_count} > 10) {
7575 $Self->send_client_resp(550, "5.5.3 Too many recipients");
76 } elsif ($To =~ /\@fail\.to\.deliver$/i) {
76 } elsif ($To =~ /[<>]/ || $To =~ /\@fail\.to\.deliver$/i) {
7777 $Self->send_client_resp(553, "5.1.1 Bad destination mailbox address");
7878 $Self->mylog("SMTP: 553 5.1.1");
7979 } else {
00 #! /bin/sh
11 # Guess values for system-dependent variables and create Makefiles.
2 # Generated by GNU Autoconf 2.69 for cyrus-imapd 3.8.0-beta1.
2 # Generated by GNU Autoconf 2.69 for cyrus-imapd 3.8.0-beta2.
33 #
44 # Report bugs to <https://github.com/cyrusimap/cyrus-imapd/issues>.
55 #
649649 # Identity of this package.
650650 PACKAGE_NAME='cyrus-imapd'
651651 PACKAGE_TARNAME='cyrus-imapd'
652 PACKAGE_VERSION='3.8.0-beta1'
653 PACKAGE_STRING='cyrus-imapd 3.8.0-beta1'
652 PACKAGE_VERSION='3.8.0-beta2'
653 PACKAGE_STRING='cyrus-imapd 3.8.0-beta2'
654654 PACKAGE_BUGREPORT='https://github.com/cyrusimap/cyrus-imapd/issues'
655655 PACKAGE_URL='https://www.cyrusimap.org'
656656
17001700 # Omit some internal or obsolete options to make the list less imposing.
17011701 # This message is too long to be a string in the A/UX 3.1 sh.
17021702 cat <<_ACEOF
1703 \`configure' configures cyrus-imapd 3.8.0-beta1 to adapt to many kinds of systems.
1703 \`configure' configures cyrus-imapd 3.8.0-beta2 to adapt to many kinds of systems.
17041704
17051705 Usage: $0 [OPTION]... [VAR=VALUE]...
17061706
17721772
17731773 if test -n "$ac_init_help"; then
17741774 case $ac_init_help in
1775 short | recursive ) echo "Configuration of cyrus-imapd 3.8.0-beta1:";;
1775 short | recursive ) echo "Configuration of cyrus-imapd 3.8.0-beta2:";;
17761776 esac
17771777 cat <<\_ACEOF
17781778
20412041 test -n "$ac_init_help" && exit $ac_status
20422042 if $ac_init_version; then
20432043 cat <<\_ACEOF
2044 cyrus-imapd configure 3.8.0-beta1
2044 cyrus-imapd configure 3.8.0-beta2
20452045 generated by GNU Autoconf 2.69
20462046
20472047 Copyright (C) 2012 Free Software Foundation, Inc.
28172817 This file contains any messages produced by compilers while
28182818 running configure, to aid debugging if configure makes a mistake.
28192819
2820 It was created by cyrus-imapd $as_me 3.8.0-beta1, which was
2820 It was created by cyrus-imapd $as_me 3.8.0-beta2, which was
28212821 generated by GNU Autoconf 2.69. Invocation command line was
28222822
28232823 $ $0 $@
33173317 ENABLE_STATIC="$enable_static"
33183318
33193319
3320 CYRUS_IMAPD_SERIES=`echo 3.8.0-beta1 | cut -d- -f1 | cut -d. -f1-2`
3321 CYRUS_IMAPD_REVISION=`echo 3.8.0-beta1 | cut -d- -f1 | cut -d. -f3`
3322 CYRUS_IMAPD_PATCH=`echo 3.8.0-beta1 | cut -d- -f2-`
3320 CYRUS_IMAPD_SERIES=`echo 3.8.0-beta2 | cut -d- -f1 | cut -d. -f1-2`
3321 CYRUS_IMAPD_REVISION=`echo 3.8.0-beta2 | cut -d- -f1 | cut -d. -f3`
3322 CYRUS_IMAPD_PATCH=`echo 3.8.0-beta2 | cut -d- -f2-`
33233323
33243324
33253325
39263926
39273927 # Define the identity of the package.
39283928 PACKAGE='cyrus-imapd'
3929 VERSION='3.8.0-beta1'
3929 VERSION='3.8.0-beta2'
39303930
39313931
39323932 cat >>confdefs.h <<_ACEOF
2877928779 # report actual input values of CONFIG_FILES etc. instead of their
2878028780 # values after options handling.
2878128781 ac_log="
28782 This file was extended by cyrus-imapd $as_me 3.8.0-beta1, which was
28782 This file was extended by cyrus-imapd $as_me 3.8.0-beta2, which was
2878328783 generated by GNU Autoconf 2.69. Invocation command line was
2878428784
2878528785 CONFIG_FILES = $CONFIG_FILES
2885028850 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
2885128851 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
2885228852 ac_cs_version="\\
28853 cyrus-imapd config.status 3.8.0-beta1
28853 cyrus-imapd config.status 3.8.0-beta2
2885428854 configured by $0, generated by GNU Autoconf 2.69,
2885528855 with options \\"\$ac_cs_config\\"
2885628856
00 # Sphinx build info version 1
11 # This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
2 config: 651f05555fd14765b9e311ebdb8c9e90
2 config: 20ee97462595bcc1ef447be5ca4b64c6
33 tags: 645f666f9bcd5a90fca523b33c5a78b7
3434 after it has been sent.
3535 * Maps JMAP CalendarEvent privacy to the newly introduced iCalendar
3636 X-JMAP-PRIVACY property rather than CLASS. See
37 :ref:`upgrade_3.8.0-beta1_jmap_caldav_changes` in the upgrade instructions.
37 :ref:`upgrade_3.8.0_jmap_caldav_changes` in the upgrade instructions.
3838 * Improves error handling and reporting from :cyrusman:`mbexamine(8)`. If you
3939 have custom tooling that calls mbexamine, it may need updating.
4040 * Sieve: Remove support for creating scripts with the deprecated
4141 ``imapflags`` capability and ``mark`` / ``unmark`` actions. See
42 :ref:`upgrade_3.8.0-beta1_sieve_changes` in the upgrade instructions.
42 :ref:`upgrade_3.8.0_sieve_changes` in the upgrade instructions.
4343 * Lock ordering fixes should result in fewer "resource deadlock avoided"
4444 errors
4545
0 :tocdepth: 3
1
2 ====================================
3 Cyrus IMAP 3.8.0-beta2 Release Notes
4 ====================================
5
6 Download from GitHub:
7
8 * https://github.com/cyrusimap/cyrus-imapd/releases/download/cyrus-imapd-3.8.0-beta2/cyrus-imapd-3.8.0-beta2.tar.gz
9 * https://github.com/cyrusimap/cyrus-imapd/releases/download/cyrus-imapd-3.8.0-beta2/cyrus-imapd-3.8.0-beta2.tar.gz.sig
10
11 .. _relnotes-3.8.0-beta2_changes:
12
13 Major changes since the 3.6 series
14 ==================================
15
16 * Adds the ability for replication to stage message uploads to the
17 archive partition rather than the spool partition.
18 * Adds long-options support to various command line tools
19 * Adds a new BYTESIZE smart type for imapoptions that set sizes
20 * Removes empty lines from :cyrusman:`cyr_expire(8)` verbose output. If you
21 parse this output with external tools, those may need updating to match.
22 * Adds a module to ptloader which speaks HTTP. See the "pts_module" and
23 "httppts_uri" options in :cyrusman:`imapd.conf(5)`.
24 * Adds support for IMAP Multimailbox Search (:rfc:`7377`).
25 * Adds support for IMAP Saved Search Results (:rfc:`5182`).
26 * Advertise support for IMAP URL-PARTIAL (:rfc:`5550`).
27 * Implements the JMAP calendars specification
28 (:draft:`draft-ietf-jmap-calendars`). See the "jmap_guesstz_fname" option
29 in :cyrusman:`imapd.conf(5)`.
30 * Adds support for a new read-only ``\Scheduled`` mailbox that contains
31 emails created via JMAP EmailSubmission/set that are to be sent
32 at a later date/time. Also extends the JMAP EmailSubmission object
33 with optional instructions for moving the message into another mailbox
34 after it has been sent.
35 * Maps JMAP CalendarEvent privacy to the newly introduced iCalendar
36 X-JMAP-PRIVACY property rather than CLASS. See
37 :ref:`upgrade_3.8.0_jmap_caldav_changes` in the upgrade instructions.
38 * Improves error handling and reporting from :cyrusman:`mbexamine(8)`. If you
39 have custom tooling that calls mbexamine, it may need updating.
40 * Sieve: Remove support for creating scripts with the deprecated
41 ``imapflags`` capability and ``mark`` / ``unmark`` actions. See
42 :ref:`upgrade_3.8.0_sieve_changes` in the upgrade instructions.
43 * Lock ordering fixes should result in fewer "resource deadlock avoided"
44 errors
45
46 .. _relnotes_3.8.0-beta2_storage_changes:
47
48 Storage changes
49 ===============
50
51 * None so far
52
53 Updates to default configuration
54 ================================
55
56 The :cyrusman:`cyr_info(8)` `conf`, `conf-all` and `conf-default` subcommands
57 accept an `-s <version>` argument to highlight :cyrusman:`imapd.conf(5)`
58 options that are new or whose behaviour has changed since the specified
59 version. We recommend using this when evaluating a new Cyrus version to
60 check which configuration options you will need to examine and maybe set or
61 change during the process.
62
63 * Adds a new BYTESIZE smart type for imapoptions that set sizes. This allows
64 sizes to be specified in "B", "KB", "MB", "GB" for better readability.
65
66 These :cyrusman:`imapd.conf(5)` options are changed in some way:
67
68 * archive_maxsize
69 * autocreate_quota
70 * autocreatequota
71 * backup_compact_minsize
72 * backup_compact_maxsize
73 * event_content_size
74 * icalendar_max_size
75 * jmap_preview_length
76 * jmap_max_size_upload
77 * jmap_max_size_blob_set
78 * jmap_max_size_request
79 * jmap_mail_max_size_attachments_per_email
80 * maxmessagesize
81 * maxquoted
82 * maxword
83 * quotawarn -> quotawarnpercent
84 * quotawarnkb -> quotawarnsize
85 * search_maxsize
86 * sieve_maxscriptsize
87 * vcard_max_size
88 * webdav_attachments_max_binary_attach_size
89
90 This feature is transparent over upgrade and downgrade, provided the
91 imapd.conf remains unchanged.
92
93 Admins may update their imapd.conf to take advantage of the readability of
94 the new smart type, but after doing so will no longer be able to downgrade
95 to a version without this feature (unless they also revert their
96 imapd.conf).
97
98 Security fixes
99 ==============
100
101 * None so far
102
103 Significant bugfixes
104 ====================
105
106 * Fixed :issue:`4380`: XFER to newer backends now assumes at least the current
107 mailbox version, rather than the oldest supported mailbox version.
108 * Fixed :issue:`3771`: Special-Use annotations lost on XFER
109 * Fixed :issue:`4187`: :cyrusman:`ctl_mboxlist(8)` can now detect and report
110 broken UUID mailboxes. Thanks Matthias Hunstock.
111 * Fixed :issue:`4383`: rolling :cyrusman:`squatter(8)` only compacted its index
112 databases at shutdown
113 * Fixed :issue:`4439`: GETMETADATA wasn't proxied correctly to murder backends.
114 Thanks Stéphane GAUBERT.
8181 necessary for upgrade: Cyrus recognises the old style storage and will
8282 convert to the new style automatically as necessary.
8383
84 .. _upgrade_3.8.0-beta1_jmap_caldav_changes:
84 .. _upgrade_3.8.0_jmap_caldav_changes:
8585
8686 JMAP/CalDAV changes
8787 ###################
106106 dav.db
107107 - followed by calling `dav_reconstruct` for that user
108108
109 .. _upgrade_3.8.0-beta1_sieve_changes:
109 .. _upgrade_3.8.0_sieve_changes:
110110
111111 Sieve changes
112112 #############
2929
3030 .. option:: imapd.conf
3131
32 Provide an alternate impad.conf. If not specified, uses ``/etc/imapd.conf``.
32 Provide an alternate imapd.conf. If not specified, uses ``/etc/imapd.conf``.
3333
3434 See Also
3535 ========
00 var DOCUMENTATION_OPTIONS = {
11 URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'),
2 VERSION: '3.8.0-beta1',
2 VERSION: '3.8.0-beta2',
33 LANGUAGE: 'None',
44 COLLAPSE_INDEX: false,
55 BUILDER: 'html',
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>We need your help &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>We need your help &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="genindex.html"/>
3838 <link rel="search" title="Search" href="search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="index.html"/>
4040 <link rel="up" title="Developers" href="developers.html"/>
4141 <link rel="next" title="Documentation" href="imap/developer/documentation.html"/>
4242 <link rel="prev" title="Developers" href="developers.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="developers.html">Developers</a> &raquo;</li>
772772
831831 <script type="text/javascript">
832832 var DOCUMENTATION_OPTIONS = {
833833 URL_ROOT:'./',
834 VERSION:'3.8.0-beta1',
834 VERSION:'3.8.0-beta2',
835835 COLLAPSE_INDEX:false,
836836 FILE_SUFFIX:'.html',
837837 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Developers &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Developers &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="genindex.html"/>
3838 <link rel="search" title="Search" href="search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="index.html"/>
4040 <link rel="next" title="We need your help" href="contribute.html"/>
4141 <link rel="prev" title="Why does mail delivery go slow or hang sometimes?" href="imap/reference/faqs/interop-slow-delivery.html"/>
4242
765765
766766 <div role="navigation" aria-label="breadcrumbs navigation">
767767 <ul class="wy-breadcrumbs">
768 <li><a href="index.html">Docs v3.8.0-beta1</a> &raquo;</li>
768 <li><a href="index.html">Docs v3.8.0-beta2</a> &raquo;</li>
769769
770770 <li>Developers</li>
771771 <li class="wy-breadcrumbs-aside">
916916 <script type="text/javascript">
917917 var DOCUMENTATION_OPTIONS = {
918918 URL_ROOT:'./',
919 VERSION:'3.8.0-beta1',
919 VERSION:'3.8.0-beta2',
920920 COLLAPSE_INDEX:false,
921921 FILE_SUFFIX:'.html',
922922 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Download &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Download &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="genindex.html"/>
3838 <link rel="search" title="Search" href="search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="index.html"/>
4040 <link rel="next" title="Get Cyrus" href="imap/download/getcyrus.html"/>
4141 <link rel="prev" title="What is Cyrus IMAP?" href="index.html"/>
4242
765765
766766 <div role="navigation" aria-label="breadcrumbs navigation">
767767 <ul class="wy-breadcrumbs">
768 <li><a href="index.html">Docs v3.8.0-beta1</a> &raquo;</li>
768 <li><a href="index.html">Docs v3.8.0-beta2</a> &raquo;</li>
769769
770770 <li>Download</li>
771771 <li class="wy-breadcrumbs-aside">
882882 <script type="text/javascript">
883883 var DOCUMENTATION_OPTIONS = {
884884 URL_ROOT:'./',
885 VERSION:'3.8.0-beta1',
885 VERSION:'3.8.0-beta2',
886886 COLLAPSE_INDEX:false,
887887 FILE_SUFFIX:'.html',
888888 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Index &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Index &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="#"/>
3838 <link rel="search" title="Search" href="search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="index.html"/>
4040
4141
4242
763763
764764 <div role="navigation" aria-label="breadcrumbs navigation">
765765 <ul class="wy-breadcrumbs">
766 <li><a href="index.html">Docs v3.8.0-beta1</a> &raquo;</li>
766 <li><a href="index.html">Docs v3.8.0-beta2</a> &raquo;</li>
767767
768768 <li>Index</li>
769769 <li class="wy-breadcrumbs-aside">
60536053 </li>
60546054 <li><a href="imap/reference/admin/sieve.html#index-22">RFC 5173</a>, <a href="imap/rfc-support.html#index-105">[1]</a>
60556055 </li>
6056 <li><a href="imap/download/release-notes/3.8/x/3.8.0-beta1.html#index-1">RFC 5182</a>, <a href="imap/rfc-support.html#index-106">[1]</a>
6056 <li><a href="imap/download/release-notes/3.8/x/3.8.0-beta1.html#index-1">RFC 5182</a>, <a href="imap/download/release-notes/3.8/x/3.8.0-beta2.html#index-1">[1]</a>, <a href="imap/rfc-support.html#index-106">[2]</a>
60576057 </li>
60586058 <li><a href="imap/rfc-support.html#index-107">RFC 5183</a>
60596059 </li>
61256125 </li>
61266126 <li><a href="imap/rfc-support.html#index-135">RFC 5546</a>
61276127 </li>
6128 <li><a href="imap/download/release-notes/3.8/x/3.8.0-beta1.html#index-2">RFC 5550</a>, <a href="imap/rfc-support.html#index-136">[1]</a>
6128 <li><a href="imap/download/release-notes/3.8/x/3.8.0-beta1.html#index-2">RFC 5550</a>, <a href="imap/download/release-notes/3.8/x/3.8.0-beta2.html#index-2">[1]</a>, <a href="imap/rfc-support.html#index-136">[2]</a>
61296129 </li>
61306130 <li><a href="imap/rfc-support.html#index-102">RFC 5593</a>, <a href="imap/rfc-support.html#index-137">[1]</a>
61316131 </li>
62176217 </li>
62186218 <li><a href="imap/reference/admin/sieve.html#index-18">RFC 7352</a>, <a href="imap/rfc-support.html#index-175">[1]</a>
62196219 </li>
6220 <li><a href="imap/download/release-notes/3.8/x/3.8.0-beta1.html#index-0">RFC 7377</a>, <a href="imap/rfc-support.html#index-176">[1]</a>
6220 <li><a href="imap/download/release-notes/3.8/x/3.8.0-beta1.html#index-0">RFC 7377</a>, <a href="imap/download/release-notes/3.8/x/3.8.0-beta2.html#index-0">[1]</a>, <a href="imap/rfc-support.html#index-176">[2]</a>
62216221 </li>
62226222 <li><a href="imap/download/release-notes/3.6/x/3.6.0-beta1.html#index-1">RFC 7519</a>, <a href="imap/download/release-notes/3.6/x/3.6.0-beta2.html#index-1">[1]</a>, <a href="imap/download/release-notes/3.6/x/3.6.0-beta3.html#index-1">[2]</a>, <a href="imap/download/release-notes/3.6/x/3.6.0-rc1.html#index-1">[3]</a>, <a href="imap/download/release-notes/3.6/x/3.6.0-rc2.html#index-1">[4]</a>, <a href="imap/download/release-notes/3.6/x/3.6.0.html#index-1">[5]</a>, <a href="imap/reference/manpages/configs/imapd.conf.html#index-9">[6]</a>
62236223 </li>
67496749 <script type="text/javascript">
67506750 var DOCUMENTATION_OPTIONS = {
67516751 URL_ROOT:'./',
6752 VERSION:'3.8.0-beta1',
6752 VERSION:'3.8.0-beta2',
67536753 COLLAPSE_INDEX:false,
67546754 FILE_SUFFIX:'.html',
67556755 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Glossary &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Glossary &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="genindex.html"/>
3838 <link rel="search" title="Search" href="search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="index.html"/>
4040
4141
4242
763763
764764 <div role="navigation" aria-label="breadcrumbs navigation">
765765 <ul class="wy-breadcrumbs">
766 <li><a href="index.html">Docs v3.8.0-beta1</a> &raquo;</li>
766 <li><a href="index.html">Docs v3.8.0-beta2</a> &raquo;</li>
767767
768768 <li>Glossary</li>
769769 <li class="wy-breadcrumbs-aside">
951951 <script type="text/javascript">
952952 var DOCUMENTATION_OPTIONS = {
953953 URL_ROOT:'./',
954 VERSION:'3.8.0-beta1',
954 VERSION:'3.8.0-beta2',
955955 COLLAPSE_INDEX:false,
956956 FILE_SUFFIX:'.html',
957957 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Authentication and Authorization &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Authentication and Authorization &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Configuration Guide" href="../deployment.html"/>
4141 <link rel="next" title="Performance Recommendations" href="performance_recommendations.html"/>
4242 <link rel="prev" title="Known Protocol Limitations" href="known_protocol_limitations.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../setup.html">Setup</a> &raquo;</li>
772772
858858 <script type="text/javascript">
859859 var DOCUMENTATION_OPTIONS = {
860860 URL_ROOT:'../../../',
861 VERSION:'3.8.0-beta1',
861 VERSION:'3.8.0-beta2',
862862 COLLAPSE_INDEX:false,
863863 FILE_SUFFIX:'.html',
864864 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Databases &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Databases &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Configuration Guide" href="../deployment.html"/>
4141 <link rel="next" title="Mailbox Creation Distribution" href="mailbox_creation_distribution.html"/>
4242 <link rel="prev" title="Deployment Scenarios" href="deployment_scenarios.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../setup.html">Setup</a> &raquo;</li>
772772
12151215 <script type="text/javascript">
12161216 var DOCUMENTATION_OPTIONS = {
12171217 URL_ROOT:'../../../',
1218 VERSION:'3.8.0-beta1',
1218 VERSION:'3.8.0-beta2',
12191219 COLLAPSE_INDEX:false,
12201220 FILE_SUFFIX:'.html',
12211221 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Deployment Scenarios &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Deployment Scenarios &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Configuration Guide" href="../deployment.html"/>
4141 <link rel="next" title="Databases" href="databases.html"/>
4242 <link rel="prev" title="Configuration Guide" href="../deployment.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../setup.html">Setup</a> &raquo;</li>
772772
895895 <script type="text/javascript">
896896 var DOCUMENTATION_OPTIONS = {
897897 URL_ROOT:'../../../',
898 VERSION:'3.8.0-beta1',
898 VERSION:'3.8.0-beta2',
899899 COLLAPSE_INDEX:false,
900900 FILE_SUFFIX:'.html',
901901 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Known Protocol Limitations &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Known Protocol Limitations &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Configuration Guide" href="../deployment.html"/>
4141 <link rel="next" title="Authentication and Authorization" href="authentication_and_authorization.html"/>
4242 <link rel="prev" title="Mailbox Creation Distribution" href="mailbox_creation_distribution.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../setup.html">Setup</a> &raquo;</li>
772772
850850 <script type="text/javascript">
851851 var DOCUMENTATION_OPTIONS = {
852852 URL_ROOT:'../../../',
853 VERSION:'3.8.0-beta1',
853 VERSION:'3.8.0-beta2',
854854 COLLAPSE_INDEX:false,
855855 FILE_SUFFIX:'.html',
856856 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Mailbox Creation Distribution &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Mailbox Creation Distribution &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Configuration Guide" href="../deployment.html"/>
4141 <link rel="next" title="Known Protocol Limitations" href="known_protocol_limitations.html"/>
4242 <link rel="prev" title="Databases" href="databases.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../setup.html">Setup</a> &raquo;</li>
772772
11451145 <script type="text/javascript">
11461146 var DOCUMENTATION_OPTIONS = {
11471147 URL_ROOT:'../../../',
1148 VERSION:'3.8.0-beta1',
1148 VERSION:'3.8.0-beta2',
11491149 COLLAPSE_INDEX:false,
11501150 FILE_SUFFIX:'.html',
11511151 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Performance Recommendations &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Performance Recommendations &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Configuration Guide" href="../deployment.html"/>
4141 <link rel="next" title="Storage Considerations" href="storage.html"/>
4242 <link rel="prev" title="Authentication and Authorization" href="authentication_and_authorization.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../setup.html">Setup</a> &raquo;</li>
772772
847847 <script type="text/javascript">
848848 var DOCUMENTATION_OPTIONS = {
849849 URL_ROOT:'../../../',
850 VERSION:'3.8.0-beta1',
850 VERSION:'3.8.0-beta2',
851851 COLLAPSE_INDEX:false,
852852 FILE_SUFFIX:'.html',
853853 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Storage Considerations &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Storage Considerations &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Configuration Guide" href="../deployment.html"/>
4141 <link rel="next" title="Supported Platforms and System Requirements" href="supported-platforms.html"/>
4242 <link rel="prev" title="Performance Recommendations" href="performance_recommendations.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../setup.html">Setup</a> &raquo;</li>
772772
16051605 <script type="text/javascript">
16061606 var DOCUMENTATION_OPTIONS = {
16071607 URL_ROOT:'../../../',
1608 VERSION:'3.8.0-beta1',
1608 VERSION:'3.8.0-beta2',
16091609 COLLAPSE_INDEX:false,
16101610 FILE_SUFFIX:'.html',
16111611 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Supported Platforms and System Requirements &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Supported Platforms and System Requirements &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Configuration Guide" href="../deployment.html"/>
4141 <link rel="next" title="Operations" href="../../../operations.html"/>
4242 <link rel="prev" title="Storage Considerations" href="storage.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../setup.html">Setup</a> &raquo;</li>
772772
927927 <script type="text/javascript">
928928 var DOCUMENTATION_OPTIONS = {
929929 URL_ROOT:'../../../',
930 VERSION:'3.8.0-beta1',
930 VERSION:'3.8.0-beta2',
931931 COLLAPSE_INDEX:false,
932932 FILE_SUFFIX:'.html',
933933 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Configuration Guide &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Configuration Guide &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../index.html"/>
4040 <link rel="up" title="Setup" href="../../setup.html"/>
4141 <link rel="next" title="Deployment Scenarios" href="deployment/deployment_scenarios.html"/>
4242 <link rel="prev" title="Upgrading to 3.8" href="../download/upgrade.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../setup.html">Setup</a> &raquo;</li>
772772
953953 <script type="text/javascript">
954954 var DOCUMENTATION_OPTIONS = {
955955 URL_ROOT:'../../',
956 VERSION:'3.8.0-beta1',
956 VERSION:'3.8.0-beta2',
957957 COLLAPSE_INDEX:false,
958958 FILE_SUFFIX:'.html',
959959 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Access Control &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Access Control &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Features" href="../features.html"/>
4141 <link rel="next" title="Sealed System Design" href="sealed-system.html"/>
4242 <link rel="prev" title="SQL Authentication" href="authentication-sql.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../overview.html">Overview</a> &raquo;</li>
772772
841841 <script type="text/javascript">
842842 var DOCUMENTATION_OPTIONS = {
843843 URL_ROOT:'../../../',
844 VERSION:'3.8.0-beta1',
844 VERSION:'3.8.0-beta2',
845845 COLLAPSE_INDEX:false,
846846 FILE_SUFFIX:'.html',
847847 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Archiving &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Archiving &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Features" href="../features.html"/>
4141 <link rel="next" title="Quota" href="quota.html"/>
4242 <link rel="prev" title="Mailbox Metadata Partitions" href="mailbox-metadata-partitions.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../overview.html">Overview</a> &raquo;</li>
772772
931931 <script type="text/javascript">
932932 var DOCUMENTATION_OPTIONS = {
933933 URL_ROOT:'../../../',
934 VERSION:'3.8.0-beta1',
934 VERSION:'3.8.0-beta2',
935935 COLLAPSE_INDEX:false,
936936 FILE_SUFFIX:'.html',
937937 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Kerberos Authentication &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Kerberos Authentication &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Features" href="../features.html"/>
4141 <link rel="next" title="LDAP Authentication" href="authentication-ldap.html"/>
4242 <link rel="prev" title="Features" href="../features.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../overview.html">Overview</a> &raquo;</li>
772772
829829 <script type="text/javascript">
830830 var DOCUMENTATION_OPTIONS = {
831831 URL_ROOT:'../../../',
832 VERSION:'3.8.0-beta1',
832 VERSION:'3.8.0-beta2',
833833 COLLAPSE_INDEX:false,
834834 FILE_SUFFIX:'.html',
835835 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>LDAP Authentication &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>LDAP Authentication &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Features" href="../features.html"/>
4141 <link rel="next" title="SQL Authentication" href="authentication-sql.html"/>
4242 <link rel="prev" title="Kerberos Authentication" href="authentication-kerberos.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../overview.html">Overview</a> &raquo;</li>
772772
829829 <script type="text/javascript">
830830 var DOCUMENTATION_OPTIONS = {
831831 URL_ROOT:'../../../',
832 VERSION:'3.8.0-beta1',
832 VERSION:'3.8.0-beta2',
833833 COLLAPSE_INDEX:false,
834834 FILE_SUFFIX:'.html',
835835 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>SQL Authentication &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>SQL Authentication &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Features" href="../features.html"/>
4141 <link rel="next" title="Access Control" href="access-control.html"/>
4242 <link rel="prev" title="LDAP Authentication" href="authentication-ldap.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../overview.html">Overview</a> &raquo;</li>
772772
963963 <script type="text/javascript">
964964 var DOCUMENTATION_OPTIONS = {
965965 URL_ROOT:'../../../',
966 VERSION:'3.8.0-beta1',
966 VERSION:'3.8.0-beta2',
967967 COLLAPSE_INDEX:false,
968968 FILE_SUFFIX:'.html',
969969 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Automatic Creation of Mailboxes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Automatic Creation of Mailboxes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Features" href="../features.html"/>
4141 <link rel="next" title="Mailbox Namespaces" href="namespaces.html"/>
4242 <link rel="prev" title="Sealed System Design" href="sealed-system.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../overview.html">Overview</a> &raquo;</li>
772772
10471047 <script type="text/javascript">
10481048 var DOCUMENTATION_OPTIONS = {
10491049 URL_ROOT:'../../../',
1050 VERSION:'3.8.0-beta1',
1050 VERSION:'3.8.0-beta2',
10511051 COLLAPSE_INDEX:false,
10521052 FILE_SUFFIX:'.html',
10531053 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>CalDAV Collections &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>CalDAV Collections &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Features" href="../features.html"/>
4141 <link rel="next" title="DAV Components" href="dav-components.html"/>
4242 <link rel="prev" title="Event Notifications" href="event-notifications.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../overview.html">Overview</a> &raquo;</li>
772772
836836 <script type="text/javascript">
837837 var DOCUMENTATION_OPTIONS = {
838838 URL_ROOT:'../../../',
839 VERSION:'3.8.0-beta1',
839 VERSION:'3.8.0-beta2',
840840 COLLAPSE_INDEX:false,
841841 FILE_SUFFIX:'.html',
842842 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>CardDAV Support &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>CardDAV Support &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Features" href="../features.html"/>
4141 <link rel="next" title="Mail Spool Partitions" href="mail-spool-partitions.html"/>
4242 <link rel="prev" title="DAV Collection Management" href="dav-collection-mgmt.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../overview.html">Overview</a> &raquo;</li>
772772
829829 <script type="text/javascript">
830830 var DOCUMENTATION_OPTIONS = {
831831 URL_ROOT:'../../../',
832 VERSION:'3.8.0-beta1',
832 VERSION:'3.8.0-beta2',
833833 COLLAPSE_INDEX:false,
834834 FILE_SUFFIX:'.html',
835835 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>DAV Collection Management &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>DAV Collection Management &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Features" href="../features.html"/>
4141 <link rel="next" title="CardDAV Support" href="carddav.html"/>
4242 <link rel="prev" title="DAV Components" href="dav-components.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../overview.html">Overview</a> &raquo;</li>
772772
841841 <script type="text/javascript">
842842 var DOCUMENTATION_OPTIONS = {
843843 URL_ROOT:'../../../',
844 VERSION:'3.8.0-beta1',
844 VERSION:'3.8.0-beta2',
845845 COLLAPSE_INDEX:false,
846846 FILE_SUFFIX:'.html',
847847 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>DAV Components &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>DAV Components &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Features" href="../features.html"/>
4141 <link rel="next" title="DAV Collection Management" href="dav-collection-mgmt.html"/>
4242 <link rel="prev" title="CalDAV Collections" href="caldav-collections.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../overview.html">Overview</a> &raquo;</li>
772772
839839 <script type="text/javascript">
840840 var DOCUMENTATION_OPTIONS = {
841841 URL_ROOT:'../../../',
842 VERSION:'3.8.0-beta1',
842 VERSION:'3.8.0-beta2',
843843 COLLAPSE_INDEX:false,
844844 FILE_SUFFIX:'.html',
845845 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Delayed Delete &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Delayed Delete &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Features" href="../features.html"/>
4141 <link rel="next" title="Delayed Expunge" href="delayed-expunge.html"/>
4242 <link rel="prev" title="Mailbox Distribution" href="mailbox-distribution.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../overview.html">Overview</a> &raquo;</li>
772772
886886 <script type="text/javascript">
887887 var DOCUMENTATION_OPTIONS = {
888888 URL_ROOT:'../../../',
889 VERSION:'3.8.0-beta1',
889 VERSION:'3.8.0-beta2',
890890 COLLAPSE_INDEX:false,
891891 FILE_SUFFIX:'.html',
892892 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Delayed Expunge &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Delayed Expunge &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Features" href="../features.html"/>
4141 <link rel="next" title="Message Annotations (METADATA)" href="message-annotations.html"/>
4242 <link rel="prev" title="Delayed Delete" href="delayed-delete.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../overview.html">Overview</a> &raquo;</li>
772772
879879 <script type="text/javascript">
880880 var DOCUMENTATION_OPTIONS = {
881881 URL_ROOT:'../../../',
882 VERSION:'3.8.0-beta1',
882 VERSION:'3.8.0-beta2',
883883 COLLAPSE_INDEX:false,
884884 FILE_SUFFIX:'.html',
885885 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Duplicate Message Delivery Suppression &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Duplicate Message Delivery Suppression &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Features" href="../features.html"/>
4141 <link rel="next" title="Shared Seen State" href="shared-seen-state.html"/>
4242 <link rel="prev" title="Message Annotations (METADATA)" href="message-annotations.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../overview.html">Overview</a> &raquo;</li>
772772
848848 <script type="text/javascript">
849849 var DOCUMENTATION_OPTIONS = {
850850 URL_ROOT:'../../../',
851 VERSION:'3.8.0-beta1',
851 VERSION:'3.8.0-beta2',
852852 COLLAPSE_INDEX:false,
853853 FILE_SUFFIX:'.html',
854854 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Event Notifications &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Event Notifications &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Features" href="../features.html"/>
4141 <link rel="next" title="CalDAV Collections" href="caldav-collections.html"/>
4242 <link rel="prev" title="Server Side Filtering (Sieve)" href="server-side-filtering.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../overview.html">Overview</a> &raquo;</li>
772772
17901790 <script type="text/javascript">
17911791 var DOCUMENTATION_OPTIONS = {
17921792 URL_ROOT:'../../../',
1793 VERSION:'3.8.0-beta1',
1793 VERSION:'3.8.0-beta2',
17941794 COLLAPSE_INDEX:false,
17951795 FILE_SUFFIX:'.html',
17961796 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Mail Spool Partitions &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Mail Spool Partitions &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Features" href="../features.html"/>
4141 <link rel="next" title="Mailbox Metadata Partitions" href="mailbox-metadata-partitions.html"/>
4242 <link rel="prev" title="CardDAV Support" href="carddav.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../overview.html">Overview</a> &raquo;</li>
772772
899899 <script type="text/javascript">
900900 var DOCUMENTATION_OPTIONS = {
901901 URL_ROOT:'../../../',
902 VERSION:'3.8.0-beta1',
902 VERSION:'3.8.0-beta2',
903903 COLLAPSE_INDEX:false,
904904 FILE_SUFFIX:'.html',
905905 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Mailbox Annotations (METADATA) &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Mailbox Annotations (METADATA) &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Features" href="../features.html"/>
4141 <link rel="next" title="Mailbox Distribution" href="mailbox-distribution.html"/>
4242 <link rel="prev" title="Virtual Domains" href="virtual-domains.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../overview.html">Overview</a> &raquo;</li>
772772
835835 <script type="text/javascript">
836836 var DOCUMENTATION_OPTIONS = {
837837 URL_ROOT:'../../../',
838 VERSION:'3.8.0-beta1',
838 VERSION:'3.8.0-beta2',
839839 COLLAPSE_INDEX:false,
840840 FILE_SUFFIX:'.html',
841841 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Mailbox Distribution &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Mailbox Distribution &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Features" href="../features.html"/>
4141 <link rel="next" title="Delayed Delete" href="delayed-delete.html"/>
4242 <link rel="prev" title="Mailbox Annotations (METADATA)" href="mailbox-annotations.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../overview.html">Overview</a> &raquo;</li>
772772
12611261 <script type="text/javascript">
12621262 var DOCUMENTATION_OPTIONS = {
12631263 URL_ROOT:'../../../',
1264 VERSION:'3.8.0-beta1',
1264 VERSION:'3.8.0-beta2',
12651265 COLLAPSE_INDEX:false,
12661266 FILE_SUFFIX:'.html',
12671267 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Mailbox Metadata Partitions &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Mailbox Metadata Partitions &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Features" href="../features.html"/>
4141 <link rel="next" title="Archiving" href="archiving.html"/>
4242 <link rel="prev" title="Mail Spool Partitions" href="mail-spool-partitions.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../overview.html">Overview</a> &raquo;</li>
772772
837837 <script type="text/javascript">
838838 var DOCUMENTATION_OPTIONS = {
839839 URL_ROOT:'../../../',
840 VERSION:'3.8.0-beta1',
840 VERSION:'3.8.0-beta2',
841841 COLLAPSE_INDEX:false,
842842 FILE_SUFFIX:'.html',
843843 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Message Annotations (METADATA) &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Message Annotations (METADATA) &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Features" href="../features.html"/>
4141 <link rel="next" title="Duplicate Message Delivery Suppression" href="duplicate-message-delivery-suppression.html"/>
4242 <link rel="prev" title="Delayed Expunge" href="delayed-expunge.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../overview.html">Overview</a> &raquo;</li>
772772
834834 <script type="text/javascript">
835835 var DOCUMENTATION_OPTIONS = {
836836 URL_ROOT:'../../../',
837 VERSION:'3.8.0-beta1',
837 VERSION:'3.8.0-beta2',
838838 COLLAPSE_INDEX:false,
839839 FILE_SUFFIX:'.html',
840840 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Mailbox Namespaces &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Mailbox Namespaces &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Features" href="../features.html"/>
4141 <link rel="next" title="Virtual Domains" href="virtual-domains.html"/>
4242 <link rel="prev" title="Automatic Creation of Mailboxes" href="automatic-creation-of-mailboxes.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../overview.html">Overview</a> &raquo;</li>
772772
11381138 <script type="text/javascript">
11391139 var DOCUMENTATION_OPTIONS = {
11401140 URL_ROOT:'../../../',
1141 VERSION:'3.8.0-beta1',
1141 VERSION:'3.8.0-beta2',
11421142 COLLAPSE_INDEX:false,
11431143 FILE_SUFFIX:'.html',
11441144 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Quota &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Quota &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Features" href="../features.html"/>
4141 <link rel="next" title="Single-Instance Store" href="single-instance-store.html"/>
4242 <link rel="prev" title="Archiving" href="archiving.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../overview.html">Overview</a> &raquo;</li>
772772
837837 <script type="text/javascript">
838838 var DOCUMENTATION_OPTIONS = {
839839 URL_ROOT:'../../../',
840 VERSION:'3.8.0-beta1',
840 VERSION:'3.8.0-beta2',
841841 COLLAPSE_INDEX:false,
842842 FILE_SUFFIX:'.html',
843843 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Sealed System Design &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Sealed System Design &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Features" href="../features.html"/>
4141 <link rel="next" title="Automatic Creation of Mailboxes" href="automatic-creation-of-mailboxes.html"/>
4242 <link rel="prev" title="Access Control" href="access-control.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../overview.html">Overview</a> &raquo;</li>
772772
848848 <script type="text/javascript">
849849 var DOCUMENTATION_OPTIONS = {
850850 URL_ROOT:'../../../',
851 VERSION:'3.8.0-beta1',
851 VERSION:'3.8.0-beta2',
852852 COLLAPSE_INDEX:false,
853853 FILE_SUFFIX:'.html',
854854 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP Murder (Server Aggregation) &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP Murder (Server Aggregation) &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Features" href="../features.html"/>
4141 <link rel="next" title="Concepts" href="../overview_and_concepts.html"/>
4242 <link rel="prev" title="Single-Instance Store" href="single-instance-store.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../overview.html">Overview</a> &raquo;</li>
772772
11551155 <script type="text/javascript">
11561156 var DOCUMENTATION_OPTIONS = {
11571157 URL_ROOT:'../../../',
1158 VERSION:'3.8.0-beta1',
1158 VERSION:'3.8.0-beta2',
11591159 COLLAPSE_INDEX:false,
11601160 FILE_SUFFIX:'.html',
11611161 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Server Side Filtering (Sieve) &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Server Side Filtering (Sieve) &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Features" href="../features.html"/>
4141 <link rel="next" title="Event Notifications" href="event-notifications.html"/>
4242 <link rel="prev" title="Shared Seen State" href="shared-seen-state.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../overview.html">Overview</a> &raquo;</li>
772772
829829 <script type="text/javascript">
830830 var DOCUMENTATION_OPTIONS = {
831831 URL_ROOT:'../../../',
832 VERSION:'3.8.0-beta1',
832 VERSION:'3.8.0-beta2',
833833 COLLAPSE_INDEX:false,
834834 FILE_SUFFIX:'.html',
835835 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Shared Seen State &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Shared Seen State &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Features" href="../features.html"/>
4141 <link rel="next" title="Server Side Filtering (Sieve)" href="server-side-filtering.html"/>
4242 <link rel="prev" title="Duplicate Message Delivery Suppression" href="duplicate-message-delivery-suppression.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../overview.html">Overview</a> &raquo;</li>
772772
840840 <script type="text/javascript">
841841 var DOCUMENTATION_OPTIONS = {
842842 URL_ROOT:'../../../',
843 VERSION:'3.8.0-beta1',
843 VERSION:'3.8.0-beta2',
844844 COLLAPSE_INDEX:false,
845845 FILE_SUFFIX:'.html',
846846 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Single-Instance Store &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Single-Instance Store &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Features" href="../features.html"/>
4141 <link rel="next" title="Cyrus IMAP Murder (Server Aggregation)" href="server-aggregation.html"/>
4242 <link rel="prev" title="Quota" href="quota.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../overview.html">Overview</a> &raquo;</li>
772772
832832 <script type="text/javascript">
833833 var DOCUMENTATION_OPTIONS = {
834834 URL_ROOT:'../../../',
835 VERSION:'3.8.0-beta1',
835 VERSION:'3.8.0-beta2',
836836 COLLAPSE_INDEX:false,
837837 FILE_SUFFIX:'.html',
838838 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Virtual Domains &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Virtual Domains &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Features" href="../features.html"/>
4141 <link rel="next" title="Mailbox Annotations (METADATA)" href="mailbox-annotations.html"/>
4242 <link rel="prev" title="Mailbox Namespaces" href="namespaces.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../overview.html">Overview</a> &raquo;</li>
772772
10301030 <script type="text/javascript">
10311031 var DOCUMENTATION_OPTIONS = {
10321032 URL_ROOT:'../../../',
1033 VERSION:'3.8.0-beta1',
1033 VERSION:'3.8.0-beta2',
10341034 COLLAPSE_INDEX:false,
10351035 FILE_SUFFIX:'.html',
10361036 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Features &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Features &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../index.html"/>
4040 <link rel="up" title="Overview" href="../../overview.html"/>
4141 <link rel="next" title="Kerberos Authentication" href="features/authentication-kerberos.html"/>
4242 <link rel="prev" title="Overview" href="../../overview.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../overview.html">Overview</a> &raquo;</li>
772772
918918 <script type="text/javascript">
919919 var DOCUMENTATION_OPTIONS = {
920920 URL_ROOT:'../../',
921 VERSION:'3.8.0-beta1',
921 VERSION:'3.8.0-beta2',
922922 COLLAPSE_INDEX:false,
923923 FILE_SUFFIX:'.html',
924924 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Concepts &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Concepts &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../index.html"/>
4040 <link rel="up" title="Overview" href="../../overview.html"/>
4141 <link rel="next" title="Setup" href="../../setup.html"/>
4242 <link rel="prev" title="Cyrus IMAP Murder (Server Aggregation)" href="features/server-aggregation.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../overview.html">Overview</a> &raquo;</li>
772772
15311531 <script type="text/javascript">
15321532 var DOCUMENTATION_OPTIONS = {
15331533 URL_ROOT:'../../',
1534 VERSION:'3.8.0-beta1',
1534 VERSION:'3.8.0-beta2',
15351535 COLLAPSE_INDEX:false,
15361536 FILE_SUFFIX:'.html',
15371537 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>CyrusDB API &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>CyrusDB API &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Developer APIs" href="../API.html"/>
4141 <link rel="next" title="cyrusdb API" href="cyrusdb2.html"/>
4242 <link rel="prev" title="Developer APIs" href="../API.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../developers.html">Developers</a> &raquo;</li>
772772
14181418 <script type="text/javascript">
14191419 var DOCUMENTATION_OPTIONS = {
14201420 URL_ROOT:'../../../',
1421 VERSION:'3.8.0-beta1',
1421 VERSION:'3.8.0-beta2',
14221422 COLLAPSE_INDEX:false,
14231423 FILE_SUFFIX:'.html',
14241424 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>cyrusdb API &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>cyrusdb API &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Developer APIs" href="../API.html"/>
4141 <link rel="next" title="Index API" href="index-api.html"/>
4242 <link rel="prev" title="CyrusDB API" href="cyrusdb.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../developers.html">Developers</a> &raquo;</li>
772772
10951095 <script type="text/javascript">
10961096 var DOCUMENTATION_OPTIONS = {
10971097 URL_ROOT:'../../../',
1098 VERSION:'3.8.0-beta1',
1098 VERSION:'3.8.0-beta2',
10991099 COLLAPSE_INDEX:false,
11001100 FILE_SUFFIX:'.html',
11011101 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Index API &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Index API &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Developer APIs" href="../API.html"/>
4141 <link rel="next" title="Mailbox API" href="mailbox-api.html"/>
4242 <link rel="prev" title="cyrusdb API" href="cyrusdb2.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../developers.html">Developers</a> &raquo;</li>
772772
889889 <script type="text/javascript">
890890 var DOCUMENTATION_OPTIONS = {
891891 URL_ROOT:'../../../',
892 VERSION:'3.8.0-beta1',
892 VERSION:'3.8.0-beta2',
893893 COLLAPSE_INDEX:false,
894894 FILE_SUFFIX:'.html',
895895 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Mailbox API &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Mailbox API &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Developer APIs" href="../API.html"/>
4141 <link rel="next" title="Developer Thoughts &amp; Notes" href="../thoughts.html"/>
4242 <link rel="prev" title="Index API" href="index-api.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../developers.html">Developers</a> &raquo;</li>
772772
11251125 <script type="text/javascript">
11261126 var DOCUMENTATION_OPTIONS = {
11271127 URL_ROOT:'../../../',
1128 VERSION:'3.8.0-beta1',
1128 VERSION:'3.8.0-beta2',
11291129 COLLAPSE_INDEX:false,
11301130 FILE_SUFFIX:'.html',
11311131 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Developer APIs &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Developer APIs &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../index.html"/>
4040 <link rel="up" title="Developers" href="../../developers.html"/>
4141 <link rel="next" title="CyrusDB API" href="API/cyrusdb.html"/>
4242 <link rel="prev" title="Cyrus Works" href="cyrusworks.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../developers.html">Developers</a> &raquo;</li>
772772
833833 <script type="text/javascript">
834834 var DOCUMENTATION_OPTIONS = {
835835 URL_ROOT:'../../',
836 VERSION:'3.8.0-beta1',
836 VERSION:'3.8.0-beta2',
837837 COLLAPSE_INDEX:false,
838838 FILE_SUFFIX:'.html',
839839 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Releasing new builds of ancient Cyrus IMAP versions &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Releasing new builds of ancient Cyrus IMAP versions &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../index.html"/>
4040 <link rel="up" title="IMAP Developer Guide" href="../developer.html"/>
4141 <link rel="next" title="Cyrus Works" href="cyrusworks.html"/>
4242 <link rel="prev" title="Releasing Cyrus IMAP" href="releasing.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../developers.html">Developers</a> &raquo;</li>
772772
949949 <script type="text/javascript">
950950 var DOCUMENTATION_OPTIONS = {
951951 URL_ROOT:'../../',
952 VERSION:'3.8.0-beta1',
952 VERSION:'3.8.0-beta2',
953953 COLLAPSE_INDEX:false,
954954 FILE_SUFFIX:'.html',
955955 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Compiling &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Compiling &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../index.html"/>
4040 <link rel="up" title="Setup" href="../../setup.html"/>
4141 <link rel="next" title="Installing Cyrus" href="../installing.html"/>
4242 <link rel="prev" title="Setup" href="../../setup.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../setup.html">Setup</a> &raquo;</li>
772772
13911391 <script type="text/javascript">
13921392 var DOCUMENTATION_OPTIONS = {
13931393 URL_ROOT:'../../',
1394 VERSION:'3.8.0-beta1',
1394 VERSION:'3.8.0-beta2',
13951395 COLLAPSE_INDEX:false,
13961396 FILE_SUFFIX:'.html',
13971397 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus Works &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus Works &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../index.html"/>
4040 <link rel="up" title="Developers" href="../../developers.html"/>
4141 <link rel="next" title="Developer APIs" href="API.html"/>
4242 <link rel="prev" title="Releasing new builds of ancient Cyrus IMAP versions" href="ancient-releasing.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../developers.html">Developers</a> &raquo;</li>
772772
841841 <script type="text/javascript">
842842 var DOCUMENTATION_OPTIONS = {
843843 URL_ROOT:'../../',
844 VERSION:'3.8.0-beta1',
844 VERSION:'3.8.0-beta2',
845845 COLLAPSE_INDEX:false,
846846 FILE_SUFFIX:'.html',
847847 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Developer Test Environment &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Developer Test Environment &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../index.html"/>
4040 <link rel="up" title="IMAP Developer Guide" href="../developer.html"/>
4141 <link rel="next" title="JMAP support" href="jmap.html"/>
4242 <link rel="prev" title="GitHub guide" href="github-guide.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../developers.html">Developers</a> &raquo;</li>
772772
10121012 <script type="text/javascript">
10131013 var DOCUMENTATION_OPTIONS = {
10141014 URL_ROOT:'../../',
1015 VERSION:'3.8.0-beta1',
1015 VERSION:'3.8.0-beta2',
10161016 COLLAPSE_INDEX:false,
10171017 FILE_SUFFIX:'.html',
10181018 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Documentation &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Documentation &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../index.html"/>
4040 <link rel="up" title="Developers" href="../../developers.html"/>
4141 <link rel="next" title="IMAP Developer Guide" href="../developer.html"/>
4242 <link rel="prev" title="We need your help" href="../../contribute.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../developers.html">Developers</a> &raquo;</li>
772772
894894 <h3>imap_current_stable_version<a class="headerlink" href="#imap-current-stable-version" title="Permalink to this headline">¶</a></h3>
895895 <p>This is a replacement tag and will output the current stable version number defined in conf.py.</p>
896896 <p>Usage: <code class="docutils literal notranslate"><span class="pre">|imap_current_stable_version|</span></code></p>
897 <p>Produces 3.8.0-beta1.</p>
897 <p>Produces 3.8.0-beta2.</p>
898898 </div>
899899 </div>
900900 <div class="section" id="conventions-man-pages">
10211021 <script type="text/javascript">
10221022 var DOCUMENTATION_OPTIONS = {
10231023 URL_ROOT:'../../',
1024 VERSION:'3.8.0-beta1',
1024 VERSION:'3.8.0-beta2',
10251025 COLLAPSE_INDEX:false,
10261026 FILE_SUFFIX:'.html',
10271027 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>GitHub guide &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>GitHub guide &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../index.html"/>
4040 <link rel="up" title="IMAP Developer Guide" href="../developer.html"/>
4141 <link rel="next" title="Developer Test Environment" href="developer-testing.html"/>
4242 <link rel="prev" title="Overview of Cyrus development environment" href="overview.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../developers.html">Developers</a> &raquo;</li>
772772
888888 <script type="text/javascript">
889889 var DOCUMENTATION_OPTIONS = {
890890 URL_ROOT:'../../',
891 VERSION:'3.8.0-beta1',
891 VERSION:'3.8.0-beta2',
892892 COLLAPSE_INDEX:false,
893893 FILE_SUFFIX:'.html',
894894 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP Server: Hacking &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP Server: Hacking &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Developer Guidance" href="../guidance.html"/>
4141 <link rel="next" title="Cyrus IMAP Server: Internationalization" href="internationalization.html"/>
4242 <link rel="prev" title="Developer Guidance" href="../guidance.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../developers.html">Developers</a> &raquo;</li>
772772
12051205 <script type="text/javascript">
12061206 var DOCUMENTATION_OPTIONS = {
12071207 URL_ROOT:'../../../',
1208 VERSION:'3.8.0-beta1',
1208 VERSION:'3.8.0-beta2',
12091209 COLLAPSE_INDEX:false,
12101210 FILE_SUFFIX:'.html',
12111211 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP Server: Internationalization &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP Server: Internationalization &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Developer Guidance" href="../guidance.html"/>
4141 <link rel="next" title="Cyrus IMAP Server: Locking" href="locking.html"/>
4242 <link rel="prev" title="Cyrus IMAP Server: Hacking" href="hacking.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../developers.html">Developers</a> &raquo;</li>
772772
11761176 <script type="text/javascript">
11771177 var DOCUMENTATION_OPTIONS = {
11781178 URL_ROOT:'../../../',
1179 VERSION:'3.8.0-beta1',
1179 VERSION:'3.8.0-beta2',
11801180 COLLAPSE_INDEX:false,
11811181 FILE_SUFFIX:'.html',
11821182 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP Server: Locking &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP Server: Locking &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Developer Guidance" href="../guidance.html"/>
4141 <link rel="next" title="Cyrus IMAP Server: Mailbox File Formats" href="mailbox-format.html"/>
4242 <link rel="prev" title="Cyrus IMAP Server: Internationalization" href="internationalization.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../developers.html">Developers</a> &raquo;</li>
772772
907907 <script type="text/javascript">
908908 var DOCUMENTATION_OPTIONS = {
909909 URL_ROOT:'../../../',
910 VERSION:'3.8.0-beta1',
910 VERSION:'3.8.0-beta2',
911911 COLLAPSE_INDEX:false,
912912 FILE_SUFFIX:'.html',
913913 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP Server: Mailbox File Formats &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP Server: Mailbox File Formats &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Developer Guidance" href="../guidance.html"/>
4141 <link rel="next" title="Cyrus IMAP Server: Namelocks" href="namelocks.html"/>
4242 <link rel="prev" title="Cyrus IMAP Server: Locking" href="locking.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../developers.html">Developers</a> &raquo;</li>
772772
12781278 <script type="text/javascript">
12791279 var DOCUMENTATION_OPTIONS = {
12801280 URL_ROOT:'../../../',
1281 VERSION:'3.8.0-beta1',
1281 VERSION:'3.8.0-beta2',
12821282 COLLAPSE_INDEX:false,
12831283 FILE_SUFFIX:'.html',
12841284 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP Server: Namelocks &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP Server: Namelocks &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Developer Guidance" href="../guidance.html"/>
4141 <link rel="next" title="Cyrus IMAP Server: prot layer" href="prot.html"/>
4242 <link rel="prev" title="Cyrus IMAP Server: Mailbox File Formats" href="mailbox-format.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../developers.html">Developers</a> &raquo;</li>
772772
910910 <script type="text/javascript">
911911 var DOCUMENTATION_OPTIONS = {
912912 URL_ROOT:'../../../',
913 VERSION:'3.8.0-beta1',
913 VERSION:'3.8.0-beta2',
914914 COLLAPSE_INDEX:false,
915915 FILE_SUFFIX:'.html',
916916 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP Server: prot layer &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP Server: prot layer &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Developer Guidance" href="../guidance.html"/>
4141 <link rel="next" title="Cyrus IMAP Server: Replication Examples" href="replication_examples.html"/>
4242 <link rel="prev" title="Cyrus IMAP Server: Namelocks" href="namelocks.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../developers.html">Developers</a> &raquo;</li>
772772
891891 <script type="text/javascript">
892892 var DOCUMENTATION_OPTIONS = {
893893 URL_ROOT:'../../../',
894 VERSION:'3.8.0-beta1',
894 VERSION:'3.8.0-beta2',
895895 COLLAPSE_INDEX:false,
896896 FILE_SUFFIX:'.html',
897897 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP Server: Replication Examples &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP Server: Replication Examples &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Developer Guidance" href="../guidance.html"/>
4141 <link rel="next" title="Cyrus IMAP Server: Replication Protocol v2.4+" href="replication_protocol.html"/>
4242 <link rel="prev" title="Cyrus IMAP Server: prot layer" href="prot.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../developers.html">Developers</a> &raquo;</li>
772772
978978 <script type="text/javascript">
979979 var DOCUMENTATION_OPTIONS = {
980980 URL_ROOT:'../../../',
981 VERSION:'3.8.0-beta1',
981 VERSION:'3.8.0-beta2',
982982 COLLAPSE_INDEX:false,
983983 FILE_SUFFIX:'.html',
984984 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP Server: Replication Protocol v2.4+ &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP Server: Replication Protocol v2.4+ &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Developer Guidance" href="../guidance.html"/>
4141 <link rel="next" title="Cyrus IMAP Server: Special Characters" href="special_chars.html"/>
4242 <link rel="prev" title="Cyrus IMAP Server: Replication Examples" href="replication_examples.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../developers.html">Developers</a> &raquo;</li>
772772
891891 <script type="text/javascript">
892892 var DOCUMENTATION_OPTIONS = {
893893 URL_ROOT:'../../../',
894 VERSION:'3.8.0-beta1',
894 VERSION:'3.8.0-beta2',
895895 COLLAPSE_INDEX:false,
896896 FILE_SUFFIX:'.html',
897897 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP Server: Special Characters &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP Server: Special Characters &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Developer Guidance" href="../guidance.html"/>
4141 <link rel="next" title="Cyrus IMAP Server: var directory structure" href="var_directory_structure.html"/>
4242 <link rel="prev" title="Cyrus IMAP Server: Replication Protocol v2.4+" href="replication_protocol.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../developers.html">Developers</a> &raquo;</li>
772772
882882 <script type="text/javascript">
883883 var DOCUMENTATION_OPTIONS = {
884884 URL_ROOT:'../../../',
885 VERSION:'3.8.0-beta1',
885 VERSION:'3.8.0-beta2',
886886 COLLAPSE_INDEX:false,
887887 FILE_SUFFIX:'.html',
888888 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP Server: var directory structure &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP Server: var directory structure &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Developer Guidance" href="../guidance.html"/>
4141 <link rel="next" title="Unit Tests" href="../unit-tests.html"/>
4242 <link rel="prev" title="Cyrus IMAP Server: Special Characters" href="special_chars.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../developers.html">Developers</a> &raquo;</li>
772772
891891 <script type="text/javascript">
892892 var DOCUMENTATION_OPTIONS = {
893893 URL_ROOT:'../../../',
894 VERSION:'3.8.0-beta1',
894 VERSION:'3.8.0-beta2',
895895 COLLAPSE_INDEX:false,
896896 FILE_SUFFIX:'.html',
897897 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Developer Guidance &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Developer Guidance &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../index.html"/>
4040 <link rel="up" title="Developers" href="../../developers.html"/>
4141 <link rel="next" title="Cyrus IMAP Server: Hacking" href="guidance/hacking.html"/>
4242 <link rel="prev" title="Cyrus IMAP Server: Prot Events" href="thoughts/prot-events.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../developers.html">Developers</a> &raquo;</li>
772772
839839 <script type="text/javascript">
840840 var DOCUMENTATION_OPTIONS = {
841841 URL_ROOT:'../../',
842 VERSION:'3.8.0-beta1',
842 VERSION:'3.8.0-beta2',
843843 COLLAPSE_INDEX:false,
844844 FILE_SUFFIX:'.html',
845845 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Xapian for searching &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Xapian for searching &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../index.html"/>
4040 <link rel="up" title="IMAP Developer Guide" href="../developer.html"/>
4141 <link rel="next" title="Namespaces: a developer view" href="namespaces.html"/>
4242 <link rel="prev" title="JMAP support" href="jmap.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../developers.html">Developers</a> &raquo;</li>
772772
890890 <script type="text/javascript">
891891 var DOCUMENTATION_OPTIONS = {
892892 URL_ROOT:'../../',
893 VERSION:'3.8.0-beta1',
893 VERSION:'3.8.0-beta2',
894894 COLLAPSE_INDEX:false,
895895 FILE_SUFFIX:'.html',
896896 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>JMAP support &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>JMAP support &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../index.html"/>
4040 <link rel="up" title="IMAP Developer Guide" href="../developer.html"/>
4141 <link rel="next" title="Xapian for searching" href="install-xapian.html"/>
4242 <link rel="prev" title="Developer Test Environment" href="developer-testing.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../developers.html">Developers</a> &raquo;</li>
772772
960960 <script type="text/javascript">
961961 var DOCUMENTATION_OPTIONS = {
962962 URL_ROOT:'../../',
963 VERSION:'3.8.0-beta1',
963 VERSION:'3.8.0-beta2',
964964 COLLAPSE_INDEX:false,
965965 FILE_SUFFIX:'.html',
966966 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>imclient library &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>imclient library &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Developer Libraries" href="../libraries.html"/>
4141 <link rel="next" title="Releasing Cyrus IMAP" href="../releasing.html"/>
4242 <link rel="prev" title="Developer Libraries" href="../libraries.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../developers.html">Developers</a> &raquo;</li>
772772
10801080 <script type="text/javascript">
10811081 var DOCUMENTATION_OPTIONS = {
10821082 URL_ROOT:'../../../',
1083 VERSION:'3.8.0-beta1',
1083 VERSION:'3.8.0-beta2',
10841084 COLLAPSE_INDEX:false,
10851085 FILE_SUFFIX:'.html',
10861086 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Developer Libraries &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Developer Libraries &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../index.html"/>
4040 <link rel="up" title="IMAP Developer Guide" href="../developer.html"/>
4141 <link rel="next" title="imclient library" href="libraries/imclient.html"/>
4242 <link rel="prev" title="Namespaces: a developer view" href="namespaces.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../developers.html">Developers</a> &raquo;</li>
772772
835835 <script type="text/javascript">
836836 var DOCUMENTATION_OPTIONS = {
837837 URL_ROOT:'../../',
838 VERSION:'3.8.0-beta1',
838 VERSION:'3.8.0-beta2',
839839 COLLAPSE_INDEX:false,
840840 FILE_SUFFIX:'.html',
841841 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Namespaces: a developer view &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Namespaces: a developer view &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../index.html"/>
4040 <link rel="up" title="IMAP Developer Guide" href="../developer.html"/>
4141 <link rel="next" title="Developer Libraries" href="libraries.html"/>
4242 <link rel="prev" title="Xapian for searching" href="install-xapian.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../developers.html">Developers</a> &raquo;</li>
772772
840840 <script type="text/javascript">
841841 var DOCUMENTATION_OPTIONS = {
842842 URL_ROOT:'../../',
843 VERSION:'3.8.0-beta1',
843 VERSION:'3.8.0-beta2',
844844 COLLAPSE_INDEX:false,
845845 FILE_SUFFIX:'.html',
846846 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Overview of Cyrus development environment &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Overview of Cyrus development environment &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../index.html"/>
4040 <link rel="up" title="IMAP Developer Guide" href="../developer.html"/>
4141 <link rel="next" title="GitHub guide" href="github-guide.html"/>
4242 <link rel="prev" title="Development Process" href="process.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../developers.html">Developers</a> &raquo;</li>
772772
873873 <script type="text/javascript">
874874 var DOCUMENTATION_OPTIONS = {
875875 URL_ROOT:'../../',
876 VERSION:'3.8.0-beta1',
876 VERSION:'3.8.0-beta2',
877877 COLLAPSE_INDEX:false,
878878 FILE_SUFFIX:'.html',
879879 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Development Process &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Development Process &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../index.html"/>
4040 <link rel="up" title="IMAP Developer Guide" href="../developer.html"/>
4141 <link rel="next" title="Overview of Cyrus development environment" href="overview.html"/>
4242 <link rel="prev" title="IMAP Developer Guide" href="../developer.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../developers.html">Developers</a> &raquo;</li>
772772
882882 <script type="text/javascript">
883883 var DOCUMENTATION_OPTIONS = {
884884 URL_ROOT:'../../',
885 VERSION:'3.8.0-beta1',
885 VERSION:'3.8.0-beta2',
886886 COLLAPSE_INDEX:false,
887887 FILE_SUFFIX:'.html',
888888 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Releasing Cyrus IMAP &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Releasing Cyrus IMAP &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../index.html"/>
4040 <link rel="up" title="IMAP Developer Guide" href="../developer.html"/>
4141 <link rel="next" title="Releasing new builds of ancient Cyrus IMAP versions" href="ancient-releasing.html"/>
4242 <link rel="prev" title="imclient library" href="libraries/imclient.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../developers.html">Developers</a> &raquo;</li>
772772
10351035 <script type="text/javascript">
10361036 var DOCUMENTATION_OPTIONS = {
10371037 URL_ROOT:'../../',
1038 VERSION:'3.8.0-beta1',
1038 VERSION:'3.8.0-beta2',
10391039 COLLAPSE_INDEX:false,
10401040 FILE_SUFFIX:'.html',
10411041 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Notes for backup implementation &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Notes for backup implementation &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Developer Thoughts &amp; Notes" href="../thoughts.html"/>
4141 <link rel="next" title="Cyrus IMAP Server: Sieve Bytecode" href="bytecode.html"/>
4242 <link rel="prev" title="Developer Thoughts &amp; Notes" href="../thoughts.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../developers.html">Developers</a> &raquo;</li>
772772
17731773 <script type="text/javascript">
17741774 var DOCUMENTATION_OPTIONS = {
17751775 URL_ROOT:'../../../',
1776 VERSION:'3.8.0-beta1',
1776 VERSION:'3.8.0-beta2',
17771777 COLLAPSE_INDEX:false,
17781778 FILE_SUFFIX:'.html',
17791779 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP Server: Sieve Bytecode &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP Server: Sieve Bytecode &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Developer Thoughts &amp; Notes" href="../thoughts.html"/>
4141 <link rel="next" title="Cyrus CalDAV Scheduling Flowchart" href="caldav_scheduling_flowchart.html"/>
4242 <link rel="prev" title="Notes for backup implementation" href="backup.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../developers.html">Developers</a> &raquo;</li>
772772
947947 <script type="text/javascript">
948948 var DOCUMENTATION_OPTIONS = {
949949 URL_ROOT:'../../../',
950 VERSION:'3.8.0-beta1',
950 VERSION:'3.8.0-beta2',
951951 COLLAPSE_INDEX:false,
952952 FILE_SUFFIX:'.html',
953953 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus CalDAV Scheduling Flowchart &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus CalDAV Scheduling Flowchart &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Developer Thoughts &amp; Notes" href="../thoughts.html"/>
4141 <link rel="next" title="Enabling improved_mboxlist_sort" href="improved_mboxlist_sort.html"/>
4242 <link rel="prev" title="Cyrus IMAP Server: Sieve Bytecode" href="bytecode.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../developers.html">Developers</a> &raquo;</li>
772772
11651165 <script type="text/javascript">
11661166 var DOCUMENTATION_OPTIONS = {
11671167 URL_ROOT:'../../../',
1168 VERSION:'3.8.0-beta1',
1168 VERSION:'3.8.0-beta2',
11691169 COLLAPSE_INDEX:false,
11701170 FILE_SUFFIX:'.html',
11711171 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Enabling improved_mboxlist_sort &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Enabling improved_mboxlist_sort &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Developer Thoughts &amp; Notes" href="../thoughts.html"/>
4141 <link rel="next" title="Cyrus IMAP Server: Notes" href="notes.html"/>
4242 <link rel="prev" title="Cyrus CalDAV Scheduling Flowchart" href="caldav_scheduling_flowchart.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../developers.html">Developers</a> &raquo;</li>
772772
847847 <script type="text/javascript">
848848 var DOCUMENTATION_OPTIONS = {
849849 URL_ROOT:'../../../',
850 VERSION:'3.8.0-beta1',
850 VERSION:'3.8.0-beta2',
851851 COLLAPSE_INDEX:false,
852852 FILE_SUFFIX:'.html',
853853 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP Server: Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP Server: Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Developer Thoughts &amp; Notes" href="../thoughts.html"/>
4141 <link rel="next" title="Cyrus IMAP Server: Prot Events" href="prot-events.html"/>
4242 <link rel="prev" title="Enabling improved_mboxlist_sort" href="improved_mboxlist_sort.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../developers.html">Developers</a> &raquo;</li>
772772
841841 <script type="text/javascript">
842842 var DOCUMENTATION_OPTIONS = {
843843 URL_ROOT:'../../../',
844 VERSION:'3.8.0-beta1',
844 VERSION:'3.8.0-beta2',
845845 COLLAPSE_INDEX:false,
846846 FILE_SUFFIX:'.html',
847847 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP Server: Prot Events &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP Server: Prot Events &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Developer Thoughts &amp; Notes" href="../thoughts.html"/>
4141 <link rel="next" title="Developer Guidance" href="../guidance.html"/>
4242 <link rel="prev" title="Cyrus IMAP Server: Notes" href="notes.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../developers.html">Developers</a> &raquo;</li>
772772
875875 <script type="text/javascript">
876876 var DOCUMENTATION_OPTIONS = {
877877 URL_ROOT:'../../../',
878 VERSION:'3.8.0-beta1',
878 VERSION:'3.8.0-beta2',
879879 COLLAPSE_INDEX:false,
880880 FILE_SUFFIX:'.html',
881881 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Developer Thoughts &amp; Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Developer Thoughts &amp; Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../index.html"/>
4040 <link rel="up" title="Developers" href="../../developers.html"/>
4141 <link rel="next" title="Notes for backup implementation" href="thoughts/backup.html"/>
4242 <link rel="prev" title="Mailbox API" href="API/mailbox-api.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../developers.html">Developers</a> &raquo;</li>
772772
835835 <script type="text/javascript">
836836 var DOCUMENTATION_OPTIONS = {
837837 URL_ROOT:'../../',
838 VERSION:'3.8.0-beta1',
838 VERSION:'3.8.0-beta2',
839839 COLLAPSE_INDEX:false,
840840 FILE_SUFFIX:'.html',
841841 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Unit Tests &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Unit Tests &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../index.html"/>
4040 <link rel="up" title="Developers" href="../../developers.html"/>
4141 <link rel="next" title="Support/Community" href="../../support.html"/>
4242 <link rel="prev" title="Cyrus IMAP Server: var directory structure" href="guidance/var_directory_structure.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../developers.html">Developers</a> &raquo;</li>
772772
13721372 <script type="text/javascript">
13731373 var DOCUMENTATION_OPTIONS = {
13741374 URL_ROOT:'../../',
1375 VERSION:'3.8.0-beta1',
1375 VERSION:'3.8.0-beta2',
13761376 COLLAPSE_INDEX:false,
13771377 FILE_SUFFIX:'.html',
13781378 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>IMAP Developer Guide &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>IMAP Developer Guide &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../genindex.html"/>
3838 <link rel="search" title="Search" href="../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../index.html"/>
4040 <link rel="up" title="Developers" href="../developers.html"/>
4141 <link rel="next" title="Development Process" href="developer/process.html"/>
4242 <link rel="prev" title="Documentation" href="developer/documentation.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../developers.html">Developers</a> &raquo;</li>
772772
886886 <script type="text/javascript">
887887 var DOCUMENTATION_OPTIONS = {
888888 URL_ROOT:'../',
889 VERSION:'3.8.0-beta1',
889 VERSION:'3.8.0-beta2',
890890 COLLAPSE_INDEX:false,
891891 FILE_SUFFIX:'.html',
892892 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Get Cyrus &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Get Cyrus &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../index.html"/>
4040 <link rel="up" title="Download" href="../../download.html"/>
4141 <link rel="next" title="CentOS" href="installation/distributions/centos.html"/>
4242 <link rel="prev" title="Download" href="../../download.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../download.html">Download</a> &raquo;</li>
772772
810810 <p>The Cyrus team produce packaged tarballs containing full source and
811811 pre-built documentation.</p>
812812 <p>Download a versioned tarball using <a class="reference external" href="https://github.com/cyrusimap/cyrus-imapd/releases">HTTPS</a>. Latest stable
813 version is 3.8.0-beta1.</p>
813 version is 3.8.0-beta2.</p>
814814 <p>Extract the tarball:</p>
815815 <pre class="literal-block">$ <strong class="command">tar xzvf cyrus-imapd-x.y.z.tar.gz</strong></pre>
816816 </div>
918918 <script type="text/javascript">
919919 var DOCUMENTATION_OPTIONS = {
920920 URL_ROOT:'../../',
921 VERSION:'3.8.0-beta1',
921 VERSION:'3.8.0-beta2',
922922 COLLAPSE_INDEX:false,
923923 FILE_SUFFIX:'.html',
924924 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>CentOS &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>CentOS &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Get Cyrus" href="../../getcyrus.html"/>
4141 <link rel="next" title="Debian" href="debian.html"/>
4242 <link rel="prev" title="Get Cyrus" href="../../getcyrus.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../download.html">Download</a> &raquo;</li>
772772
885885 <script type="text/javascript">
886886 var DOCUMENTATION_OPTIONS = {
887887 URL_ROOT:'../../../../',
888 VERSION:'3.8.0-beta1',
888 VERSION:'3.8.0-beta2',
889889 COLLAPSE_INDEX:false,
890890 FILE_SUFFIX:'.html',
891891 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Debian &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Debian &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Get Cyrus" href="../../getcyrus.html"/>
4141 <link rel="next" title="Fedora" href="fedora.html"/>
4242 <link rel="prev" title="CentOS" href="centos.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../download.html">Download</a> &raquo;</li>
772772
881881 <script type="text/javascript">
882882 var DOCUMENTATION_OPTIONS = {
883883 URL_ROOT:'../../../../',
884 VERSION:'3.8.0-beta1',
884 VERSION:'3.8.0-beta2',
885885 COLLAPSE_INDEX:false,
886886 FILE_SUFFIX:'.html',
887887 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Fedora &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Fedora &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Get Cyrus" href="../../getcyrus.html"/>
4141 <link rel="next" title="openSUSE" href="opensuse.html"/>
4242 <link rel="prev" title="Debian" href="debian.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../download.html">Download</a> &raquo;</li>
772772
890890 <script type="text/javascript">
891891 var DOCUMENTATION_OPTIONS = {
892892 URL_ROOT:'../../../../',
893 VERSION:'3.8.0-beta1',
893 VERSION:'3.8.0-beta2',
894894 COLLAPSE_INDEX:false,
895895 FILE_SUFFIX:'.html',
896896 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>openSUSE &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>openSUSE &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Get Cyrus" href="../../getcyrus.html"/>
4141 <link rel="next" title="Red Hat Enterprise Linux" href="rhel.html"/>
4242 <link rel="prev" title="Fedora" href="fedora.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../download.html">Download</a> &raquo;</li>
772772
839839 <script type="text/javascript">
840840 var DOCUMENTATION_OPTIONS = {
841841 URL_ROOT:'../../../../',
842 VERSION:'3.8.0-beta1',
842 VERSION:'3.8.0-beta2',
843843 COLLAPSE_INDEX:false,
844844 FILE_SUFFIX:'.html',
845845 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Red Hat Enterprise Linux &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Red Hat Enterprise Linux &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Get Cyrus" href="../../getcyrus.html"/>
4141 <link rel="next" title="Ubuntu" href="ubuntu.html"/>
4242 <link rel="prev" title="openSUSE" href="opensuse.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../download.html">Download</a> &raquo;</li>
772772
891891 <script type="text/javascript">
892892 var DOCUMENTATION_OPTIONS = {
893893 URL_ROOT:'../../../../',
894 VERSION:'3.8.0-beta1',
894 VERSION:'3.8.0-beta2',
895895 COLLAPSE_INDEX:false,
896896 FILE_SUFFIX:'.html',
897897 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Ubuntu &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Ubuntu &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Get Cyrus" href="../../getcyrus.html"/>
4141 <link rel="next" title="Release Notes" href="../../release-notes/index.html"/>
4242 <link rel="prev" title="Red Hat Enterprise Linux" href="rhel.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../download.html">Download</a> &raquo;</li>
772772
10061006 <script type="text/javascript">
10071007 var DOCUMENTATION_OPTIONS = {
10081008 URL_ROOT:'../../../../',
1009 VERSION:'3.8.0-beta1',
1009 VERSION:'3.8.0-beta2',
10101010 COLLAPSE_INDEX:false,
10111011 FILE_SUFFIX:'.html',
10121012 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>CalDAV &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>CalDAV &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="HTTP modules" href="../manage-dav.html"/>
4141 <link rel="next" title="CardDAV" href="carddav.html"/>
4242 <link rel="prev" title="HTTP modules" href="../manage-dav.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../setup.html">Setup</a> &raquo;</li>
772772
13041304 <script type="text/javascript">
13051305 var DOCUMENTATION_OPTIONS = {
13061306 URL_ROOT:'../../../../',
1307 VERSION:'3.8.0-beta1',
1307 VERSION:'3.8.0-beta2',
13081308 COLLAPSE_INDEX:false,
13091309 FILE_SUFFIX:'.html',
13101310 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>CardDAV &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>CardDAV &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="HTTP modules" href="../manage-dav.html"/>
4141 <link rel="next" title="WebDAV" href="webdav.html"/>
4242 <link rel="prev" title="CalDAV" href="caldav.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../setup.html">Setup</a> &raquo;</li>
772772
903903 <script type="text/javascript">
904904 var DOCUMENTATION_OPTIONS = {
905905 URL_ROOT:'../../../../',
906 VERSION:'3.8.0-beta1',
906 VERSION:'3.8.0-beta2',
907907 COLLAPSE_INDEX:false,
908908 FILE_SUFFIX:'.html',
909909 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>JMAP &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>JMAP &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="HTTP modules" href="../manage-dav.html"/>
4141 <link rel="next" title="RSS Feeds" href="rss.html"/>
4242 <link rel="prev" title="WebDAV" href="webdav.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../setup.html">Setup</a> &raquo;</li>
772772
913913 <script type="text/javascript">
914914 var DOCUMENTATION_OPTIONS = {
915915 URL_ROOT:'../../../../',
916 VERSION:'3.8.0-beta1',
916 VERSION:'3.8.0-beta2',
917917 COLLAPSE_INDEX:false,
918918 FILE_SUFFIX:'.html',
919919 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>RSS Feeds &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>RSS Feeds &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="HTTP modules" href="../manage-dav.html"/>
4141 <link rel="next" title="Virus Scanner" href="../virus.html"/>
4242 <link rel="prev" title="JMAP" href="jmap.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../setup.html">Setup</a> &raquo;</li>
772772
909909 <script type="text/javascript">
910910 var DOCUMENTATION_OPTIONS = {
911911 URL_ROOT:'../../../../',
912 VERSION:'3.8.0-beta1',
912 VERSION:'3.8.0-beta2',
913913 COLLAPSE_INDEX:false,
914914 FILE_SUFFIX:'.html',
915915 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>WebDAV &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>WebDAV &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="HTTP modules" href="../manage-dav.html"/>
4141 <link rel="next" title="JMAP" href="jmap.html"/>
4242 <link rel="prev" title="CardDAV" href="carddav.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../setup.html">Setup</a> &raquo;</li>
772772
882882 <script type="text/javascript">
883883 var DOCUMENTATION_OPTIONS = {
884884 URL_ROOT:'../../../../',
885 VERSION:'3.8.0-beta1',
885 VERSION:'3.8.0-beta2',
886886 COLLAPSE_INDEX:false,
887887 FILE_SUFFIX:'.html',
888888 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>HTTP modules &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>HTTP modules &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Installing Cyrus" href="../../installing.html"/>
4141 <link rel="next" title="CalDAV" href="http/caldav.html"/>
4242 <link rel="prev" title="Installing Cyrus" href="../../installing.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../setup.html">Setup</a> &raquo;</li>
772772
10351035 <script type="text/javascript">
10361036 var DOCUMENTATION_OPTIONS = {
10371037 URL_ROOT:'../../../',
1038 VERSION:'3.8.0-beta1',
1038 VERSION:'3.8.0-beta2',
10391039 COLLAPSE_INDEX:false,
10401040 FILE_SUFFIX:'.html',
10411041 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Configuring the MTA &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Configuring the MTA &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040
4141
4242
763763
764764 <div role="navigation" aria-label="breadcrumbs navigation">
765765 <ul class="wy-breadcrumbs">
766 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
766 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
767767
768768 <li>Configuring the MTA</li>
769769 <li class="wy-breadcrumbs-aside">
815815 <script type="text/javascript">
816816 var DOCUMENTATION_OPTIONS = {
817817 URL_ROOT:'../../../../',
818 VERSION:'3.8.0-beta1',
818 VERSION:'3.8.0-beta2',
819819 COLLAPSE_INDEX:false,
820820 FILE_SUFFIX:'.html',
821821 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Virus Scanner &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Virus Scanner &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Installing Cyrus" href="../../installing.html"/>
4141 <link rel="next" title="Upgrading to 3.8" href="../upgrade.html"/>
4242 <link rel="prev" title="RSS Feeds" href="http/rss.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../setup.html">Setup</a> &raquo;</li>
772772
856856 <script type="text/javascript">
857857 var DOCUMENTATION_OPTIONS = {
858858 URL_ROOT:'../../../',
859 VERSION:'3.8.0-beta1',
859 VERSION:'3.8.0-beta2',
860860 COLLAPSE_INDEX:false,
861861 FILE_SUFFIX:'.html',
862862 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Notes for Packagers &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Notes for Packagers &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../index.html"/>
4040 <link rel="up" title="Download" href="../../download.html"/>
4141 <link rel="next" title="Quickstart Guide" href="../../quickstart.html"/>
4242 <link rel="prev" title="Cyrus IMAP 2.4.17-caldav-beta11 Release Notes" href="release-notes/2.4-dav/x/2.4.17-caldav-beta11.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../download.html">Download</a> &raquo;</li>
772772
971971 <script type="text/javascript">
972972 var DOCUMENTATION_OPTIONS = {
973973 URL_ROOT:'../../',
974 VERSION:'3.8.0-beta1',
974 VERSION:'3.8.0-beta2',
975975 COLLAPSE_INDEX:false,
976976 FILE_SUFFIX:'.html',
977977 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 1.x Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 1.x Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Release Notes" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 2.0.x Release Notes" href="../2.0/2.0.x.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.1.9 Tag Notes" href="../3.1/x/3.1.9.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../download.html">Download</a> &raquo;</li>
772772
11531153 <script type="text/javascript">
11541154 var DOCUMENTATION_OPTIONS = {
11551155 URL_ROOT:'../../../../',
1156 VERSION:'3.8.0-beta1',
1156 VERSION:'3.8.0-beta2',
11571157 COLLAPSE_INDEX:false,
11581158 FILE_SUFFIX:'.html',
11591159 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 2.0.x Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 2.0.x Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Release Notes" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 2.1.x Release Notes" href="../2.1/2.1.x.html"/>
4242 <link rel="prev" title="Cyrus IMAP 1.x Release Notes" href="../1/1.x.x.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../download.html">Download</a> &raquo;</li>
772772
10171017 <script type="text/javascript">
10181018 var DOCUMENTATION_OPTIONS = {
10191019 URL_ROOT:'../../../../',
1020 VERSION:'3.8.0-beta1',
1020 VERSION:'3.8.0-beta2',
10211021 COLLAPSE_INDEX:false,
10221022 FILE_SUFFIX:'.html',
10231023 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 2.1.x Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 2.1.x Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Release Notes" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 2.2.x Release Notes" href="../2.2/2.2.x.html"/>
4242 <link rel="prev" title="Cyrus IMAP 2.0.x Release Notes" href="../2.0/2.0.x.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../download.html">Download</a> &raquo;</li>
772772
993993 <script type="text/javascript">
994994 var DOCUMENTATION_OPTIONS = {
995995 URL_ROOT:'../../../../',
996 VERSION:'3.8.0-beta1',
996 VERSION:'3.8.0-beta2',
997997 COLLAPSE_INDEX:false,
998998 FILE_SUFFIX:'.html',
999999 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 2.2.x Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 2.2.x Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Release Notes" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 2.3 Releases" href="../2.3/index.html"/>
4242 <link rel="prev" title="Cyrus IMAP 2.1.x Release Notes" href="../2.1/2.1.x.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../download.html">Download</a> &raquo;</li>
772772
984984 <script type="text/javascript">
985985 var DOCUMENTATION_OPTIONS = {
986986 URL_ROOT:'../../../../',
987 VERSION:'3.8.0-beta1',
987 VERSION:'3.8.0-beta2',
988988 COLLAPSE_INDEX:false,
989989 FILE_SUFFIX:'.html',
990990 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 2.3 Releases &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 2.3 Releases &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Release Notes" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 2.3.0 Release Notes" href="x/2.3.0.html"/>
4242 <link rel="prev" title="Cyrus IMAP 2.2.x Release Notes" href="../2.2/2.2.x.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../download.html">Download</a> &raquo;</li>
772772
852852 <script type="text/javascript">
853853 var DOCUMENTATION_OPTIONS = {
854854 URL_ROOT:'../../../../',
855 VERSION:'3.8.0-beta1',
855 VERSION:'3.8.0-beta2',
856856 COLLAPSE_INDEX:false,
857857 FILE_SUFFIX:'.html',
858858 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 2.3.0 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 2.3.0 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 2.3 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 2.3.1 Release Notes" href="2.3.1.html"/>
4242 <link rel="prev" title="Cyrus IMAP 2.3 Releases" href="../index.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
850850 <script type="text/javascript">
851851 var DOCUMENTATION_OPTIONS = {
852852 URL_ROOT:'../../../../../',
853 VERSION:'3.8.0-beta1',
853 VERSION:'3.8.0-beta2',
854854 COLLAPSE_INDEX:false,
855855 FILE_SUFFIX:'.html',
856856 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 2.3.1 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 2.3.1 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 2.3 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 2.3.2 Release Notes" href="2.3.2.html"/>
4242 <link rel="prev" title="Cyrus IMAP 2.3.0 Release Notes" href="2.3.0.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
836836 <script type="text/javascript">
837837 var DOCUMENTATION_OPTIONS = {
838838 URL_ROOT:'../../../../../',
839 VERSION:'3.8.0-beta1',
839 VERSION:'3.8.0-beta2',
840840 COLLAPSE_INDEX:false,
841841 FILE_SUFFIX:'.html',
842842 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 2.3.10 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 2.3.10 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 2.3 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 2.3.11 Release Notes" href="2.3.11.html"/>
4242 <link rel="prev" title="Cyrus IMAP 2.3.9 Release Notes" href="2.3.9.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
846846 <script type="text/javascript">
847847 var DOCUMENTATION_OPTIONS = {
848848 URL_ROOT:'../../../../../',
849 VERSION:'3.8.0-beta1',
849 VERSION:'3.8.0-beta2',
850850 COLLAPSE_INDEX:false,
851851 FILE_SUFFIX:'.html',
852852 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 2.3.11 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 2.3.11 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 2.3 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 2.3.12 Release Notes" href="2.3.12.html"/>
4242 <link rel="prev" title="Cyrus IMAP 2.3.10 Release Notes" href="2.3.10.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
845845 <script type="text/javascript">
846846 var DOCUMENTATION_OPTIONS = {
847847 URL_ROOT:'../../../../../',
848 VERSION:'3.8.0-beta1',
848 VERSION:'3.8.0-beta2',
849849 COLLAPSE_INDEX:false,
850850 FILE_SUFFIX:'.html',
851851 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 2.3.12 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 2.3.12 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 2.3 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 2.3.13 Release Notes" href="2.3.13.html"/>
4242 <link rel="prev" title="Cyrus IMAP 2.3.11 Release Notes" href="2.3.11.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
845845 <script type="text/javascript">
846846 var DOCUMENTATION_OPTIONS = {
847847 URL_ROOT:'../../../../../',
848 VERSION:'3.8.0-beta1',
848 VERSION:'3.8.0-beta2',
849849 COLLAPSE_INDEX:false,
850850 FILE_SUFFIX:'.html',
851851 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 2.3.13 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 2.3.13 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 2.3 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 2.3.14 Release Notes" href="2.3.14.html"/>
4242 <link rel="prev" title="Cyrus IMAP 2.3.12 Release Notes" href="2.3.12.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
845845 <script type="text/javascript">
846846 var DOCUMENTATION_OPTIONS = {
847847 URL_ROOT:'../../../../../',
848 VERSION:'3.8.0-beta1',
848 VERSION:'3.8.0-beta2',
849849 COLLAPSE_INDEX:false,
850850 FILE_SUFFIX:'.html',
851851 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 2.3.14 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 2.3.14 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 2.3 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 2.3.15 Release Notes" href="2.3.15.html"/>
4242 <link rel="prev" title="Cyrus IMAP 2.3.13 Release Notes" href="2.3.13.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
848848 <script type="text/javascript">
849849 var DOCUMENTATION_OPTIONS = {
850850 URL_ROOT:'../../../../../',
851 VERSION:'3.8.0-beta1',
851 VERSION:'3.8.0-beta2',
852852 COLLAPSE_INDEX:false,
853853 FILE_SUFFIX:'.html',
854854 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 2.3.15 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 2.3.15 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 2.3 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 2.3.16 Release Notes" href="2.3.16.html"/>
4242 <link rel="prev" title="Cyrus IMAP 2.3.14 Release Notes" href="2.3.14.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
848848 <script type="text/javascript">
849849 var DOCUMENTATION_OPTIONS = {
850850 URL_ROOT:'../../../../../',
851 VERSION:'3.8.0-beta1',
851 VERSION:'3.8.0-beta2',
852852 COLLAPSE_INDEX:false,
853853 FILE_SUFFIX:'.html',
854854 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 2.3.16 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 2.3.16 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 2.3 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 2.3.17 Release Notes" href="2.3.17.html"/>
4242 <link rel="prev" title="Cyrus IMAP 2.3.15 Release Notes" href="2.3.15.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
845845 <script type="text/javascript">
846846 var DOCUMENTATION_OPTIONS = {
847847 URL_ROOT:'../../../../../',
848 VERSION:'3.8.0-beta1',
848 VERSION:'3.8.0-beta2',
849849 COLLAPSE_INDEX:false,
850850 FILE_SUFFIX:'.html',
851851 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 2.3.17 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 2.3.17 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 2.3 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 2.3.18 Release Notes" href="2.3.18.html"/>
4242 <link rel="prev" title="Cyrus IMAP 2.3.16 Release Notes" href="2.3.16.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
834834 <script type="text/javascript">
835835 var DOCUMENTATION_OPTIONS = {
836836 URL_ROOT:'../../../../../',
837 VERSION:'3.8.0-beta1',
837 VERSION:'3.8.0-beta2',
838838 COLLAPSE_INDEX:false,
839839 FILE_SUFFIX:'.html',
840840 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 2.3.18 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 2.3.18 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 2.3 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 2.3.19 Release Notes" href="2.3.19.html"/>
4242 <link rel="prev" title="Cyrus IMAP 2.3.17 Release Notes" href="2.3.17.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
833833 <script type="text/javascript">
834834 var DOCUMENTATION_OPTIONS = {
835835 URL_ROOT:'../../../../../',
836 VERSION:'3.8.0-beta1',
836 VERSION:'3.8.0-beta2',
837837 COLLAPSE_INDEX:false,
838838 FILE_SUFFIX:'.html',
839839 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 2.3.19 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 2.3.19 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 2.3 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 2.3.20 Release Notes" href="2.3.20.html"/>
4242 <link rel="prev" title="Cyrus IMAP 2.3.18 Release Notes" href="2.3.18.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
838838 <script type="text/javascript">
839839 var DOCUMENTATION_OPTIONS = {
840840 URL_ROOT:'../../../../../',
841 VERSION:'3.8.0-beta1',
841 VERSION:'3.8.0-beta2',
842842 COLLAPSE_INDEX:false,
843843 FILE_SUFFIX:'.html',
844844 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 2.3.2 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 2.3.2 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 2.3 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 2.3.3 Release Notes" href="2.3.3.html"/>
4242 <link rel="prev" title="Cyrus IMAP 2.3.1 Release Notes" href="2.3.1.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
843843 <script type="text/javascript">
844844 var DOCUMENTATION_OPTIONS = {
845845 URL_ROOT:'../../../../../',
846 VERSION:'3.8.0-beta1',
846 VERSION:'3.8.0-beta2',
847847 COLLAPSE_INDEX:false,
848848 FILE_SUFFIX:'.html',
849849 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 2.3.20 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 2.3.20 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 2.3 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 2.4 Releases" href="../../2.4/index.html"/>
4242 <link rel="prev" title="Cyrus IMAP 2.3.19 Release Notes" href="2.3.19.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
835835 <script type="text/javascript">
836836 var DOCUMENTATION_OPTIONS = {
837837 URL_ROOT:'../../../../../',
838 VERSION:'3.8.0-beta1',
838 VERSION:'3.8.0-beta2',
839839 COLLAPSE_INDEX:false,
840840 FILE_SUFFIX:'.html',
841841 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 2.3.3 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 2.3.3 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 2.3 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 2.3.4 Release Notes" href="2.3.4.html"/>
4242 <link rel="prev" title="Cyrus IMAP 2.3.2 Release Notes" href="2.3.2.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
834834 <script type="text/javascript">
835835 var DOCUMENTATION_OPTIONS = {
836836 URL_ROOT:'../../../../../',
837 VERSION:'3.8.0-beta1',
837 VERSION:'3.8.0-beta2',
838838 COLLAPSE_INDEX:false,
839839 FILE_SUFFIX:'.html',
840840 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 2.3.4 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 2.3.4 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 2.3 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 2.3.5 Release Notes" href="2.3.5.html"/>
4242 <link rel="prev" title="Cyrus IMAP 2.3.3 Release Notes" href="2.3.3.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
841841 <script type="text/javascript">
842842 var DOCUMENTATION_OPTIONS = {
843843 URL_ROOT:'../../../../../',
844 VERSION:'3.8.0-beta1',
844 VERSION:'3.8.0-beta2',
845845 COLLAPSE_INDEX:false,
846846 FILE_SUFFIX:'.html',
847847 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 2.3.5 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 2.3.5 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 2.3 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 2.3.6 Release Notes" href="2.3.6.html"/>
4242 <link rel="prev" title="Cyrus IMAP 2.3.4 Release Notes" href="2.3.4.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
834834 <script type="text/javascript">
835835 var DOCUMENTATION_OPTIONS = {
836836 URL_ROOT:'../../../../../',
837 VERSION:'3.8.0-beta1',
837 VERSION:'3.8.0-beta2',
838838 COLLAPSE_INDEX:false,
839839 FILE_SUFFIX:'.html',
840840 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 2.3.6 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 2.3.6 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 2.3 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 2.3.7 Release Notes" href="2.3.7.html"/>
4242 <link rel="prev" title="Cyrus IMAP 2.3.5 Release Notes" href="2.3.5.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
835835 <script type="text/javascript">
836836 var DOCUMENTATION_OPTIONS = {
837837 URL_ROOT:'../../../../../',
838 VERSION:'3.8.0-beta1',
838 VERSION:'3.8.0-beta2',
839839 COLLAPSE_INDEX:false,
840840 FILE_SUFFIX:'.html',
841841 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 2.3.7 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 2.3.7 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 2.3 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 2.3.8 Release Notes" href="2.3.8.html"/>
4242 <link rel="prev" title="Cyrus IMAP 2.3.6 Release Notes" href="2.3.6.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
839839 <script type="text/javascript">
840840 var DOCUMENTATION_OPTIONS = {
841841 URL_ROOT:'../../../../../',
842 VERSION:'3.8.0-beta1',
842 VERSION:'3.8.0-beta2',
843843 COLLAPSE_INDEX:false,
844844 FILE_SUFFIX:'.html',
845845 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 2.3.8 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 2.3.8 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 2.3 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 2.3.9 Release Notes" href="2.3.9.html"/>
4242 <link rel="prev" title="Cyrus IMAP 2.3.7 Release Notes" href="2.3.7.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
844844 <script type="text/javascript">
845845 var DOCUMENTATION_OPTIONS = {
846846 URL_ROOT:'../../../../../',
847 VERSION:'3.8.0-beta1',
847 VERSION:'3.8.0-beta2',
848848 COLLAPSE_INDEX:false,
849849 FILE_SUFFIX:'.html',
850850 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 2.3.9 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 2.3.9 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 2.3 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 2.3.10 Release Notes" href="2.3.10.html"/>
4242 <link rel="prev" title="Cyrus IMAP 2.3.8 Release Notes" href="2.3.8.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
852852 <script type="text/javascript">
853853 var DOCUMENTATION_OPTIONS = {
854854 URL_ROOT:'../../../../../',
855 VERSION:'3.8.0-beta1',
855 VERSION:'3.8.0-beta2',
856856 COLLAPSE_INDEX:false,
857857 FILE_SUFFIX:'.html',
858858 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 2.4 Releases &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 2.4 Releases &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Release Notes" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 2.4.0 Release Notes" href="x/2.4.0.html"/>
4242 <link rel="prev" title="Cyrus IMAP 2.3.20 Release Notes" href="../2.3/x/2.3.20.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../download.html">Download</a> &raquo;</li>
772772
854854 <script type="text/javascript">
855855 var DOCUMENTATION_OPTIONS = {
856856 URL_ROOT:'../../../../',
857 VERSION:'3.8.0-beta1',
857 VERSION:'3.8.0-beta2',
858858 COLLAPSE_INDEX:false,
859859 FILE_SUFFIX:'.html',
860860 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 2.4.0 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 2.4.0 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 2.4 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 2.4.1 Release Notes" href="2.4.1.html"/>
4242 <link rel="prev" title="Cyrus IMAP 2.4 Releases" href="../index.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
848848 <script type="text/javascript">
849849 var DOCUMENTATION_OPTIONS = {
850850 URL_ROOT:'../../../../../',
851 VERSION:'3.8.0-beta1',
851 VERSION:'3.8.0-beta2',
852852 COLLAPSE_INDEX:false,
853853 FILE_SUFFIX:'.html',
854854 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 2.4.1 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 2.4.1 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 2.4 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 2.4.2 Release Notes" href="2.4.2.html"/>
4242 <link rel="prev" title="Cyrus IMAP 2.4.0 Release Notes" href="2.4.0.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
840840 <script type="text/javascript">
841841 var DOCUMENTATION_OPTIONS = {
842842 URL_ROOT:'../../../../../',
843 VERSION:'3.8.0-beta1',
843 VERSION:'3.8.0-beta2',
844844 COLLAPSE_INDEX:false,
845845 FILE_SUFFIX:'.html',
846846 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 2.4.10 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 2.4.10 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 2.4 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 2.4.11 Release Notes" href="2.4.11.html"/>
4242 <link rel="prev" title="Cyrus IMAP 2.4.9 Release Notes" href="2.4.9.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
843843 <script type="text/javascript">
844844 var DOCUMENTATION_OPTIONS = {
845845 URL_ROOT:'../../../../../',
846 VERSION:'3.8.0-beta1',
846 VERSION:'3.8.0-beta2',
847847 COLLAPSE_INDEX:false,
848848 FILE_SUFFIX:'.html',
849849 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 2.4.11 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 2.4.11 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 2.4 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 2.4.12 Release Notes" href="2.4.12.html"/>
4242 <link rel="prev" title="Cyrus IMAP 2.4.10 Release Notes" href="2.4.10.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
852852 <script type="text/javascript">
853853 var DOCUMENTATION_OPTIONS = {
854854 URL_ROOT:'../../../../../',
855 VERSION:'3.8.0-beta1',
855 VERSION:'3.8.0-beta2',
856856 COLLAPSE_INDEX:false,
857857 FILE_SUFFIX:'.html',
858858 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 2.4.12 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 2.4.12 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 2.4 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 2.4.13 Release Notes" href="2.4.13.html"/>
4242 <link rel="prev" title="Cyrus IMAP 2.4.11 Release Notes" href="2.4.11.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
850850 <script type="text/javascript">
851851 var DOCUMENTATION_OPTIONS = {
852852 URL_ROOT:'../../../../../',
853 VERSION:'3.8.0-beta1',
853 VERSION:'3.8.0-beta2',
854854 COLLAPSE_INDEX:false,
855855 FILE_SUFFIX:'.html',
856856 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 2.4.13 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 2.4.13 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 2.4 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 2.4.14 Release Notes" href="2.4.14.html"/>
4242 <link rel="prev" title="Cyrus IMAP 2.4.12 Release Notes" href="2.4.12.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
853853 <script type="text/javascript">
854854 var DOCUMENTATION_OPTIONS = {
855855 URL_ROOT:'../../../../../',
856 VERSION:'3.8.0-beta1',
856 VERSION:'3.8.0-beta2',
857857 COLLAPSE_INDEX:false,
858858 FILE_SUFFIX:'.html',
859859 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 2.4.14 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 2.4.14 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 2.4 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 2.4.15 Release Notes" href="2.4.15.html"/>
4242 <link rel="prev" title="Cyrus IMAP 2.4.13 Release Notes" href="2.4.13.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
852852 <script type="text/javascript">
853853 var DOCUMENTATION_OPTIONS = {
854854 URL_ROOT:'../../../../../',
855 VERSION:'3.8.0-beta1',
855 VERSION:'3.8.0-beta2',
856856 COLLAPSE_INDEX:false,
857857 FILE_SUFFIX:'.html',
858858 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 2.4.15 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 2.4.15 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 2.4 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 2.4.16 Release Notes" href="2.4.16.html"/>
4242 <link rel="prev" title="Cyrus IMAP 2.4.14 Release Notes" href="2.4.14.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
841841 <script type="text/javascript">
842842 var DOCUMENTATION_OPTIONS = {
843843 URL_ROOT:'../../../../../',
844 VERSION:'3.8.0-beta1',
844 VERSION:'3.8.0-beta2',
845845 COLLAPSE_INDEX:false,
846846 FILE_SUFFIX:'.html',
847847 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 2.4.16 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 2.4.16 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 2.4 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 2.4.17 Release Notes" href="2.4.17.html"/>
4242 <link rel="prev" title="Cyrus IMAP 2.4.15 Release Notes" href="2.4.15.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
834834 <script type="text/javascript">
835835 var DOCUMENTATION_OPTIONS = {
836836 URL_ROOT:'../../../../../',
837 VERSION:'3.8.0-beta1',
837 VERSION:'3.8.0-beta2',
838838 COLLAPSE_INDEX:false,
839839 FILE_SUFFIX:'.html',
840840 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 2.4.17 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 2.4.17 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 2.4 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 2.4.18 Release Notes" href="2.4.18.html"/>
4242 <link rel="prev" title="Cyrus IMAP 2.4.16 Release Notes" href="2.4.16.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
849849 <script type="text/javascript">
850850 var DOCUMENTATION_OPTIONS = {
851851 URL_ROOT:'../../../../../',
852 VERSION:'3.8.0-beta1',
852 VERSION:'3.8.0-beta2',
853853 COLLAPSE_INDEX:false,
854854 FILE_SUFFIX:'.html',
855855 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 2.4.18 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 2.4.18 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 2.4 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 2.4.19 Release Notes" href="2.4.19.html"/>
4242 <link rel="prev" title="Cyrus IMAP 2.4.17 Release Notes" href="2.4.17.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
867867 <script type="text/javascript">
868868 var DOCUMENTATION_OPTIONS = {
869869 URL_ROOT:'../../../../../',
870 VERSION:'3.8.0-beta1',
870 VERSION:'3.8.0-beta2',
871871 COLLAPSE_INDEX:false,
872872 FILE_SUFFIX:'.html',
873873 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 2.4.19 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 2.4.19 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 2.4 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 2.4.20 Release Notes" href="2.4.20.html"/>
4242 <link rel="prev" title="Cyrus IMAP 2.4.18 Release Notes" href="2.4.18.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
858858 <script type="text/javascript">
859859 var DOCUMENTATION_OPTIONS = {
860860 URL_ROOT:'../../../../../',
861 VERSION:'3.8.0-beta1',
861 VERSION:'3.8.0-beta2',
862862 COLLAPSE_INDEX:false,
863863 FILE_SUFFIX:'.html',
864864 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 2.4.2 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 2.4.2 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 2.4 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 2.4.3 Release Notes" href="2.4.3.html"/>
4242 <link rel="prev" title="Cyrus IMAP 2.4.1 Release Notes" href="2.4.1.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
834834 <script type="text/javascript">
835835 var DOCUMENTATION_OPTIONS = {
836836 URL_ROOT:'../../../../../',
837 VERSION:'3.8.0-beta1',
837 VERSION:'3.8.0-beta2',
838838 COLLAPSE_INDEX:false,
839839 FILE_SUFFIX:'.html',
840840 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 2.4.20 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 2.4.20 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 2.4 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 2.4.21 Release Notes" href="2.4.21.html"/>
4242 <link rel="prev" title="Cyrus IMAP 2.4.19 Release Notes" href="2.4.19.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
835835 <script type="text/javascript">
836836 var DOCUMENTATION_OPTIONS = {
837837 URL_ROOT:'../../../../../',
838 VERSION:'3.8.0-beta1',
838 VERSION:'3.8.0-beta2',
839839 COLLAPSE_INDEX:false,
840840 FILE_SUFFIX:'.html',
841841 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 2.4.21 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 2.4.21 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 2.4 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 2.4.22 Release Notes" href="2.4.22.html"/>
4242 <link rel="prev" title="Cyrus IMAP 2.4.20 Release Notes" href="2.4.20.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
842842 <script type="text/javascript">
843843 var DOCUMENTATION_OPTIONS = {
844844 URL_ROOT:'../../../../../',
845 VERSION:'3.8.0-beta1',
845 VERSION:'3.8.0-beta2',
846846 COLLAPSE_INDEX:false,
847847 FILE_SUFFIX:'.html',
848848 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 2.4.22 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 2.4.22 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 2.4 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 2.4-caldav Releases" href="../../2.4-dav/index.html"/>
4242 <link rel="prev" title="Cyrus IMAP 2.4.21 Release Notes" href="2.4.21.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
835835 <script type="text/javascript">
836836 var DOCUMENTATION_OPTIONS = {
837837 URL_ROOT:'../../../../../',
838 VERSION:'3.8.0-beta1',
838 VERSION:'3.8.0-beta2',
839839 COLLAPSE_INDEX:false,
840840 FILE_SUFFIX:'.html',
841841 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 2.4.3 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 2.4.3 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 2.4 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 2.4.4 Release Notes" href="2.4.4.html"/>
4242 <link rel="prev" title="Cyrus IMAP 2.4.2 Release Notes" href="2.4.2.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
845845 <script type="text/javascript">
846846 var DOCUMENTATION_OPTIONS = {
847847 URL_ROOT:'../../../../../',
848 VERSION:'3.8.0-beta1',
848 VERSION:'3.8.0-beta2',
849849 COLLAPSE_INDEX:false,
850850 FILE_SUFFIX:'.html',
851851 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 2.4.4 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 2.4.4 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 2.4 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 2.4.5 Release Notes" href="2.4.5.html"/>
4242 <link rel="prev" title="Cyrus IMAP 2.4.3 Release Notes" href="2.4.3.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
840840 <script type="text/javascript">
841841 var DOCUMENTATION_OPTIONS = {
842842 URL_ROOT:'../../../../../',
843 VERSION:'3.8.0-beta1',
843 VERSION:'3.8.0-beta2',
844844 COLLAPSE_INDEX:false,
845845 FILE_SUFFIX:'.html',
846846 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 2.4.5 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 2.4.5 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 2.4 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 2.4.6 Release Notes" href="2.4.6.html"/>
4242 <link rel="prev" title="Cyrus IMAP 2.4.4 Release Notes" href="2.4.4.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
847847 <script type="text/javascript">
848848 var DOCUMENTATION_OPTIONS = {
849849 URL_ROOT:'../../../../../',
850 VERSION:'3.8.0-beta1',
850 VERSION:'3.8.0-beta2',
851851 COLLAPSE_INDEX:false,
852852 FILE_SUFFIX:'.html',
853853 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 2.4.6 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 2.4.6 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 2.4 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 2.4.7 Release Notes" href="2.4.7.html"/>
4242 <link rel="prev" title="Cyrus IMAP 2.4.5 Release Notes" href="2.4.5.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
842842 <script type="text/javascript">
843843 var DOCUMENTATION_OPTIONS = {
844844 URL_ROOT:'../../../../../',
845 VERSION:'3.8.0-beta1',
845 VERSION:'3.8.0-beta2',
846846 COLLAPSE_INDEX:false,
847847 FILE_SUFFIX:'.html',
848848 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 2.4.7 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 2.4.7 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 2.4 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 2.4.8 Release Notes" href="2.4.8.html"/>
4242 <link rel="prev" title="Cyrus IMAP 2.4.6 Release Notes" href="2.4.6.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
862862 <script type="text/javascript">
863863 var DOCUMENTATION_OPTIONS = {
864864 URL_ROOT:'../../../../../',
865 VERSION:'3.8.0-beta1',
865 VERSION:'3.8.0-beta2',
866866 COLLAPSE_INDEX:false,
867867 FILE_SUFFIX:'.html',
868868 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 2.4.8 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 2.4.8 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 2.4 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 2.4.9 Release Notes" href="2.4.9.html"/>
4242 <link rel="prev" title="Cyrus IMAP 2.4.7 Release Notes" href="2.4.7.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
845845 <script type="text/javascript">
846846 var DOCUMENTATION_OPTIONS = {
847847 URL_ROOT:'../../../../../',
848 VERSION:'3.8.0-beta1',
848 VERSION:'3.8.0-beta2',
849849 COLLAPSE_INDEX:false,
850850 FILE_SUFFIX:'.html',
851851 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 2.4.9 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 2.4.9 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 2.4 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 2.4.10 Release Notes" href="2.4.10.html"/>
4242 <link rel="prev" title="Cyrus IMAP 2.4.8 Release Notes" href="2.4.8.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
855855 <script type="text/javascript">
856856 var DOCUMENTATION_OPTIONS = {
857857 URL_ROOT:'../../../../../',
858 VERSION:'3.8.0-beta1',
858 VERSION:'3.8.0-beta2',
859859 COLLAPSE_INDEX:false,
860860 FILE_SUFFIX:'.html',
861861 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 2.4-caldav Releases &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 2.4-caldav Releases &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Release Notes" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 2.4.17-caldav-beta1 Release Notes" href="x/2.4.17-caldav-beta1.html"/>
4242 <link rel="prev" title="Cyrus IMAP 2.4.22 Release Notes" href="../2.4/x/2.4.22.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../download.html">Download</a> &raquo;</li>
772772
842842 <script type="text/javascript">
843843 var DOCUMENTATION_OPTIONS = {
844844 URL_ROOT:'../../../../',
845 VERSION:'3.8.0-beta1',
845 VERSION:'3.8.0-beta2',
846846 COLLAPSE_INDEX:false,
847847 FILE_SUFFIX:'.html',
848848 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 2.4.17-caldav-beta1 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 2.4.17-caldav-beta1 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 2.4-caldav Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 2.4.17-caldav-beta2 Release Notes" href="2.4.17-caldav-beta2.html"/>
4242 <link rel="prev" title="Cyrus IMAP 2.4-caldav Releases" href="../index.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
834834 <script type="text/javascript">
835835 var DOCUMENTATION_OPTIONS = {
836836 URL_ROOT:'../../../../../',
837 VERSION:'3.8.0-beta1',
837 VERSION:'3.8.0-beta2',
838838 COLLAPSE_INDEX:false,
839839 FILE_SUFFIX:'.html',
840840 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 2.4.17-caldav-beta10 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 2.4.17-caldav-beta10 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 2.4-caldav Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 2.4.17-caldav-beta11 Release Notes" href="2.4.17-caldav-beta11.html"/>
4242 <link rel="prev" title="Cyrus IMAP 2.4.17-caldav-beta9 Release Notes" href="2.4.17-caldav-beta9.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
839839 <script type="text/javascript">
840840 var DOCUMENTATION_OPTIONS = {
841841 URL_ROOT:'../../../../../',
842 VERSION:'3.8.0-beta1',
842 VERSION:'3.8.0-beta2',
843843 COLLAPSE_INDEX:false,
844844 FILE_SUFFIX:'.html',
845845 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 2.4.17-caldav-beta11 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 2.4.17-caldav-beta11 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 2.4-caldav Releases" href="../index.html"/>
4141 <link rel="next" title="Notes for Packagers" href="../../../packagers.html"/>
4242 <link rel="prev" title="Cyrus IMAP 2.4.17-caldav-beta10 Release Notes" href="2.4.17-caldav-beta10.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
838838 <script type="text/javascript">
839839 var DOCUMENTATION_OPTIONS = {
840840 URL_ROOT:'../../../../../',
841 VERSION:'3.8.0-beta1',
841 VERSION:'3.8.0-beta2',
842842 COLLAPSE_INDEX:false,
843843 FILE_SUFFIX:'.html',
844844 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 2.4.17-caldav-beta2 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 2.4.17-caldav-beta2 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 2.4-caldav Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 2.4.17-caldav-beta3 Release Notes" href="2.4.17-caldav-beta3.html"/>
4242 <link rel="prev" title="Cyrus IMAP 2.4.17-caldav-beta1 Release Notes" href="2.4.17-caldav-beta1.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
837837 <script type="text/javascript">
838838 var DOCUMENTATION_OPTIONS = {
839839 URL_ROOT:'../../../../../',
840 VERSION:'3.8.0-beta1',
840 VERSION:'3.8.0-beta2',
841841 COLLAPSE_INDEX:false,
842842 FILE_SUFFIX:'.html',
843843 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 2.4.17-caldav-beta3 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 2.4.17-caldav-beta3 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 2.4-caldav Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 2.4.17-caldav-beta4 Release Notes" href="2.4.17-caldav-beta4.html"/>
4242 <link rel="prev" title="Cyrus IMAP 2.4.17-caldav-beta2 Release Notes" href="2.4.17-caldav-beta2.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
835835 <script type="text/javascript">
836836 var DOCUMENTATION_OPTIONS = {
837837 URL_ROOT:'../../../../../',
838 VERSION:'3.8.0-beta1',
838 VERSION:'3.8.0-beta2',
839839 COLLAPSE_INDEX:false,
840840 FILE_SUFFIX:'.html',
841841 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 2.4.17-caldav-beta4 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 2.4.17-caldav-beta4 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 2.4-caldav Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 2.4.17-caldav-beta5 Release Notes" href="2.4.17-caldav-beta5.html"/>
4242 <link rel="prev" title="Cyrus IMAP 2.4.17-caldav-beta3 Release Notes" href="2.4.17-caldav-beta3.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
838838 <script type="text/javascript">
839839 var DOCUMENTATION_OPTIONS = {
840840 URL_ROOT:'../../../../../',
841 VERSION:'3.8.0-beta1',
841 VERSION:'3.8.0-beta2',
842842 COLLAPSE_INDEX:false,
843843 FILE_SUFFIX:'.html',
844844 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 2.4.17-caldav-beta5 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 2.4.17-caldav-beta5 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 2.4-caldav Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 2.4.17-caldav-beta6 Release Notes" href="2.4.17-caldav-beta6.html"/>
4242 <link rel="prev" title="Cyrus IMAP 2.4.17-caldav-beta4 Release Notes" href="2.4.17-caldav-beta4.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
840840 <script type="text/javascript">
841841 var DOCUMENTATION_OPTIONS = {
842842 URL_ROOT:'../../../../../',
843 VERSION:'3.8.0-beta1',
843 VERSION:'3.8.0-beta2',
844844 COLLAPSE_INDEX:false,
845845 FILE_SUFFIX:'.html',
846846 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 2.4.17-caldav-beta6 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 2.4.17-caldav-beta6 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 2.4-caldav Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 2.4.17-caldav-beta7 Release Notes" href="2.4.17-caldav-beta7.html"/>
4242 <link rel="prev" title="Cyrus IMAP 2.4.17-caldav-beta5 Release Notes" href="2.4.17-caldav-beta5.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
843843 <script type="text/javascript">
844844 var DOCUMENTATION_OPTIONS = {
845845 URL_ROOT:'../../../../../',
846 VERSION:'3.8.0-beta1',
846 VERSION:'3.8.0-beta2',
847847 COLLAPSE_INDEX:false,
848848 FILE_SUFFIX:'.html',
849849 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 2.4.17-caldav-beta7 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 2.4.17-caldav-beta7 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 2.4-caldav Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 2.4.17-caldav-beta8 Release Notes" href="2.4.17-caldav-beta8.html"/>
4242 <link rel="prev" title="Cyrus IMAP 2.4.17-caldav-beta6 Release Notes" href="2.4.17-caldav-beta6.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
840840 <script type="text/javascript">
841841 var DOCUMENTATION_OPTIONS = {
842842 URL_ROOT:'../../../../../',
843 VERSION:'3.8.0-beta1',
843 VERSION:'3.8.0-beta2',
844844 COLLAPSE_INDEX:false,
845845 FILE_SUFFIX:'.html',
846846 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 2.4.17-caldav-beta8 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 2.4.17-caldav-beta8 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 2.4-caldav Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 2.4.17-caldav-beta9 Release Notes" href="2.4.17-caldav-beta9.html"/>
4242 <link rel="prev" title="Cyrus IMAP 2.4.17-caldav-beta7 Release Notes" href="2.4.17-caldav-beta7.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
842842 <script type="text/javascript">
843843 var DOCUMENTATION_OPTIONS = {
844844 URL_ROOT:'../../../../../',
845 VERSION:'3.8.0-beta1',
845 VERSION:'3.8.0-beta2',
846846 COLLAPSE_INDEX:false,
847847 FILE_SUFFIX:'.html',
848848 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 2.4.17-caldav-beta9 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 2.4.17-caldav-beta9 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 2.4-caldav Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 2.4.17-caldav-beta10 Release Notes" href="2.4.17-caldav-beta10.html"/>
4242 <link rel="prev" title="Cyrus IMAP 2.4.17-caldav-beta8 Release Notes" href="2.4.17-caldav-beta8.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
836836 <script type="text/javascript">
837837 var DOCUMENTATION_OPTIONS = {
838838 URL_ROOT:'../../../../../',
839 VERSION:'3.8.0-beta1',
839 VERSION:'3.8.0-beta2',
840840 COLLAPSE_INDEX:false,
841841 FILE_SUFFIX:'.html',
842842 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 2.5 Releases &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 2.5 Releases &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Release Notes" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 2.5.0 Release Notes" href="x/2.5.0.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.0.18 Release Notes" href="../3.0/x/3.0.18.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../download.html">Download</a> &raquo;</li>
772772
848848 <script type="text/javascript">
849849 var DOCUMENTATION_OPTIONS = {
850850 URL_ROOT:'../../../../',
851 VERSION:'3.8.0-beta1',
851 VERSION:'3.8.0-beta2',
852852 COLLAPSE_INDEX:false,
853853 FILE_SUFFIX:'.html',
854854 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 2.5.0 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 2.5.0 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 2.5 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 2.5.1 Release Notes" href="2.5.1.html"/>
4242 <link rel="prev" title="Cyrus IMAP 2.5 Releases" href="../index.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
13281328 <script type="text/javascript">
13291329 var DOCUMENTATION_OPTIONS = {
13301330 URL_ROOT:'../../../../../',
1331 VERSION:'3.8.0-beta1',
1331 VERSION:'3.8.0-beta2',
13321332 COLLAPSE_INDEX:false,
13331333 FILE_SUFFIX:'.html',
13341334 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 2.5.1 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 2.5.1 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 2.5 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 2.5.2 Release Notes" href="2.5.2.html"/>
4242 <link rel="prev" title="Cyrus IMAP 2.5.0 Release Notes" href="2.5.0.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
884884 <script type="text/javascript">
885885 var DOCUMENTATION_OPTIONS = {
886886 URL_ROOT:'../../../../../',
887 VERSION:'3.8.0-beta1',
887 VERSION:'3.8.0-beta2',
888888 COLLAPSE_INDEX:false,
889889 FILE_SUFFIX:'.html',
890890 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 2.5.10 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 2.5.10 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 2.5 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 2.5.11 Release Notes" href="2.5.11.html"/>
4242 <link rel="prev" title="Cyrus IMAP 2.5.9 Release Notes" href="2.5.9.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
880880 <script type="text/javascript">
881881 var DOCUMENTATION_OPTIONS = {
882882 URL_ROOT:'../../../../../',
883 VERSION:'3.8.0-beta1',
883 VERSION:'3.8.0-beta2',
884884 COLLAPSE_INDEX:false,
885885 FILE_SUFFIX:'.html',
886886 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 2.5.11 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 2.5.11 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 2.5 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 2.5.12 Release Notes" href="2.5.12.html"/>
4242 <link rel="prev" title="Cyrus IMAP 2.5.10 Release Notes" href="2.5.10.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
881881 <script type="text/javascript">
882882 var DOCUMENTATION_OPTIONS = {
883883 URL_ROOT:'../../../../../',
884 VERSION:'3.8.0-beta1',
884 VERSION:'3.8.0-beta2',
885885 COLLAPSE_INDEX:false,
886886 FILE_SUFFIX:'.html',
887887 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 2.5.12 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 2.5.12 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 2.5 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 2.5.13 Release Notes" href="2.5.13.html"/>
4242 <link rel="prev" title="Cyrus IMAP 2.5.11 Release Notes" href="2.5.11.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
895895 <script type="text/javascript">
896896 var DOCUMENTATION_OPTIONS = {
897897 URL_ROOT:'../../../../../',
898 VERSION:'3.8.0-beta1',
898 VERSION:'3.8.0-beta2',
899899 COLLAPSE_INDEX:false,
900900 FILE_SUFFIX:'.html',
901901 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 2.5.13 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 2.5.13 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 2.5 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 2.5.15 Release Notes" href="2.5.15.html"/>
4242 <link rel="prev" title="Cyrus IMAP 2.5.12 Release Notes" href="2.5.12.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
863863 <script type="text/javascript">
864864 var DOCUMENTATION_OPTIONS = {
865865 URL_ROOT:'../../../../../',
866 VERSION:'3.8.0-beta1',
866 VERSION:'3.8.0-beta2',
867867 COLLAPSE_INDEX:false,
868868 FILE_SUFFIX:'.html',
869869 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 2.5.15 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 2.5.15 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 2.5 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 2.5.16 Release Notes" href="2.5.16.html"/>
4242 <link rel="prev" title="Cyrus IMAP 2.5.13 Release Notes" href="2.5.13.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
880880 <script type="text/javascript">
881881 var DOCUMENTATION_OPTIONS = {
882882 URL_ROOT:'../../../../../',
883 VERSION:'3.8.0-beta1',
883 VERSION:'3.8.0-beta2',
884884 COLLAPSE_INDEX:false,
885885 FILE_SUFFIX:'.html',
886886 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 2.5.16 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 2.5.16 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 2.5 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 2.5.17 Release Notes" href="2.5.17.html"/>
4242 <link rel="prev" title="Cyrus IMAP 2.5.15 Release Notes" href="2.5.15.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
854854 <script type="text/javascript">
855855 var DOCUMENTATION_OPTIONS = {
856856 URL_ROOT:'../../../../../',
857 VERSION:'3.8.0-beta1',
857 VERSION:'3.8.0-beta2',
858858 COLLAPSE_INDEX:false,
859859 FILE_SUFFIX:'.html',
860860 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 2.5.17 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 2.5.17 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 2.5 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.7 Tags" href="../../3.7/index.html"/>
4242 <link rel="prev" title="Cyrus IMAP 2.5.16 Release Notes" href="2.5.16.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
857857 <script type="text/javascript">
858858 var DOCUMENTATION_OPTIONS = {
859859 URL_ROOT:'../../../../../',
860 VERSION:'3.8.0-beta1',
860 VERSION:'3.8.0-beta2',
861861 COLLAPSE_INDEX:false,
862862 FILE_SUFFIX:'.html',
863863 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 2.5.2 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 2.5.2 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 2.5 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 2.5.3 Release Notes" href="2.5.3.html"/>
4242 <link rel="prev" title="Cyrus IMAP 2.5.1 Release Notes" href="2.5.1.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
856856 <script type="text/javascript">
857857 var DOCUMENTATION_OPTIONS = {
858858 URL_ROOT:'../../../../../',
859 VERSION:'3.8.0-beta1',
859 VERSION:'3.8.0-beta2',
860860 COLLAPSE_INDEX:false,
861861 FILE_SUFFIX:'.html',
862862 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 2.5.3 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 2.5.3 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 2.5 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 2.5.4 Release Notes" href="2.5.4.html"/>
4242 <link rel="prev" title="Cyrus IMAP 2.5.2 Release Notes" href="2.5.2.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
851851 <script type="text/javascript">
852852 var DOCUMENTATION_OPTIONS = {
853853 URL_ROOT:'../../../../../',
854 VERSION:'3.8.0-beta1',
854 VERSION:'3.8.0-beta2',
855855 COLLAPSE_INDEX:false,
856856 FILE_SUFFIX:'.html',
857857 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 2.5.4 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 2.5.4 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 2.5 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 2.5.5 Release Notes" href="2.5.5.html"/>
4242 <link rel="prev" title="Cyrus IMAP 2.5.3 Release Notes" href="2.5.3.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
854854 <script type="text/javascript">
855855 var DOCUMENTATION_OPTIONS = {
856856 URL_ROOT:'../../../../../',
857 VERSION:'3.8.0-beta1',
857 VERSION:'3.8.0-beta2',
858858 COLLAPSE_INDEX:false,
859859 FILE_SUFFIX:'.html',
860860 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 2.5.5 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 2.5.5 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 2.5 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 2.5.6 Release Notes" href="2.5.6.html"/>
4242 <link rel="prev" title="Cyrus IMAP 2.5.4 Release Notes" href="2.5.4.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
855855 <script type="text/javascript">
856856 var DOCUMENTATION_OPTIONS = {
857857 URL_ROOT:'../../../../../',
858 VERSION:'3.8.0-beta1',
858 VERSION:'3.8.0-beta2',
859859 COLLAPSE_INDEX:false,
860860 FILE_SUFFIX:'.html',
861861 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 2.5.6 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 2.5.6 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 2.5 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 2.5.7 Release Notes" href="2.5.7.html"/>
4242 <link rel="prev" title="Cyrus IMAP 2.5.5 Release Notes" href="2.5.5.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
871871 <script type="text/javascript">
872872 var DOCUMENTATION_OPTIONS = {
873873 URL_ROOT:'../../../../../',
874 VERSION:'3.8.0-beta1',
874 VERSION:'3.8.0-beta2',
875875 COLLAPSE_INDEX:false,
876876 FILE_SUFFIX:'.html',
877877 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 2.5.7 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 2.5.7 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 2.5 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 2.5.8 Release Notes" href="2.5.8.html"/>
4242 <link rel="prev" title="Cyrus IMAP 2.5.6 Release Notes" href="2.5.6.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
896896 <script type="text/javascript">
897897 var DOCUMENTATION_OPTIONS = {
898898 URL_ROOT:'../../../../../',
899 VERSION:'3.8.0-beta1',
899 VERSION:'3.8.0-beta2',
900900 COLLAPSE_INDEX:false,
901901 FILE_SUFFIX:'.html',
902902 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 2.5.8 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 2.5.8 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 2.5 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 2.5.9 Release Notes" href="2.5.9.html"/>
4242 <link rel="prev" title="Cyrus IMAP 2.5.7 Release Notes" href="2.5.7.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
881881 <script type="text/javascript">
882882 var DOCUMENTATION_OPTIONS = {
883883 URL_ROOT:'../../../../../',
884 VERSION:'3.8.0-beta1',
884 VERSION:'3.8.0-beta2',
885885 COLLAPSE_INDEX:false,
886886 FILE_SUFFIX:'.html',
887887 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 2.5.9 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 2.5.9 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 2.5 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 2.5.10 Release Notes" href="2.5.10.html"/>
4242 <link rel="prev" title="Cyrus IMAP 2.5.8 Release Notes" href="2.5.8.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
870870 <script type="text/javascript">
871871 var DOCUMENTATION_OPTIONS = {
872872 URL_ROOT:'../../../../../',
873 VERSION:'3.8.0-beta1',
873 VERSION:'3.8.0-beta2',
874874 COLLAPSE_INDEX:false,
875875 FILE_SUFFIX:'.html',
876876 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.0 Releases &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.0 Releases &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Release Notes" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.0.0 beta1 Release Notes" href="x/3.0.0-beta1.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.2.11 Release Notes" href="../3.2/x/3.2.11.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../download.html">Download</a> &raquo;</li>
772772
860860 <script type="text/javascript">
861861 var DOCUMENTATION_OPTIONS = {
862862 URL_ROOT:'../../../../',
863 VERSION:'3.8.0-beta1',
863 VERSION:'3.8.0-beta2',
864864 COLLAPSE_INDEX:false,
865865 FILE_SUFFIX:'.html',
866866 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.0.0 beta1 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.0.0 beta1 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 3.0 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.0.0 beta2 Release Notes" href="3.0.0-beta2.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.0 Releases" href="../index.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
878878 <script type="text/javascript">
879879 var DOCUMENTATION_OPTIONS = {
880880 URL_ROOT:'../../../../../',
881 VERSION:'3.8.0-beta1',
881 VERSION:'3.8.0-beta2',
882882 COLLAPSE_INDEX:false,
883883 FILE_SUFFIX:'.html',
884884 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.0.0 beta2 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.0.0 beta2 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 3.0 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.0.0 beta3 Release Notes" href="3.0.0-beta3.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.0.0 beta1 Release Notes" href="3.0.0-beta1.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
910910 <script type="text/javascript">
911911 var DOCUMENTATION_OPTIONS = {
912912 URL_ROOT:'../../../../../',
913 VERSION:'3.8.0-beta1',
913 VERSION:'3.8.0-beta2',
914914 COLLAPSE_INDEX:false,
915915 FILE_SUFFIX:'.html',
916916 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.0.0 beta3 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.0.0 beta3 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 3.0 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.0.0 beta4 Release Notes" href="3.0.0-beta4.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.0.0 beta2 Release Notes" href="3.0.0-beta2.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
919919 <script type="text/javascript">
920920 var DOCUMENTATION_OPTIONS = {
921921 URL_ROOT:'../../../../../',
922 VERSION:'3.8.0-beta1',
922 VERSION:'3.8.0-beta2',
923923 COLLAPSE_INDEX:false,
924924 FILE_SUFFIX:'.html',
925925 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.0.0 beta4 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.0.0 beta4 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 3.0 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.0.0 beta5 Release Notes" href="3.0.0-beta5.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.0.0 beta3 Release Notes" href="3.0.0-beta3.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
927927 <script type="text/javascript">
928928 var DOCUMENTATION_OPTIONS = {
929929 URL_ROOT:'../../../../../',
930 VERSION:'3.8.0-beta1',
930 VERSION:'3.8.0-beta2',
931931 COLLAPSE_INDEX:false,
932932 FILE_SUFFIX:'.html',
933933 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.0.0 beta5 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.0.0 beta5 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 3.0 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.0.0 beta6 Release Notes" href="3.0.0-beta6.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.0.0 beta4 Release Notes" href="3.0.0-beta4.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
931931 <script type="text/javascript">
932932 var DOCUMENTATION_OPTIONS = {
933933 URL_ROOT:'../../../../../',
934 VERSION:'3.8.0-beta1',
934 VERSION:'3.8.0-beta2',
935935 COLLAPSE_INDEX:false,
936936 FILE_SUFFIX:'.html',
937937 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.0.0 beta6 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.0.0 beta6 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 3.0 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.0.0 rc1 Release Notes" href="3.0.0-rc1.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.0.0 beta5 Release Notes" href="3.0.0-beta5.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
933933 <script type="text/javascript">
934934 var DOCUMENTATION_OPTIONS = {
935935 URL_ROOT:'../../../../../',
936 VERSION:'3.8.0-beta1',
936 VERSION:'3.8.0-beta2',
937937 COLLAPSE_INDEX:false,
938938 FILE_SUFFIX:'.html',
939939 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.0.0 rc1 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.0.0 rc1 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 3.0 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.0.0 rc2 Release Notes" href="3.0.0-rc2.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.0.0 beta6 Release Notes" href="3.0.0-beta6.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
937937 <script type="text/javascript">
938938 var DOCUMENTATION_OPTIONS = {
939939 URL_ROOT:'../../../../../',
940 VERSION:'3.8.0-beta1',
940 VERSION:'3.8.0-beta2',
941941 COLLAPSE_INDEX:false,
942942 FILE_SUFFIX:'.html',
943943 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.0.0 rc2 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.0.0 rc2 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 3.0 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.0.0 rc3 Release Notes" href="3.0.0-rc3.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.0.0 rc1 Release Notes" href="3.0.0-rc1.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
937937 <script type="text/javascript">
938938 var DOCUMENTATION_OPTIONS = {
939939 URL_ROOT:'../../../../../',
940 VERSION:'3.8.0-beta1',
940 VERSION:'3.8.0-beta2',
941941 COLLAPSE_INDEX:false,
942942 FILE_SUFFIX:'.html',
943943 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.0.0 rc3 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.0.0 rc3 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 3.0 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.0.0 rc4 Release Notes" href="3.0.0-rc4.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.0.0 rc2 Release Notes" href="3.0.0-rc2.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
937937 <script type="text/javascript">
938938 var DOCUMENTATION_OPTIONS = {
939939 URL_ROOT:'../../../../../',
940 VERSION:'3.8.0-beta1',
940 VERSION:'3.8.0-beta2',
941941 COLLAPSE_INDEX:false,
942942 FILE_SUFFIX:'.html',
943943 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.0.0 rc4 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.0.0 rc4 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 3.0 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.0.0 Release Notes" href="3.0.0.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.0.0 rc3 Release Notes" href="3.0.0-rc3.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
937937 <script type="text/javascript">
938938 var DOCUMENTATION_OPTIONS = {
939939 URL_ROOT:'../../../../../',
940 VERSION:'3.8.0-beta1',
940 VERSION:'3.8.0-beta2',
941941 COLLAPSE_INDEX:false,
942942 FILE_SUFFIX:'.html',
943943 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.0.0 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.0.0 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 3.0 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.0.1 Release Notes" href="3.0.1.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.0.0 rc4 Release Notes" href="3.0.0-rc4.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
932932 <script type="text/javascript">
933933 var DOCUMENTATION_OPTIONS = {
934934 URL_ROOT:'../../../../../',
935 VERSION:'3.8.0-beta1',
935 VERSION:'3.8.0-beta2',
936936 COLLAPSE_INDEX:false,
937937 FILE_SUFFIX:'.html',
938938 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.0.1 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.0.1 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 3.0 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.0.2 Release Notes" href="3.0.2.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.0.0 Release Notes" href="3.0.0.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
877877 <script type="text/javascript">
878878 var DOCUMENTATION_OPTIONS = {
879879 URL_ROOT:'../../../../../',
880 VERSION:'3.8.0-beta1',
880 VERSION:'3.8.0-beta2',
881881 COLLAPSE_INDEX:false,
882882 FILE_SUFFIX:'.html',
883883 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.0.10 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.0.10 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 3.0 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.0.11 Release Notes" href="3.0.11.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.0.9 Release Notes" href="3.0.9.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
871871 <script type="text/javascript">
872872 var DOCUMENTATION_OPTIONS = {
873873 URL_ROOT:'../../../../../',
874 VERSION:'3.8.0-beta1',
874 VERSION:'3.8.0-beta2',
875875 COLLAPSE_INDEX:false,
876876 FILE_SUFFIX:'.html',
877877 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.0.11 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.0.11 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 3.0 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.0.12 Release Notes" href="3.0.12.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.0.10 Release Notes" href="3.0.10.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
894894 <script type="text/javascript">
895895 var DOCUMENTATION_OPTIONS = {
896896 URL_ROOT:'../../../../../',
897 VERSION:'3.8.0-beta1',
897 VERSION:'3.8.0-beta2',
898898 COLLAPSE_INDEX:false,
899899 FILE_SUFFIX:'.html',
900900 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.0.12 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.0.12 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 3.0 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.0.13 Release Notes" href="3.0.13.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.0.11 Release Notes" href="3.0.11.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
888888 <script type="text/javascript">
889889 var DOCUMENTATION_OPTIONS = {
890890 URL_ROOT:'../../../../../',
891 VERSION:'3.8.0-beta1',
891 VERSION:'3.8.0-beta2',
892892 COLLAPSE_INDEX:false,
893893 FILE_SUFFIX:'.html',
894894 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.0.13 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.0.13 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 3.0 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.0.14 Release Notes" href="3.0.14.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.0.12 Release Notes" href="3.0.12.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
895895 <script type="text/javascript">
896896 var DOCUMENTATION_OPTIONS = {
897897 URL_ROOT:'../../../../../',
898 VERSION:'3.8.0-beta1',
898 VERSION:'3.8.0-beta2',
899899 COLLAPSE_INDEX:false,
900900 FILE_SUFFIX:'.html',
901901 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.0.14 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.0.14 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 3.0 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.0.15 Release Notes" href="3.0.15.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.0.13 Release Notes" href="3.0.13.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
865865 <script type="text/javascript">
866866 var DOCUMENTATION_OPTIONS = {
867867 URL_ROOT:'../../../../../',
868 VERSION:'3.8.0-beta1',
868 VERSION:'3.8.0-beta2',
869869 COLLAPSE_INDEX:false,
870870 FILE_SUFFIX:'.html',
871871 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.0.15 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.0.15 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 3.0 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.0.16 Release Notes" href="3.0.16.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.0.14 Release Notes" href="3.0.14.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
861861 <script type="text/javascript">
862862 var DOCUMENTATION_OPTIONS = {
863863 URL_ROOT:'../../../../../',
864 VERSION:'3.8.0-beta1',
864 VERSION:'3.8.0-beta2',
865865 COLLAPSE_INDEX:false,
866866 FILE_SUFFIX:'.html',
867867 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.0.16 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.0.16 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 3.0 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.0.17 Release Notes" href="3.0.17.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.0.15 Release Notes" href="3.0.15.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
877877 <script type="text/javascript">
878878 var DOCUMENTATION_OPTIONS = {
879879 URL_ROOT:'../../../../../',
880 VERSION:'3.8.0-beta1',
880 VERSION:'3.8.0-beta2',
881881 COLLAPSE_INDEX:false,
882882 FILE_SUFFIX:'.html',
883883 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.0.17 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.0.17 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 3.0 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.0.18 Release Notes" href="3.0.18.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.0.16 Release Notes" href="3.0.16.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
864864 <script type="text/javascript">
865865 var DOCUMENTATION_OPTIONS = {
866866 URL_ROOT:'../../../../../',
867 VERSION:'3.8.0-beta1',
867 VERSION:'3.8.0-beta2',
868868 COLLAPSE_INDEX:false,
869869 FILE_SUFFIX:'.html',
870870 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.0.18 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.0.18 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 3.0 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 2.5 Releases" href="../../2.5/index.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.0.17 Release Notes" href="3.0.17.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
870870 <script type="text/javascript">
871871 var DOCUMENTATION_OPTIONS = {
872872 URL_ROOT:'../../../../../',
873 VERSION:'3.8.0-beta1',
873 VERSION:'3.8.0-beta2',
874874 COLLAPSE_INDEX:false,
875875 FILE_SUFFIX:'.html',
876876 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.0.2 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.0.2 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 3.0 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.0.3 Release Notes" href="3.0.3.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.0.1 Release Notes" href="3.0.1.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
889889 <script type="text/javascript">
890890 var DOCUMENTATION_OPTIONS = {
891891 URL_ROOT:'../../../../../',
892 VERSION:'3.8.0-beta1',
892 VERSION:'3.8.0-beta2',
893893 COLLAPSE_INDEX:false,
894894 FILE_SUFFIX:'.html',
895895 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.0.3 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.0.3 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 3.0 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.0.4 Release Notes" href="3.0.4.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.0.2 Release Notes" href="3.0.2.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
889889 <script type="text/javascript">
890890 var DOCUMENTATION_OPTIONS = {
891891 URL_ROOT:'../../../../../',
892 VERSION:'3.8.0-beta1',
892 VERSION:'3.8.0-beta2',
893893 COLLAPSE_INDEX:false,
894894 FILE_SUFFIX:'.html',
895895 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.0.4 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.0.4 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 3.0 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.0.5 Release Notes" href="3.0.5.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.0.3 Release Notes" href="3.0.3.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
860860 <script type="text/javascript">
861861 var DOCUMENTATION_OPTIONS = {
862862 URL_ROOT:'../../../../../',
863 VERSION:'3.8.0-beta1',
863 VERSION:'3.8.0-beta2',
864864 COLLAPSE_INDEX:false,
865865 FILE_SUFFIX:'.html',
866866 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.0.5 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.0.5 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 3.0 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.0.6 Release Notes" href="3.0.6.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.0.4 Release Notes" href="3.0.4.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
867867 <script type="text/javascript">
868868 var DOCUMENTATION_OPTIONS = {
869869 URL_ROOT:'../../../../../',
870 VERSION:'3.8.0-beta1',
870 VERSION:'3.8.0-beta2',
871871 COLLAPSE_INDEX:false,
872872 FILE_SUFFIX:'.html',
873873 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.0.6 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.0.6 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 3.0 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.0.7 Release Notes" href="3.0.7.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.0.5 Release Notes" href="3.0.5.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
892892 <script type="text/javascript">
893893 var DOCUMENTATION_OPTIONS = {
894894 URL_ROOT:'../../../../../',
895 VERSION:'3.8.0-beta1',
895 VERSION:'3.8.0-beta2',
896896 COLLAPSE_INDEX:false,
897897 FILE_SUFFIX:'.html',
898898 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.0.7 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.0.7 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 3.0 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.0.8 Release Notes" href="3.0.8.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.0.6 Release Notes" href="3.0.6.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
856856 <script type="text/javascript">
857857 var DOCUMENTATION_OPTIONS = {
858858 URL_ROOT:'../../../../../',
859 VERSION:'3.8.0-beta1',
859 VERSION:'3.8.0-beta2',
860860 COLLAPSE_INDEX:false,
861861 FILE_SUFFIX:'.html',
862862 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.0.8 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.0.8 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 3.0 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.0.9 Release Notes" href="3.0.9.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.0.7 Release Notes" href="3.0.7.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
877877 <script type="text/javascript">
878878 var DOCUMENTATION_OPTIONS = {
879879 URL_ROOT:'../../../../../',
880 VERSION:'3.8.0-beta1',
880 VERSION:'3.8.0-beta2',
881881 COLLAPSE_INDEX:false,
882882 FILE_SUFFIX:'.html',
883883 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.0.9 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.0.9 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 3.0 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.0.10 Release Notes" href="3.0.10.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.0.8 Release Notes" href="3.0.8.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
892892 <script type="text/javascript">
893893 var DOCUMENTATION_OPTIONS = {
894894 URL_ROOT:'../../../../../',
895 VERSION:'3.8.0-beta1',
895 VERSION:'3.8.0-beta2',
896896 COLLAPSE_INDEX:false,
897897 FILE_SUFFIX:'.html',
898898 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.1 Tags &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.1 Tags &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Release Notes" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.1.0-dev Release Notes" href="x/3.1.0-dev.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.3.1 Tag Notes" href="../3.3/x/3.3.1.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../download.html">Download</a> &raquo;</li>
772772
848848 <script type="text/javascript">
849849 var DOCUMENTATION_OPTIONS = {
850850 URL_ROOT:'../../../../',
851 VERSION:'3.8.0-beta1',
851 VERSION:'3.8.0-beta2',
852852 COLLAPSE_INDEX:false,
853853 FILE_SUFFIX:'.html',
854854 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.1.0-dev Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.1.0-dev Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 3.1 Tags" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.1.1 Tag Notes" href="3.1.1.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.1 Tags" href="../index.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
855855 <script type="text/javascript">
856856 var DOCUMENTATION_OPTIONS = {
857857 URL_ROOT:'../../../../../',
858 VERSION:'3.8.0-beta1',
858 VERSION:'3.8.0-beta2',
859859 COLLAPSE_INDEX:false,
860860 FILE_SUFFIX:'.html',
861861 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.1.1 Tag Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.1.1 Tag Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 3.1 Tags" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.1.2 Tag Notes" href="3.1.2.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.1.0-dev Release Notes" href="3.1.0-dev.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
866866 <script type="text/javascript">
867867 var DOCUMENTATION_OPTIONS = {
868868 URL_ROOT:'../../../../../',
869 VERSION:'3.8.0-beta1',
869 VERSION:'3.8.0-beta2',
870870 COLLAPSE_INDEX:false,
871871 FILE_SUFFIX:'.html',
872872 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.1.2 Tag Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.1.2 Tag Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 3.1 Tags" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.1.3 Tag Notes" href="3.1.3.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.1.1 Tag Notes" href="3.1.1.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
874874 <script type="text/javascript">
875875 var DOCUMENTATION_OPTIONS = {
876876 URL_ROOT:'../../../../../',
877 VERSION:'3.8.0-beta1',
877 VERSION:'3.8.0-beta2',
878878 COLLAPSE_INDEX:false,
879879 FILE_SUFFIX:'.html',
880880 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.1.3 Tag Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.1.3 Tag Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 3.1 Tags" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.1.4 Tag Notes" href="3.1.4.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.1.2 Tag Notes" href="3.1.2.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
874874 <script type="text/javascript">
875875 var DOCUMENTATION_OPTIONS = {
876876 URL_ROOT:'../../../../../',
877 VERSION:'3.8.0-beta1',
877 VERSION:'3.8.0-beta2',
878878 COLLAPSE_INDEX:false,
879879 FILE_SUFFIX:'.html',
880880 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.1.4 Tag Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.1.4 Tag Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 3.1 Tags" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.1.5 Tag Notes" href="3.1.5.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.1.3 Tag Notes" href="3.1.3.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
876876 <script type="text/javascript">
877877 var DOCUMENTATION_OPTIONS = {
878878 URL_ROOT:'../../../../../',
879 VERSION:'3.8.0-beta1',
879 VERSION:'3.8.0-beta2',
880880 COLLAPSE_INDEX:false,
881881 FILE_SUFFIX:'.html',
882882 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.1.5 Tag Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.1.5 Tag Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 3.1 Tags" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.1.6 Tag Notes" href="3.1.6.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.1.4 Tag Notes" href="3.1.4.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
876876 <script type="text/javascript">
877877 var DOCUMENTATION_OPTIONS = {
878878 URL_ROOT:'../../../../../',
879 VERSION:'3.8.0-beta1',
879 VERSION:'3.8.0-beta2',
880880 COLLAPSE_INDEX:false,
881881 FILE_SUFFIX:'.html',
882882 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.1.6 Tag Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.1.6 Tag Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 3.1 Tags" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.1.7 Tag Notes" href="3.1.7.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.1.5 Tag Notes" href="3.1.5.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
886886 <script type="text/javascript">
887887 var DOCUMENTATION_OPTIONS = {
888888 URL_ROOT:'../../../../../',
889 VERSION:'3.8.0-beta1',
889 VERSION:'3.8.0-beta2',
890890 COLLAPSE_INDEX:false,
891891 FILE_SUFFIX:'.html',
892892 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.1.7 Tag Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.1.7 Tag Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 3.1 Tags" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.1.8 Tag Notes" href="3.1.8.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.1.6 Tag Notes" href="3.1.6.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
894894 <script type="text/javascript">
895895 var DOCUMENTATION_OPTIONS = {
896896 URL_ROOT:'../../../../../',
897 VERSION:'3.8.0-beta1',
897 VERSION:'3.8.0-beta2',
898898 COLLAPSE_INDEX:false,
899899 FILE_SUFFIX:'.html',
900900 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.1.8 Tag Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.1.8 Tag Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 3.1 Tags" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.1.9 Tag Notes" href="3.1.9.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.1.7 Tag Notes" href="3.1.7.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
904904 <script type="text/javascript">
905905 var DOCUMENTATION_OPTIONS = {
906906 URL_ROOT:'../../../../../',
907 VERSION:'3.8.0-beta1',
907 VERSION:'3.8.0-beta2',
908908 COLLAPSE_INDEX:false,
909909 FILE_SUFFIX:'.html',
910910 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.1.9 Tag Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.1.9 Tag Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 3.1 Tags" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 1.x Release Notes" href="../../1/1.x.x.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.1.8 Tag Notes" href="3.1.8.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
913913 <script type="text/javascript">
914914 var DOCUMENTATION_OPTIONS = {
915915 URL_ROOT:'../../../../../',
916 VERSION:'3.8.0-beta1',
916 VERSION:'3.8.0-beta2',
917917 COLLAPSE_INDEX:false,
918918 FILE_SUFFIX:'.html',
919919 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.2 Releases &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.2 Releases &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Release Notes" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.2.0-beta3 Release Notes" href="x/3.2.0-beta3.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.4.5 Release Notes" href="../3.4/x/3.4.5.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../download.html">Download</a> &raquo;</li>
772772
846846 <script type="text/javascript">
847847 var DOCUMENTATION_OPTIONS = {
848848 URL_ROOT:'../../../../',
849 VERSION:'3.8.0-beta1',
849 VERSION:'3.8.0-beta2',
850850 COLLAPSE_INDEX:false,
851851 FILE_SUFFIX:'.html',
852852 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.2.0-beta3 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.2.0-beta3 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 3.2 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.2.0-beta4 Release Notes" href="3.2.0-beta4.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.2 Releases" href="../index.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
944944 <script type="text/javascript">
945945 var DOCUMENTATION_OPTIONS = {
946946 URL_ROOT:'../../../../../',
947 VERSION:'3.8.0-beta1',
947 VERSION:'3.8.0-beta2',
948948 COLLAPSE_INDEX:false,
949949 FILE_SUFFIX:'.html',
950950 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.2.0-beta4 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.2.0-beta4 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 3.2 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.2.0-rc1 Release Notes" href="3.2.0-rc1.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.2.0-beta3 Release Notes" href="3.2.0-beta3.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
946946 <script type="text/javascript">
947947 var DOCUMENTATION_OPTIONS = {
948948 URL_ROOT:'../../../../../',
949 VERSION:'3.8.0-beta1',
949 VERSION:'3.8.0-beta2',
950950 COLLAPSE_INDEX:false,
951951 FILE_SUFFIX:'.html',
952952 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.2.0-rc1 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.2.0-rc1 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 3.2 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.2.0 Release Notes" href="3.2.0.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.2.0-beta4 Release Notes" href="3.2.0-beta4.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
946946 <script type="text/javascript">
947947 var DOCUMENTATION_OPTIONS = {
948948 URL_ROOT:'../../../../../',
949 VERSION:'3.8.0-beta1',
949 VERSION:'3.8.0-beta2',
950950 COLLAPSE_INDEX:false,
951951 FILE_SUFFIX:'.html',
952952 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.2.0 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.2.0 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 3.2 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.2.1 Release Notes" href="3.2.1.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.2.0-rc1 Release Notes" href="3.2.0-rc1.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
941941 <script type="text/javascript">
942942 var DOCUMENTATION_OPTIONS = {
943943 URL_ROOT:'../../../../../',
944 VERSION:'3.8.0-beta1',
944 VERSION:'3.8.0-beta2',
945945 COLLAPSE_INDEX:false,
946946 FILE_SUFFIX:'.html',
947947 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.2.1 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.2.1 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 3.2 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.2.2 Release Notes" href="3.2.2.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.2.0 Release Notes" href="3.2.0.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
891891 <script type="text/javascript">
892892 var DOCUMENTATION_OPTIONS = {
893893 URL_ROOT:'../../../../../',
894 VERSION:'3.8.0-beta1',
894 VERSION:'3.8.0-beta2',
895895 COLLAPSE_INDEX:false,
896896 FILE_SUFFIX:'.html',
897897 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.2.10 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.2.10 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 3.2 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.2.11 Release Notes" href="3.2.11.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.2.9 Release Notes" href="3.2.9.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
858858 <script type="text/javascript">
859859 var DOCUMENTATION_OPTIONS = {
860860 URL_ROOT:'../../../../../',
861 VERSION:'3.8.0-beta1',
861 VERSION:'3.8.0-beta2',
862862 COLLAPSE_INDEX:false,
863863 FILE_SUFFIX:'.html',
864864 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.2.11 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.2.11 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 3.2 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.0 Releases" href="../../3.0/index.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.2.10 Release Notes" href="3.2.10.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
873873 <script type="text/javascript">
874874 var DOCUMENTATION_OPTIONS = {
875875 URL_ROOT:'../../../../../',
876 VERSION:'3.8.0-beta1',
876 VERSION:'3.8.0-beta2',
877877 COLLAPSE_INDEX:false,
878878 FILE_SUFFIX:'.html',
879879 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.2.2 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.2.2 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 3.2 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.2.3 Release Notes" href="3.2.3.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.2.1 Release Notes" href="3.2.1.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
875875 <script type="text/javascript">
876876 var DOCUMENTATION_OPTIONS = {
877877 URL_ROOT:'../../../../../',
878 VERSION:'3.8.0-beta1',
878 VERSION:'3.8.0-beta2',
879879 COLLAPSE_INDEX:false,
880880 FILE_SUFFIX:'.html',
881881 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.2.3 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.2.3 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 3.2 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.2.4 Release Notes" href="3.2.4.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.2.2 Release Notes" href="3.2.2.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
875875 <script type="text/javascript">
876876 var DOCUMENTATION_OPTIONS = {
877877 URL_ROOT:'../../../../../',
878 VERSION:'3.8.0-beta1',
878 VERSION:'3.8.0-beta2',
879879 COLLAPSE_INDEX:false,
880880 FILE_SUFFIX:'.html',
881881 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.2.4 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.2.4 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 3.2 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.2.5 Release Notes" href="3.2.5.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.2.3 Release Notes" href="3.2.3.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
876876 <script type="text/javascript">
877877 var DOCUMENTATION_OPTIONS = {
878878 URL_ROOT:'../../../../../',
879 VERSION:'3.8.0-beta1',
879 VERSION:'3.8.0-beta2',
880880 COLLAPSE_INDEX:false,
881881 FILE_SUFFIX:'.html',
882882 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.2.5 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.2.5 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 3.2 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.2.6 Release Notes" href="3.2.6.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.2.4 Release Notes" href="3.2.4.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
874874 <script type="text/javascript">
875875 var DOCUMENTATION_OPTIONS = {
876876 URL_ROOT:'../../../../../',
877 VERSION:'3.8.0-beta1',
877 VERSION:'3.8.0-beta2',
878878 COLLAPSE_INDEX:false,
879879 FILE_SUFFIX:'.html',
880880 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.2.6 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.2.6 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 3.2 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.2.7 Release Notes" href="3.2.7.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.2.5 Release Notes" href="3.2.5.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
850850 <script type="text/javascript">
851851 var DOCUMENTATION_OPTIONS = {
852852 URL_ROOT:'../../../../../',
853 VERSION:'3.8.0-beta1',
853 VERSION:'3.8.0-beta2',
854854 COLLAPSE_INDEX:false,
855855 FILE_SUFFIX:'.html',
856856 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.2.7 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.2.7 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 3.2 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.2.8 Release Notes" href="3.2.8.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.2.6 Release Notes" href="3.2.6.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
864864 <script type="text/javascript">
865865 var DOCUMENTATION_OPTIONS = {
866866 URL_ROOT:'../../../../../',
867 VERSION:'3.8.0-beta1',
867 VERSION:'3.8.0-beta2',
868868 COLLAPSE_INDEX:false,
869869 FILE_SUFFIX:'.html',
870870 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.2.8 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.2.8 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 3.2 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.2.9 Release Notes" href="3.2.9.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.2.7 Release Notes" href="3.2.7.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
862862 <script type="text/javascript">
863863 var DOCUMENTATION_OPTIONS = {
864864 URL_ROOT:'../../../../../',
865 VERSION:'3.8.0-beta1',
865 VERSION:'3.8.0-beta2',
866866 COLLAPSE_INDEX:false,
867867 FILE_SUFFIX:'.html',
868868 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.2.9 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.2.9 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 3.2 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.2.10 Release Notes" href="3.2.10.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.2.8 Release Notes" href="3.2.8.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
876876 <script type="text/javascript">
877877 var DOCUMENTATION_OPTIONS = {
878878 URL_ROOT:'../../../../../',
879 VERSION:'3.8.0-beta1',
879 VERSION:'3.8.0-beta2',
880880 COLLAPSE_INDEX:false,
881881 FILE_SUFFIX:'.html',
882882 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.3 Tags &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.3 Tags &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Release Notes" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.3.0 Tag Notes" href="x/3.3.0.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.5.0-alpha0 Tag Notes" href="../3.5/x/3.5.0-alpha0.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../download.html">Download</a> &raquo;</li>
772772
840840 <script type="text/javascript">
841841 var DOCUMENTATION_OPTIONS = {
842842 URL_ROOT:'../../../../',
843 VERSION:'3.8.0-beta1',
843 VERSION:'3.8.0-beta2',
844844 COLLAPSE_INDEX:false,
845845 FILE_SUFFIX:'.html',
846846 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.3.0 Tag Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.3.0 Tag Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 3.3 Tags" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.3.1 Tag Notes" href="3.3.1.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.3 Tags" href="../index.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
904904 <script type="text/javascript">
905905 var DOCUMENTATION_OPTIONS = {
906906 URL_ROOT:'../../../../../',
907 VERSION:'3.8.0-beta1',
907 VERSION:'3.8.0-beta2',
908908 COLLAPSE_INDEX:false,
909909 FILE_SUFFIX:'.html',
910910 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.3.1 Tag Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.3.1 Tag Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 3.3 Tags" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.1 Tags" href="../../3.1/index.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.3.0 Tag Notes" href="3.3.0.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
927927 <script type="text/javascript">
928928 var DOCUMENTATION_OPTIONS = {
929929 URL_ROOT:'../../../../../',
930 VERSION:'3.8.0-beta1',
930 VERSION:'3.8.0-beta2',
931931 COLLAPSE_INDEX:false,
932932 FILE_SUFFIX:'.html',
933933 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.4 Releases &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.4 Releases &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Release Notes" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.4.0-beta1 Release Notes" href="x/3.4.0-beta1.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.6.1 Release Notes" href="../3.6/x/3.6.1.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../download.html">Download</a> &raquo;</li>
772772
841841 <script type="text/javascript">
842842 var DOCUMENTATION_OPTIONS = {
843843 URL_ROOT:'../../../../',
844 VERSION:'3.8.0-beta1',
844 VERSION:'3.8.0-beta2',
845845 COLLAPSE_INDEX:false,
846846 FILE_SUFFIX:'.html',
847847 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.4.0-beta1 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.4.0-beta1 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 3.4 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.4.0-beta2 Release Notes" href="3.4.0-beta2.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.4 Releases" href="../index.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
924924 <script type="text/javascript">
925925 var DOCUMENTATION_OPTIONS = {
926926 URL_ROOT:'../../../../../',
927 VERSION:'3.8.0-beta1',
927 VERSION:'3.8.0-beta2',
928928 COLLAPSE_INDEX:false,
929929 FILE_SUFFIX:'.html',
930930 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.4.0-beta2 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.4.0-beta2 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 3.4 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.4.0-beta3 Release Notes" href="3.4.0-beta3.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.4.0-beta1 Release Notes" href="3.4.0-beta1.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
926926 <script type="text/javascript">
927927 var DOCUMENTATION_OPTIONS = {
928928 URL_ROOT:'../../../../../',
929 VERSION:'3.8.0-beta1',
929 VERSION:'3.8.0-beta2',
930930 COLLAPSE_INDEX:false,
931931 FILE_SUFFIX:'.html',
932932 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.4.0-beta3 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.4.0-beta3 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 3.4 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.4.0-rc1 Release Notes" href="3.4.0-rc1.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.4.0-beta2 Release Notes" href="3.4.0-beta2.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
934934 <script type="text/javascript">
935935 var DOCUMENTATION_OPTIONS = {
936936 URL_ROOT:'../../../../../',
937 VERSION:'3.8.0-beta1',
937 VERSION:'3.8.0-beta2',
938938 COLLAPSE_INDEX:false,
939939 FILE_SUFFIX:'.html',
940940 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.4.0-rc1 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.4.0-rc1 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 3.4 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.4.0 Release Notes" href="3.4.0.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.4.0-beta3 Release Notes" href="3.4.0-beta3.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
934934 <script type="text/javascript">
935935 var DOCUMENTATION_OPTIONS = {
936936 URL_ROOT:'../../../../../',
937 VERSION:'3.8.0-beta1',
937 VERSION:'3.8.0-beta2',
938938 COLLAPSE_INDEX:false,
939939 FILE_SUFFIX:'.html',
940940 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.4.0 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.4.0 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 3.4 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.4.1 Release Notes" href="3.4.1.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.4.0-rc1 Release Notes" href="3.4.0-rc1.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
934934 <script type="text/javascript">
935935 var DOCUMENTATION_OPTIONS = {
936936 URL_ROOT:'../../../../../',
937 VERSION:'3.8.0-beta1',
937 VERSION:'3.8.0-beta2',
938938 COLLAPSE_INDEX:false,
939939 FILE_SUFFIX:'.html',
940940 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.4.1 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.4.1 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 3.4 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.4.2 Release Notes" href="3.4.2.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.4.0 Release Notes" href="3.4.0.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
878878 <script type="text/javascript">
879879 var DOCUMENTATION_OPTIONS = {
880880 URL_ROOT:'../../../../../',
881 VERSION:'3.8.0-beta1',
881 VERSION:'3.8.0-beta2',
882882 COLLAPSE_INDEX:false,
883883 FILE_SUFFIX:'.html',
884884 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.4.2 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.4.2 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 3.4 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.4.3 Release Notes" href="3.4.3.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.4.1 Release Notes" href="3.4.1.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
874874 <script type="text/javascript">
875875 var DOCUMENTATION_OPTIONS = {
876876 URL_ROOT:'../../../../../',
877 VERSION:'3.8.0-beta1',
877 VERSION:'3.8.0-beta2',
878878 COLLAPSE_INDEX:false,
879879 FILE_SUFFIX:'.html',
880880 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.4.3 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.4.3 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 3.4 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.4.4 Release Notes" href="3.4.4.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.4.2 Release Notes" href="3.4.2.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
884884 <script type="text/javascript">
885885 var DOCUMENTATION_OPTIONS = {
886886 URL_ROOT:'../../../../../',
887 VERSION:'3.8.0-beta1',
887 VERSION:'3.8.0-beta2',
888888 COLLAPSE_INDEX:false,
889889 FILE_SUFFIX:'.html',
890890 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.4.4 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.4.4 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 3.4 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.4.5 Release Notes" href="3.4.5.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.4.3 Release Notes" href="3.4.3.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
861861 <script type="text/javascript">
862862 var DOCUMENTATION_OPTIONS = {
863863 URL_ROOT:'../../../../../',
864 VERSION:'3.8.0-beta1',
864 VERSION:'3.8.0-beta2',
865865 COLLAPSE_INDEX:false,
866866 FILE_SUFFIX:'.html',
867867 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.4.5 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.4.5 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 3.4 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.2 Releases" href="../../3.2/index.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.4.4 Release Notes" href="3.4.4.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
875875 <script type="text/javascript">
876876 var DOCUMENTATION_OPTIONS = {
877877 URL_ROOT:'../../../../../',
878 VERSION:'3.8.0-beta1',
878 VERSION:'3.8.0-beta2',
879879 COLLAPSE_INDEX:false,
880880 FILE_SUFFIX:'.html',
881881 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.5 Tags &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.5 Tags &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Release Notes" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.5.0-alpha0 Tag Notes" href="x/3.5.0-alpha0.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.7.0-alpha0 Tag Notes" href="../3.7/x/3.7.0-alpha0.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../download.html">Download</a> &raquo;</li>
772772
840840 <script type="text/javascript">
841841 var DOCUMENTATION_OPTIONS = {
842842 URL_ROOT:'../../../../',
843 VERSION:'3.8.0-beta1',
843 VERSION:'3.8.0-beta2',
844844 COLLAPSE_INDEX:false,
845845 FILE_SUFFIX:'.html',
846846 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.5.0-alpha0 Tag Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.5.0-alpha0 Tag Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 3.5 Tags" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.3 Tags" href="../../3.3/index.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.5 Tags" href="../index.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
863863 <script type="text/javascript">
864864 var DOCUMENTATION_OPTIONS = {
865865 URL_ROOT:'../../../../../',
866 VERSION:'3.8.0-beta1',
866 VERSION:'3.8.0-beta2',
867867 COLLAPSE_INDEX:false,
868868 FILE_SUFFIX:'.html',
869869 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.6 Releases &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.6 Releases &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Release Notes" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.6.0-beta1 Release Notes" href="x/3.6.0-beta1.html"/>
42 <link rel="prev" title="Cyrus IMAP 3.8.0-beta1 Release Notes" href="../3.8/x/3.8.0-beta1.html"/>
42 <link rel="prev" title="Cyrus IMAP 3.8.0-beta2 Release Notes" href="../3.8/x/3.8.0-beta2.html"/>
4343
4444
4545
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../download.html">Download</a> &raquo;</li>
772772
809809 <a href="x/3.6.0-beta1.html" class="btn btn-neutral float-right" title="Cyrus IMAP 3.6.0-beta1 Release Notes" accesskey="n">Next <span class="fa fa-arrow-circle-right"></span></a>
810810
811811
812 <a href="../3.8/x/3.8.0-beta1.html" class="btn btn-neutral" title="Cyrus IMAP 3.8.0-beta1 Release Notes" accesskey="p"><span class="fa fa-arrow-circle-left"></span> Previous</a>
812 <a href="../3.8/x/3.8.0-beta2.html" class="btn btn-neutral" title="Cyrus IMAP 3.8.0-beta2 Release Notes" accesskey="p"><span class="fa fa-arrow-circle-left"></span> Previous</a>
813813
814814 </div>
815815
838838 <script type="text/javascript">
839839 var DOCUMENTATION_OPTIONS = {
840840 URL_ROOT:'../../../../',
841 VERSION:'3.8.0-beta1',
841 VERSION:'3.8.0-beta2',
842842 COLLAPSE_INDEX:false,
843843 FILE_SUFFIX:'.html',
844844 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.6.0-beta1 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.6.0-beta1 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 3.6 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.6.0-beta2 Release Notes" href="3.6.0-beta2.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.6 Releases" href="../index.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
959959 <script type="text/javascript">
960960 var DOCUMENTATION_OPTIONS = {
961961 URL_ROOT:'../../../../../',
962 VERSION:'3.8.0-beta1',
962 VERSION:'3.8.0-beta2',
963963 COLLAPSE_INDEX:false,
964964 FILE_SUFFIX:'.html',
965965 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.6.0-beta2 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.6.0-beta2 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 3.6 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.6.0-beta3 Release Notes" href="3.6.0-beta3.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.6.0-beta1 Release Notes" href="3.6.0-beta1.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
966966 <script type="text/javascript">
967967 var DOCUMENTATION_OPTIONS = {
968968 URL_ROOT:'../../../../../',
969 VERSION:'3.8.0-beta1',
969 VERSION:'3.8.0-beta2',
970970 COLLAPSE_INDEX:false,
971971 FILE_SUFFIX:'.html',
972972 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.6.0-beta3 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.6.0-beta3 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 3.6 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.6.0-rc1 Release Notes" href="3.6.0-rc1.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.6.0-beta2 Release Notes" href="3.6.0-beta2.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
981981 <script type="text/javascript">
982982 var DOCUMENTATION_OPTIONS = {
983983 URL_ROOT:'../../../../../',
984 VERSION:'3.8.0-beta1',
984 VERSION:'3.8.0-beta2',
985985 COLLAPSE_INDEX:false,
986986 FILE_SUFFIX:'.html',
987987 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.6.0-rc1 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.6.0-rc1 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 3.6 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.6.0-rc2 Release Notes" href="3.6.0-rc2.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.6.0-beta3 Release Notes" href="3.6.0-beta3.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
981981 <script type="text/javascript">
982982 var DOCUMENTATION_OPTIONS = {
983983 URL_ROOT:'../../../../../',
984 VERSION:'3.8.0-beta1',
984 VERSION:'3.8.0-beta2',
985985 COLLAPSE_INDEX:false,
986986 FILE_SUFFIX:'.html',
987987 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.6.0-rc2 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.6.0-rc2 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 3.6 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.6.0 Release Notes" href="3.6.0.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.6.0-rc1 Release Notes" href="3.6.0-rc1.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
981981 <script type="text/javascript">
982982 var DOCUMENTATION_OPTIONS = {
983983 URL_ROOT:'../../../../../',
984 VERSION:'3.8.0-beta1',
984 VERSION:'3.8.0-beta2',
985985 COLLAPSE_INDEX:false,
986986 FILE_SUFFIX:'.html',
987987 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.6.0 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.6.0 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 3.6 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.6.1 Release Notes" href="3.6.1.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.6.0-rc2 Release Notes" href="3.6.0-rc2.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
981981 <script type="text/javascript">
982982 var DOCUMENTATION_OPTIONS = {
983983 URL_ROOT:'../../../../../',
984 VERSION:'3.8.0-beta1',
984 VERSION:'3.8.0-beta2',
985985 COLLAPSE_INDEX:false,
986986 FILE_SUFFIX:'.html',
987987 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.6.1 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.6.1 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 3.6 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.4 Releases" href="../../3.4/index.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.6.0 Release Notes" href="3.6.0.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
848848 <script type="text/javascript">
849849 var DOCUMENTATION_OPTIONS = {
850850 URL_ROOT:'../../../../../',
851 VERSION:'3.8.0-beta1',
851 VERSION:'3.8.0-beta2',
852852 COLLAPSE_INDEX:false,
853853 FILE_SUFFIX:'.html',
854854 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.7 Tags &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.7 Tags &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Release Notes" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.7.0-alpha0 Tag Notes" href="x/3.7.0-alpha0.html"/>
4242 <link rel="prev" title="Cyrus IMAP 2.5.17 Release Notes" href="../2.5/x/2.5.17.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../download.html">Download</a> &raquo;</li>
772772
840840 <script type="text/javascript">
841841 var DOCUMENTATION_OPTIONS = {
842842 URL_ROOT:'../../../../',
843 VERSION:'3.8.0-beta1',
843 VERSION:'3.8.0-beta2',
844844 COLLAPSE_INDEX:false,
845845 FILE_SUFFIX:'.html',
846846 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.7.0-alpha0 Tag Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.7.0-alpha0 Tag Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 3.7 Tags" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.5 Tags" href="../../3.5/index.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.7 Tags" href="../index.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
863863 <script type="text/javascript">
864864 var DOCUMENTATION_OPTIONS = {
865865 URL_ROOT:'../../../../../',
866 VERSION:'3.8.0-beta1',
866 VERSION:'3.8.0-beta2',
867867 COLLAPSE_INDEX:false,
868868 FILE_SUFFIX:'.html',
869869 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.8 Releases &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.8 Releases &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Release Notes" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.8.0-alpha0 Release Notes" href="x/3.8.0-alpha0.html"/>
4242 <link rel="prev" title="Release Notes" href="../index.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../download.html">Download</a> &raquo;</li>
772772
791791 <ul>
792792 <li class="toctree-l1"><a class="reference internal" href="x/3.8.0-alpha0.html">Cyrus IMAP 3.8.0-alpha0 Release Notes</a></li>
793793 <li class="toctree-l1"><a class="reference internal" href="x/3.8.0-beta1.html">Cyrus IMAP 3.8.0-beta1 Release Notes</a></li>
794 <li class="toctree-l1"><a class="reference internal" href="x/3.8.0-beta2.html">Cyrus IMAP 3.8.0-beta2 Release Notes</a></li>
794795 </ul>
795796 </div>
796797 </div>
833834 <script type="text/javascript">
834835 var DOCUMENTATION_OPTIONS = {
835836 URL_ROOT:'../../../../',
836 VERSION:'3.8.0-beta1',
837 VERSION:'3.8.0-beta2',
837838 COLLAPSE_INDEX:false,
838839 FILE_SUFFIX:'.html',
839840 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.8.0-alpha0 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.8.0-alpha0 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 3.8 Releases" href="../index.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.8.0-beta1 Release Notes" href="3.8.0-beta1.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.8 Releases" href="../index.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
872872 <script type="text/javascript">
873873 var DOCUMENTATION_OPTIONS = {
874874 URL_ROOT:'../../../../../',
875 VERSION:'3.8.0-beta1',
875 VERSION:'3.8.0-beta2',
876876 COLLAPSE_INDEX:false,
877877 FILE_SUFFIX:'.html',
878878 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.8.0-beta1 Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.8.0-beta1 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040 <link rel="up" title="Cyrus IMAP 3.8 Releases" href="../index.html"/>
41 <link rel="next" title="Cyrus IMAP 3.6 Releases" href="../../3.6/index.html"/>
41 <link rel="next" title="Cyrus IMAP 3.8.0-beta2 Release Notes" href="3.8.0-beta2.html"/>
4242 <link rel="prev" title="Cyrus IMAP 3.8.0-alpha0 Release Notes" href="3.8.0-alpha0.html"/>
4343
4444
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772772
820820 after it has been sent.</p></li>
821821 <li><p>Maps JMAP CalendarEvent privacy to the newly introduced iCalendar
822822 X-JMAP-PRIVACY property rather than CLASS. See
823 <a class="reference internal" href="../../../upgrade.html#upgrade-3-8-0-beta1-jmap-caldav-changes"><span class="std std-ref">JMAP/CalDAV changes</span></a> in the upgrade instructions.</p></li>
823 <a class="reference internal" href="../../../upgrade.html#upgrade-3-8-0-jmap-caldav-changes"><span class="std std-ref">JMAP/CalDAV changes</span></a> in the upgrade instructions.</p></li>
824824 <li><p>Improves error handling and reporting from <a class="reference internal" href="../../../../reference/manpages/systemcommands/mbexamine.html#std-cyrusman-mbexamine-8">mbexamine(8)</a>. If you
825825 have custom tooling that calls mbexamine, it may need updating.</p></li>
826826 <li><p>Sieve: Remove support for creating scripts with the deprecated
827827 <code class="docutils literal notranslate"><span class="pre">imapflags</span></code> capability and <code class="docutils literal notranslate"><span class="pre">mark</span></code> / <code class="docutils literal notranslate"><span class="pre">unmark</span></code> actions. See
828 <a class="reference internal" href="../../../upgrade.html#upgrade-3-8-0-beta1-sieve-changes"><span class="std std-ref">Sieve changes</span></a> in the upgrade instructions.</p></li>
828 <a class="reference internal" href="../../../upgrade.html#upgrade-3-8-0-sieve-changes"><span class="std std-ref">Sieve changes</span></a> in the upgrade instructions.</p></li>
829829 <li><p>Lock ordering fixes should result in fewer &quot;resource deadlock avoided&quot;
830830 errors</p></li>
831831 </ul>
906906
907907 <div class="rst-footer-buttons" role="navigation" aria-label="footer navigation">
908908
909 <a href="../../3.6/index.html" class="btn btn-neutral float-right" title="Cyrus IMAP 3.6 Releases" accesskey="n">Next <span class="fa fa-arrow-circle-right"></span></a>
909 <a href="3.8.0-beta2.html" class="btn btn-neutral float-right" title="Cyrus IMAP 3.8.0-beta2 Release Notes" accesskey="n">Next <span class="fa fa-arrow-circle-right"></span></a>
910910
911911
912912 <a href="3.8.0-alpha0.html" class="btn btn-neutral" title="Cyrus IMAP 3.8.0-alpha0 Release Notes" accesskey="p"><span class="fa fa-arrow-circle-left"></span> Previous</a>
918918
919919 <div role="contentinfo">
920920 <p>
921 &copy; Copyright 1993–2023, The Cyrus Team. Last updated on Feb 15 2023
921 &copy; Copyright 1993–2023, The Cyrus Team. Last updated on Mar 29 2023
922922 </p>
923923 </div>
924924 Built with <a href="http://sphinx-doc.org/">Sphinx</a> 3.4.3 using a modified <a href="https://readthedocs.org">Read the Docs</a> <a href="https://github.com/snide/sphinx_rtd_theme">theme</a>.
938938 <script type="text/javascript">
939939 var DOCUMENTATION_OPTIONS = {
940940 URL_ROOT:'../../../../../',
941 VERSION:'3.8.0-beta1',
941 VERSION:'3.8.0-beta2',
942942 COLLAPSE_INDEX:false,
943943 FILE_SUFFIX:'.html',
944944 HAS_SOURCE: true
0
1
2 <!DOCTYPE html>
3 <!--[if IE 8]><html class="no-js lt-ie9" lang="en" > <![endif]-->
4 <!--[if gt IE 8]><!--> <html class="no-js" lang="en" > <!--<![endif]-->
5 <head>
6 <meta charset="utf-8">
7
8 <meta name="viewport" content="width=device-width, initial-scale=1.0">
9
10 <title>Cyrus IMAP 3.8.0-beta2 Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26 <link rel="stylesheet" href="../../../../../_static/css/theme.css" type="text/css" />
27
28
29
30 <link rel="stylesheet" href="../../../../../_static/graphviz.css" type="text/css" />
31
32 <link rel="stylesheet" href="../../../../../_static/cyrus.css" type="text/css" />
33
34
35
36 <link rel="index" title="Index"
37 href="../../../../../genindex.html"/>
38 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
40 <link rel="up" title="Cyrus IMAP 3.8 Releases" href="../index.html"/>
41 <link rel="next" title="Cyrus IMAP 3.6 Releases" href="../../3.6/index.html"/>
42 <link rel="prev" title="Cyrus IMAP 3.8.0-beta1 Release Notes" href="3.8.0-beta1.html"/>
43
44
45
46
47
48 </head>
49
50 <body class="wy-body-for-nav" role="document">
51
52
53
54
55 <div class="pageheader">
56 <ul>
57 <li><a href="../../../../../index.html">Home</a></li>
58 <li><a href="../../../../../download.html">Download</a></li>
59 <li><a href="../../../../../contribute.html">Contribute</a></li>
60 <li><a href="../../../../../support.html">Support</a></li>
61 <li><a href="http://www.cyrusimap.org/sasl">Cyrus SASL</a></li>
62 </ul>
63 <div>
64 <a href="../../../../../index.html">
65 <h1>Cyrus IMAP</h1>
66 <!-- <img src="../../../../../_static/logo.gif" alt="CYRUS" /> -->
67 </a>
68 </div>
69 </div>
70 <div style="clear: both;"></div>
71
72
73 <div class="wy-grid-for-nav">
74
75
76 <nav data-toggle="wy-nav-shift" class="wy-nav-side">
77 <div class="wy-side-nav-search">
78
79
80
81
82 <a href="../../../../../index.html">
83
84
85
86 <h1>Cyrus IMAP</h1>
87
88 </a>
89
90
91 <div role="search">
92 <form id="rtd-search-form" class="wy-form" action="../../../../../search.html" method="get">
93 <input type="text" name="q" placeholder="Search docs" />
94 <input type="hidden" name="check_keywords" value="yes" />
95 <input type="hidden" name="area" value="default" />
96 </form>
97 </div>
98
99
100 </div>
101
102 <div class="wy-menu wy-menu-vertical" data-spy="affix" role="navigation" aria-label="main navigation">
103
104
105
106 <p class="caption"><span class="caption-text">Cyrus IMAP</span></p>
107 <ul class="current">
108 <li class="toctree-l1 current"><a class="reference internal" href="../../../../../download.html">Download</a><ul class="current">
109 <li class="toctree-l2"><a class="reference internal" href="../../../getcyrus.html">Get Cyrus</a><ul>
110 <li class="toctree-l3"><a class="reference internal" href="../../../getcyrus.html#distribution-package">Distribution Package</a><ul>
111 <li class="toctree-l4"><a class="reference internal" href="../../../installation/distributions/centos.html">CentOS</a></li>
112 <li class="toctree-l4"><a class="reference internal" href="../../../installation/distributions/debian.html">Debian</a></li>
113 <li class="toctree-l4"><a class="reference internal" href="../../../installation/distributions/fedora.html">Fedora</a></li>
114 <li class="toctree-l4"><a class="reference internal" href="../../../installation/distributions/opensuse.html">openSUSE</a></li>
115 <li class="toctree-l4"><a class="reference internal" href="../../../installation/distributions/rhel.html">Red Hat Enterprise Linux</a></li>
116 <li class="toctree-l4"><a class="reference internal" href="../../../installation/distributions/ubuntu.html">Ubuntu</a></li>
117 </ul>
118 </li>
119 <li class="toctree-l3"><a class="reference internal" href="../../../getcyrus.html#build-and-install-yourself">Build and Install Yourself</a><ul>
120 <li class="toctree-l4"><a class="reference internal" href="../../../getcyrus.html#use-a-release-packaged-tarball">Use a release packaged tarball</a></li>
121 <li class="toctree-l4"><a class="reference internal" href="../../../getcyrus.html#use-the-source-from-git">Use the source from Git</a></li>
122 </ul>
123 </li>
124 <li class="toctree-l3"><a class="reference internal" href="../../../getcyrus.html#external-tools">External Tools</a></li>
125 <li class="toctree-l3"><a class="reference internal" href="../../../getcyrus.html#licensing">Licensing</a></li>
126 </ul>
127 </li>
128 <li class="toctree-l2 current"><a class="reference internal" href="../../index.html">Release Notes</a><ul class="current">
129 <li class="toctree-l3"><a class="reference internal" href="../../index.html#stable-version">Stable Version</a></li>
130 <li class="toctree-l3"><a class="reference internal" href="../../index.html#development-version">Development Version</a></li>
131 <li class="toctree-l3 current"><a class="reference internal" href="../../index.html#supported-product-series">Supported Product Series</a><ul class="current">
132 <li class="toctree-l4 current"><a class="reference internal" href="../../index.html#series-3-8">Series 3.8</a></li>
133 <li class="toctree-l4"><a class="reference internal" href="../../index.html#series-3-6">Series 3.6</a></li>
134 <li class="toctree-l4"><a class="reference internal" href="../../index.html#series-3-4">Series 3.4</a></li>
135 <li class="toctree-l4"><a class="reference internal" href="../../index.html#series-3-2">Series 3.2</a></li>
136 <li class="toctree-l4"><a class="reference internal" href="../../index.html#series-3-0">Series 3.0</a></li>
137 <li class="toctree-l4"><a class="reference internal" href="../../index.html#series-2-5">Series 2.5</a></li>
138 </ul>
139 </li>
140 <li class="toctree-l3"><a class="reference internal" href="../../index.html#development-snapshots">Development snapshots</a><ul>
141 <li class="toctree-l4"><a class="reference internal" href="../../3.7/index.html">Cyrus IMAP 3.7 Tags</a></li>
142 <li class="toctree-l4"><a class="reference internal" href="../../3.5/index.html">Cyrus IMAP 3.5 Tags</a></li>
143 <li class="toctree-l4"><a class="reference internal" href="../../3.3/index.html">Cyrus IMAP 3.3 Tags</a></li>
144 <li class="toctree-l4"><a class="reference internal" href="../../3.1/index.html">Cyrus IMAP 3.1 Tags</a></li>
145 </ul>
146 </li>
147 <li class="toctree-l3"><a class="reference internal" href="../../index.html#older-versions">Older Versions</a><ul>
148 <li class="toctree-l4"><a class="reference internal" href="../../index.html#series-1">Series 1</a></li>
149 <li class="toctree-l4"><a class="reference internal" href="../../index.html#series-2-2-0-2-4">Series 2: 2.0 - 2.4</a></li>
150 </ul>
151 </li>
152 </ul>
153 </li>
154 <li class="toctree-l2"><a class="reference internal" href="../../../packagers.html">Notes for Packagers</a><ul>
155 <li class="toctree-l3"><a class="reference internal" href="../../../packagers.html#binary-naming">Binary naming</a></li>
156 <li class="toctree-l3"><a class="reference internal" href="../../../packagers.html#sample-configuration-files">Sample configuration files</a></li>
157 <li class="toctree-l3"><a class="reference internal" href="../../../packagers.html#predefined-configurations">Predefined configurations</a><ul>
158 <li class="toctree-l4"><a class="reference internal" href="../../../packagers.html#the-configuration-file-for-master-cyrus-conf">The configuration file for master: cyrus.conf</a></li>
159 <li class="toctree-l4"><a class="reference internal" href="../../../packagers.html#the-configuration-file-for-the-various-programs-imapd-conf">The configuration file for the various programs: imapd.conf</a></li>
160 </ul>
161 </li>
162 <li class="toctree-l3"><a class="reference internal" href="../../../packagers.html#services-in-etc-services">Services in <code class="docutils literal notranslate"><span class="pre">/etc/services</span></code></a></li>
163 </ul>
164 </li>
165 </ul>
166 </li>
167 <li class="toctree-l1"><a class="reference internal" href="../../../../../quickstart.html">Quickstart Guide</a><ul>
168 <li class="toctree-l2"><a class="reference internal" href="../../../../quickstart/introduction.html">Introduction to Cyrus IMAP</a><ul>
169 <li class="toctree-l3"><a class="reference internal" href="../../../../quickstart/introduction.html#what-is-imap">What is IMAP?</a></li>
170 </ul>
171 </li>
172 <li class="toctree-l2"><a class="reference internal" href="../../../../../quickstart.html#quick-install">Quick install</a><ul>
173 <li class="toctree-l3"><a class="reference internal" href="../../../../../quickstart.html#install-cyrus-package-s">1. Install Cyrus package(s)</a></li>
174 <li class="toctree-l3"><a class="reference internal" href="../../../../../quickstart.html#setup-the-cyrus-mail-user-and-group">2. Setup the cyrus:mail user and group</a></li>
175 <li class="toctree-l3"><a class="reference internal" href="../../../../../quickstart.html#setting-up-authentication-with-sasl">3. Setting up authentication with SASL</a></li>
176 <li class="toctree-l3"><a class="reference internal" href="../../../../../quickstart.html#setup-mail-delivery-from-your-mta">4. Setup mail delivery from your MTA</a></li>
177 <li class="toctree-l3"><a class="reference internal" href="../../../../../quickstart.html#protocol-ports">5. Protocol ports</a></li>
178 <li class="toctree-l3"><a class="reference internal" href="../../../../../quickstart.html#configuring-cyrus">6. Configuring Cyrus</a></li>
179 <li class="toctree-l3"><a class="reference internal" href="../../../../../quickstart.html#launch-cyrus">7. Launch Cyrus</a></li>
180 </ul>
181 </li>
182 </ul>
183 </li>
184 <li class="toctree-l1"><a class="reference internal" href="../../../../../overview.html">Overview</a><ul>
185 <li class="toctree-l2"><a class="reference internal" href="../../../../concepts/features.html">Features</a><ul>
186 <li class="toctree-l3"><a class="reference internal" href="../../../../concepts/features.html#security-and-authentication">Security and Authentication</a><ul>
187 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/features/authentication-kerberos.html">Kerberos Authentication</a></li>
188 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/features/authentication-ldap.html">LDAP Authentication</a></li>
189 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/features/authentication-sql.html">SQL Authentication</a></li>
190 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/features/access-control.html">Access Control</a></li>
191 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/features/sealed-system.html">Sealed System Design</a></li>
192 </ul>
193 </li>
194 <li class="toctree-l3"><a class="reference internal" href="../../../../concepts/features.html#mailbox-management">Mailbox Management</a><ul>
195 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/features/automatic-creation-of-mailboxes.html">Automatic Creation of Mailboxes</a></li>
196 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/features/namespaces.html">Mailbox Namespaces</a></li>
197 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/features/virtual-domains.html">Virtual Domains</a></li>
198 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/features/mailbox-annotations.html">Mailbox Annotations (METADATA)</a></li>
199 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/features/mailbox-distribution.html">Mailbox Distribution</a></li>
200 </ul>
201 </li>
202 <li class="toctree-l3"><a class="reference internal" href="../../../../concepts/features.html#message-management">Message Management</a><ul>
203 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/features/delayed-delete.html">Delayed Delete</a></li>
204 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/features/delayed-expunge.html">Delayed Expunge</a></li>
205 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/features/message-annotations.html">Message Annotations (METADATA)</a></li>
206 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/features/duplicate-message-delivery-suppression.html">Duplicate Message Delivery Suppression</a></li>
207 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/features/shared-seen-state.html">Shared Seen State</a></li>
208 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/features/server-side-filtering.html">Server Side Filtering (Sieve)</a></li>
209 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/features/event-notifications.html">Event Notifications</a></li>
210 </ul>
211 </li>
212 <li class="toctree-l3"><a class="reference internal" href="../../../../concepts/features.html#calendar-and-contact-dav-collection-management">Calendar and Contact (DAV) Collection Management</a><ul>
213 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/features/caldav-collections.html">CalDAV Collections</a></li>
214 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/features/dav-components.html">DAV Components</a></li>
215 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/features/dav-collection-mgmt.html">DAV Collection Management</a></li>
216 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/features/carddav.html">CardDAV Support</a></li>
217 </ul>
218 </li>
219 <li class="toctree-l3"><a class="reference internal" href="../../../../concepts/features.html#storage">Storage</a><ul>
220 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/features/mail-spool-partitions.html">Mail Spool Partitions</a></li>
221 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/features/mailbox-metadata-partitions.html">Mailbox Metadata Partitions</a></li>
222 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/features/archiving.html">Archiving</a></li>
223 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/features/quota.html">Quota</a></li>
224 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/features/single-instance-store.html">Single-Instance Store</a></li>
225 </ul>
226 </li>
227 <li class="toctree-l3"><a class="reference internal" href="../../../../concepts/features.html#load-management">Load Management</a><ul>
228 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/features/server-aggregation.html">Cyrus IMAP Murder (Server Aggregation)</a></li>
229 </ul>
230 </li>
231 </ul>
232 </li>
233 <li class="toctree-l2"><a class="reference internal" href="../../../../concepts/overview_and_concepts.html">Concepts</a><ul>
234 <li class="toctree-l3"><a class="reference internal" href="../../../../concepts/overview_and_concepts.html#access-control-lists">Access Control Lists</a><ul>
235 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/overview_and_concepts.html#working-with-acls">Working with ACLs</a></li>
236 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/overview_and_concepts.html#sample-acl">Sample ACL</a></li>
237 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/overview_and_concepts.html#access-rights">Access Rights</a></li>
238 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/overview_and_concepts.html#access-control-defaults">Access Control Defaults</a></li>
239 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/overview_and_concepts.html#access-control-identifier-aci">Access Control Identifier (ACI)</a></li>
240 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/overview_and_concepts.html#negative-rights">Negative Rights</a></li>
241 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/overview_and_concepts.html#calculating-a-users-rights">Calculating a Users' Rights</a></li>
242 </ul>
243 </li>
244 <li class="toctree-l3"><a class="reference internal" href="../../../../concepts/overview_and_concepts.html#login-authentication">Login Authentication</a><ul>
245 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/overview_and_concepts.html#anonymous-login">Anonymous Login</a></li>
246 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/overview_and_concepts.html#plaintext-authentication">Plaintext Authentication</a></li>
247 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/overview_and_concepts.html#kerberos-logins">Kerberos Logins</a></li>
248 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/overview_and_concepts.html#shared-secrets-logins">Shared Secrets Logins</a></li>
249 </ul>
250 </li>
251 <li class="toctree-l3"><a class="reference internal" href="../../../../concepts/overview_and_concepts.html#quotas">Quotas</a><ul>
252 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/overview_and_concepts.html#working-with-quotas">Working with Quotas</a></li>
253 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/overview_and_concepts.html#monitor-and-repair">Monitor and Repair</a></li>
254 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/overview_and_concepts.html#supported-quota-types">Supported Quota Types</a></li>
255 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/overview_and_concepts.html#quota-roots">Quota Roots</a></li>
256 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/overview_and_concepts.html#controlling-quota-behavior">Controlling Quota Behavior</a></li>
257 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/overview_and_concepts.html#mail-delivery-behavior">Mail Delivery Behavior</a></li>
258 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/overview_and_concepts.html#quota-warnings-upon-select-when-user-has-d-rights">Quota Warnings Upon Select When User Has <code class="docutils literal notranslate"><span class="pre">d</span></code> Rights</a></li>
259 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/overview_and_concepts.html#quotas-and-partitions">Quotas and Partitions</a></li>
260 </ul>
261 </li>
262 <li class="toctree-l3"><a class="reference internal" href="../../../../concepts/overview_and_concepts.html#new-mail-notification">New Mail Notification</a></li>
263 <li class="toctree-l3"><a class="reference internal" href="../../../../concepts/overview_and_concepts.html#partitions">Partitions</a><ul>
264 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/overview_and_concepts.html#specifying-partitions-with-create">Specifying Partitions with &quot;create&quot;</a></li>
265 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/overview_and_concepts.html#changing-partitions-with-rename">Changing Partitions with &quot;rename&quot;</a></li>
266 </ul>
267 </li>
268 <li class="toctree-l3"><a class="reference internal" href="../../../../concepts/overview_and_concepts.html#news">News</a></li>
269 <li class="toctree-l3"><a class="reference internal" href="../../../../concepts/overview_and_concepts.html#pop3-server">POP3 Server</a></li>
270 <li class="toctree-l3"><a class="reference internal" href="../../../../concepts/overview_and_concepts.html#the-syslog-facility">The syslog facility</a></li>
271 <li class="toctree-l3"><a class="reference internal" href="../../../../concepts/overview_and_concepts.html#mail-directory-recovery">Mail Directory Recovery</a><ul>
272 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/overview_and_concepts.html#reconstructing-mailbox-directories">Reconstructing Mailbox Directories</a></li>
273 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/overview_and_concepts.html#reconstructing-the-mailboxes-file">Reconstructing the Mailboxes File</a></li>
274 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/overview_and_concepts.html#reconstructing-quota-roots">Reconstructing Quota Roots</a></li>
275 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/overview_and_concepts.html#removing-quota-roots">Removing Quota Roots</a></li>
276 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/overview_and_concepts.html#subscriptions">Subscriptions</a></li>
277 </ul>
278 </li>
279 <li class="toctree-l3"><a class="reference internal" href="../../../../concepts/overview_and_concepts.html#configuration-directory">Configuration Directory</a><ul>
280 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/overview_and_concepts.html#log-directory">Log Directory</a></li>
281 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/overview_and_concepts.html#proc-directory">Proc Directory</a></li>
282 </ul>
283 </li>
284 <li class="toctree-l3"><a class="reference internal" href="../../../../concepts/overview_and_concepts.html#message-delivery">Message Delivery</a><ul>
285 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/overview_and_concepts.html#local-mail-transfer-protocol-lmtp">Local Mail Transfer Protocol (lmtp)</a></li>
286 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/overview_and_concepts.html#single-instance-store">Single Instance Store</a></li>
287 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/overview_and_concepts.html#duplicate-delivery-suppression">Duplicate Delivery Suppression</a></li>
288 </ul>
289 </li>
290 <li class="toctree-l3"><a class="reference internal" href="../../../../concepts/overview_and_concepts.html#sieve-a-mail-filtering-language">Sieve, a Mail Filtering Language</a></li>
291 <li class="toctree-l3"><a class="reference internal" href="../../../../concepts/overview_and_concepts.html#cyrus-murder-the-imap-aggregator">Cyrus Murder, the IMAP Aggregator</a></li>
292 </ul>
293 </li>
294 </ul>
295 </li>
296 <li class="toctree-l1"><a class="reference internal" href="../../../../../setup.html">Setup</a><ul>
297 <li class="toctree-l2"><a class="reference internal" href="../../../../developer/compiling.html">Compiling</a><ul>
298 <li class="toctree-l3"><a class="reference internal" href="../../../../developer/compiling.html#setting-up-dependencies">Setting up dependencies</a><ul>
299 <li class="toctree-l4"><a class="reference internal" href="../../../../developer/compiling.html#required-build-dependencies">Required Build Dependencies</a></li>
300 <li class="toctree-l4"><a class="reference internal" href="../../../../developer/compiling.html#build-dependencies-for-additional-functionality">Build dependencies for additional functionality</a></li>
301 </ul>
302 </li>
303 <li class="toctree-l3"><a class="reference internal" href="../../../../developer/compiling.html#compile-cyrus">Compile Cyrus</a><ul>
304 <li class="toctree-l4"><a class="reference internal" href="../../../../developer/compiling.html#default-build-mail-only">Default build: mail only</a></li>
305 <li class="toctree-l4"><a class="reference internal" href="../../../../developer/compiling.html#optional-dependencies">Optional dependencies</a></li>
306 <li class="toctree-l4"><a class="reference internal" href="../../../../developer/compiling.html#compile">Compile</a></li>
307 <li class="toctree-l4"><a class="reference internal" href="../../../../developer/compiling.html#check">Check</a></li>
308 </ul>
309 </li>
310 </ul>
311 </li>
312 <li class="toctree-l2"><a class="reference internal" href="../../../../installing.html">Installing Cyrus</a><ul>
313 <li class="toctree-l3"><a class="reference internal" href="../../../../installing.html#install-cyrus">Install Cyrus</a></li>
314 <li class="toctree-l3"><a class="reference internal" href="../../../../installing.html#optional-components">Optional Components</a><ul>
315 <li class="toctree-l4"><a class="reference internal" href="../../../installation/manage-dav.html">HTTP modules</a></li>
316 <li class="toctree-l4"><a class="reference internal" href="../../../installation/virus.html">Virus Scanner</a></li>
317 </ul>
318 </li>
319 <li class="toctree-l3"><a class="reference internal" href="../../../../installing.html#setting-up-syslog">Setting up syslog</a></li>
320 <li class="toctree-l3"><a class="reference internal" href="../../../../installing.html#create-cyrus-environment">Create Cyrus environment</a><ul>
321 <li class="toctree-l4"><a class="reference internal" href="../../../../installing.html#set-up-the-cyrus-mail-user-and-group">Set up the cyrus:mail user and group</a></li>
322 <li class="toctree-l4"><a class="reference internal" href="../../../../installing.html#authentication-with-sasl">Authentication with SASL</a></li>
323 <li class="toctree-l4"><a class="reference internal" href="../../../../installing.html#mail-delivery-from-your-mta">Mail delivery from your MTA</a></li>
324 <li class="toctree-l4"><a class="reference internal" href="../../../../installing.html#protocol-ports">Protocol ports</a></li>
325 <li class="toctree-l4"><a class="reference internal" href="../../../../installing.html#cyrus-config-files">Cyrus config files</a></li>
326 <li class="toctree-l4"><a class="reference internal" href="../../../../installing.html#optional-setting-up-tls-certificates">Optional: Setting up TLS certificates</a></li>
327 <li class="toctree-l4"><a class="reference internal" href="../../../../installing.html#prepare-ephemeral-run-time-storage-directories">Prepare ephemeral (run-time) storage directories</a></li>
328 </ul>
329 </li>
330 <li class="toctree-l3"><a class="reference internal" href="../../../../installing.html#launch-cyrus">Launch Cyrus</a></li>
331 <li class="toctree-l3"><a class="reference internal" href="../../../../installing.html#send-a-test-email">Send a test email</a></li>
332 <li class="toctree-l3"><a class="reference internal" href="../../../../installing.html#checking-carddav-and-caldav">Checking CardDAV and CalDAV</a></li>
333 <li class="toctree-l3"><a class="reference internal" href="../../../../installing.html#troubleshooting">Troubleshooting</a></li>
334 </ul>
335 </li>
336 <li class="toctree-l2"><a class="reference internal" href="../../../upgrade.html">Upgrading to 3.8</a><ul>
337 <li class="toctree-l3"><a class="reference internal" href="../../../upgrade.html#preparation">1. Preparation</a><ul>
338 <li class="toctree-l4"><a class="reference internal" href="../../../upgrade.html#versions-to-upgrade-from">Versions to upgrade from</a></li>
339 <li class="toctree-l4"><a class="reference internal" href="../../../upgrade.html#installation-from-tarball">Installation from tarball</a></li>
340 <li class="toctree-l4"><a class="reference internal" href="../../../upgrade.html#storage-changes">Storage changes</a></li>
341 <li class="toctree-l4"><a class="reference internal" href="../../../upgrade.html#jmap-caldav-changes">JMAP/CalDAV changes</a></li>
342 <li class="toctree-l4"><a class="reference internal" href="../../../upgrade.html#sieve-changes">Sieve changes</a></li>
343 <li class="toctree-l4"><a class="reference internal" href="../../../upgrade.html#how-are-you-planning-on-upgrading">How are you planning on upgrading?</a></li>
344 <li class="toctree-l4"><a class="reference internal" href="../../../upgrade.html#do-what-as-who">Do What As Who?</a></li>
345 </ul>
346 </li>
347 <li class="toctree-l3"><a class="reference internal" href="../../../upgrade.html#install-new-3-8-cyrus">2. Install new 3.8 Cyrus</a></li>
348 <li class="toctree-l3"><a class="reference internal" href="../../../upgrade.html#shut-down-existing-cyrus">3. Shut down existing Cyrus</a></li>
349 <li class="toctree-l3"><a class="reference internal" href="../../../upgrade.html#backup-and-copy-existing-data">4. Backup and Copy existing data</a></li>
350 <li class="toctree-l3"><a class="reference internal" href="../../../upgrade.html#copy-config-files-and-update">5. Copy config files and update</a></li>
351 <li class="toctree-l3"><a class="reference internal" href="../../../upgrade.html#upgrade-specific-items">6. Upgrade specific items</a></li>
352 <li class="toctree-l3"><a class="reference internal" href="../../../upgrade.html#start-new-3-8-cyrus-and-verify">7. Start new 3.8 Cyrus and verify</a></li>
353 <li class="toctree-l3"><a class="reference internal" href="../../../upgrade.html#reconstruct-databases-and-cache">8. Reconstruct databases and cache</a></li>
354 <li class="toctree-l3"><a class="reference internal" href="../../../upgrade.html#do-you-want-any-new-features">9. Do you want any new features?</a></li>
355 <li class="toctree-l3"><a class="reference internal" href="../../../upgrade.html#upgrade-complete">10. Upgrade complete</a></li>
356 <li class="toctree-l3"><a class="reference internal" href="../../../upgrade.html#special-note-for-murder-configurations">Special note for Murder configurations</a></li>
357 </ul>
358 </li>
359 <li class="toctree-l2"><a class="reference internal" href="../../../../concepts/deployment.html">Configuration Guide</a><ul>
360 <li class="toctree-l3"><a class="reference internal" href="../../../../concepts/deployment/deployment_scenarios.html">Deployment Scenarios</a><ul>
361 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/deployment/deployment_scenarios.html#single-server-deployments">Single Server Deployments</a></li>
362 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/deployment/deployment_scenarios.html#multi-server-deployments">Multi Server Deployments</a></li>
363 </ul>
364 </li>
365 <li class="toctree-l3"><a class="reference internal" href="../../../../concepts/deployment/deployment_scenarios.html#cyrus-murder-server-aggregation">Cyrus Murder: Server aggregation</a><ul>
366 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/deployment/deployment_scenarios.html#the-discrete-murder">The Discrete Murder</a></li>
367 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/deployment/deployment_scenarios.html#the-unified-murder">The Unified Murder</a></li>
368 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/deployment/deployment_scenarios.html#the-shared-murder">The Shared Murder</a></li>
369 </ul>
370 </li>
371 <li class="toctree-l3"><a class="reference internal" href="../../../../concepts/deployment/deployment_scenarios.html#cyrus-replication">Cyrus Replication</a></li>
372 <li class="toctree-l3"><a class="reference internal" href="../../../../concepts/deployment/deployment_scenarios.html#hosted-environments">Hosted Environments</a></li>
373 <li class="toctree-l3"><a class="reference internal" href="../../../../concepts/deployment/databases.html">Databases</a><ul>
374 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/deployment/databases.html#overview">Overview</a></li>
375 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/deployment/databases.html#file-list">File list</a></li>
376 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/deployment/databases.html#storage-types">Storage types</a></li>
377 </ul>
378 </li>
379 <li class="toctree-l3"><a class="reference internal" href="../../../../concepts/deployment/mailbox_creation_distribution.html">Mailbox Creation Distribution</a><ul>
380 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/deployment/mailbox_creation_distribution.html#selection-mode">Selection Mode</a></li>
381 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/deployment/mailbox_creation_distribution.html#special-cases">Special cases</a></li>
382 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/deployment/mailbox_creation_distribution.html#partitions-exclusion">Partitions Exclusion</a></li>
383 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/deployment/mailbox_creation_distribution.html#partitions-usage-data-reset">Partitions Usage Data Reset</a></li>
384 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/deployment/mailbox_creation_distribution.html#mailbox-creation-distribution-through-murder-frontend">Mailbox Creation Distribution Through <code class="docutils literal notranslate"><span class="pre">murder</span> <span class="pre">frontend</span></code></a></li>
385 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/deployment/mailbox_creation_distribution.html#backends-exclusion">Backends Exclusion</a></li>
386 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/deployment/mailbox_creation_distribution.html#backends-usage-data-reset">Backends Usage Data Reset</a></li>
387 </ul>
388 </li>
389 <li class="toctree-l3"><a class="reference internal" href="../../../../concepts/deployment/known_protocol_limitations.html">Known Protocol Limitations</a><ul>
390 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/deployment/known_protocol_limitations.html#pop3-and-mailbox-locking">POP3 and Mailbox Locking</a></li>
391 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/deployment/known_protocol_limitations.html#cyrus-imap-pop3-implementation">Cyrus IMAP POP3 Implementation</a></li>
392 </ul>
393 </li>
394 <li class="toctree-l3"><a class="reference internal" href="../../../../concepts/deployment/authentication_and_authorization.html">Authentication and Authorization</a><ul>
395 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/deployment/authentication_and_authorization.html#client-authentication">Client Authentication</a></li>
396 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/deployment/authentication_and_authorization.html#users-and-mailboxes">Users and Mailboxes</a></li>
397 </ul>
398 </li>
399 <li class="toctree-l3"><a class="reference internal" href="../../../../concepts/deployment/performance_recommendations.html">Performance Recommendations</a><ul>
400 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/deployment/performance_recommendations.html#databases-on-temporary-filesystems">Databases on Temporary Filesystems</a></li>
401 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/deployment/performance_recommendations.html#certificates">Certificates</a></li>
402 </ul>
403 </li>
404 <li class="toctree-l3"><a class="reference internal" href="../../../../concepts/deployment/storage.html">Storage Considerations</a><ul>
405 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/deployment/storage.html#general-notes-on-storage">General Notes on Storage</a></li>
406 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/deployment/storage.html#redundancy">Redundancy</a></li>
407 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/deployment/storage.html#availability">Availability</a></li>
408 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/deployment/storage.html#performance">Performance</a></li>
409 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/deployment/storage.html#scalability">Scalability</a></li>
410 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/deployment/storage.html#capacity">Capacity</a></li>
411 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/deployment/storage.html#cost">Cost</a></li>
412 </ul>
413 </li>
414 <li class="toctree-l3"><a class="reference internal" href="../../../../concepts/deployment/supported-platforms.html">Supported Platforms and System Requirements</a><ul>
415 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/deployment/supported-platforms.html#building-cyrus-imap">Building Cyrus IMAP</a></li>
416 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/deployment/supported-platforms.html#required-software-components">Required Software Components</a></li>
417 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/deployment/supported-platforms.html#recommended-software-components">Recommended Software Components</a></li>
418 <li class="toctree-l4"><a class="reference internal" href="../../../../concepts/deployment/supported-platforms.html#recommended-software-components-enabled-by-default">Recommended Software Components Enabled by Default</a></li>
419 </ul>
420 </li>
421 </ul>
422 </li>
423 </ul>
424 </li>
425 <li class="toctree-l1"><a class="reference internal" href="../../../../../operations.html">Operations</a><ul>
426 <li class="toctree-l2"><a class="reference internal" href="../../../../reference/manpages/index.html">Man pages</a><ul>
427 <li class="toctree-l3"><a class="reference internal" href="../../../../reference/manpages/index.html#configuration-files">(5) Configuration Files</a><ul>
428 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/configs/cyrus.conf.html"><strong>cyrus.conf</strong></a></li>
429 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/configs/imapd.conf.html"><strong>imapd.conf</strong></a></li>
430 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/configs/krb.equiv.html"><strong>krb.equiv</strong></a></li>
431 </ul>
432 </li>
433 <li class="toctree-l3"><a class="reference internal" href="../../../../reference/manpages/index.html#system-commands">(8) System Commands</a><ul>
434 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/systemcommands/arbitron.html"><strong>arbitron</strong></a></li>
435 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/systemcommands/backupd.html"><strong>backupd</strong></a></li>
436 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/systemcommands/chk_cyrus.html"><strong>chk_cyrus</strong></a></li>
437 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/systemcommands/ctl_backups.html"><strong>ctl_backups</strong></a></li>
438 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/systemcommands/ctl_conversationsdb.html"><strong>ctl_conversationsdb</strong></a></li>
439 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/systemcommands/ctl_cyrusdb.html"><strong>ctl_cyrusdb</strong></a></li>
440 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/systemcommands/ctl_deliver.html"><strong>ctl_deliver</strong></a></li>
441 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/systemcommands/ctl_mboxlist.html"><strong>ctl_mboxlist</strong></a></li>
442 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/systemcommands/ctl_zoneinfo.html"><strong>ctl_zoneinfo</strong></a></li>
443 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/systemcommands/cvt_cyrusdb.html"><strong>cvt_cyrusdb</strong></a></li>
444 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/systemcommands/cvt_xlist_specialuse.html"><strong>cvt_xlist_specialuse</strong></a></li>
445 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/systemcommands/cyr_backup.html"><strong>cyr_backup</strong></a></li>
446 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/systemcommands/cyr_buildinfo.html"><strong>cyr_buildinfo</strong></a></li>
447 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/systemcommands/cyr_dbtool.html"><strong>cyr_dbtool</strong></a></li>
448 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/systemcommands/cyr_deny.html"><strong>cyr_deny</strong></a></li>
449 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/systemcommands/cyr_df.html"><strong>cyr_df</strong></a></li>
450 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/systemcommands/cyr_expire.html"><strong>cyr_expire</strong></a></li>
451 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/systemcommands/cyr_info.html"><strong>cyr_info</strong></a></li>
452 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/systemcommands/cyr_ls.html"><strong>cyr_ls</strong></a></li>
453 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/systemcommands/cyr_synclog.html"><strong>cyr_synclog</strong></a></li>
454 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/systemcommands/cyr_userseen.html"><strong>cyr_userseen</strong></a></li>
455 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/systemcommands/cyr_virusscan.html"><strong>cyr_virusscan</strong></a></li>
456 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/systemcommands/cyradm.html"><strong>cyradm</strong></a></li>
457 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/systemcommands/cyrdump.html"><strong>cyrdump</strong></a></li>
458 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/systemcommands/deliver.html"><strong>deliver</strong></a></li>
459 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/systemcommands/fetchnews.html"><strong>fetchnews</strong></a></li>
460 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/systemcommands/fud.html"><strong>fud</strong></a></li>
461 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/systemcommands/httpd.html"><strong>httpd</strong></a></li>
462 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/systemcommands/idled.html"><strong>idled</strong></a></li>
463 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/systemcommands/imapd.html"><strong>imapd</strong></a></li>
464 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/systemcommands/ipurge.html"><strong>ipurge</strong></a></li>
465 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/systemcommands/lmtpd.html"><strong>lmtpd</strong></a></li>
466 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/systemcommands/lmtpproxyd.html"><strong>lmtpproxyd</strong></a></li>
467 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/systemcommands/masssievec.html"><strong>masssievec</strong></a></li>
468 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/systemcommands/master.html"><strong>master</strong></a></li>
469 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/systemcommands/mbexamine.html"><strong>mbexamine</strong></a></li>
470 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/systemcommands/mbpath.html"><strong>mbpath</strong></a></li>
471 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/systemcommands/mbtool.html"><strong>mbtool</strong></a></li>
472 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/systemcommands/mkimap.html"><strong>mkimap</strong></a></li>
473 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/systemcommands/mknewsgroups.html"><strong>mknewsgroups</strong></a></li>
474 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/systemcommands/mupdate.html"><strong>mupdate</strong></a></li>
475 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/systemcommands/nntpd.html"><strong>nntpd</strong></a></li>
476 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/systemcommands/notifyd.html"><strong>notifyd</strong></a></li>
477 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/systemcommands/pop3d.html"><strong>pop3d</strong></a></li>
478 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/systemcommands/pop3proxyd.html"><strong>pop3proxyd</strong></a></li>
479 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/systemcommands/promstatsd.html"><strong>promstatsd</strong></a></li>
480 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/systemcommands/proxyd.html"><strong>proxyd</strong></a></li>
481 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/systemcommands/ptdump.html"><strong>ptdump</strong></a></li>
482 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/systemcommands/ptexpire.html"><strong>ptexpire</strong></a></li>
483 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/systemcommands/ptloader.html"><strong>ptloader</strong></a></li>
484 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/systemcommands/quota.html"><strong>quota</strong></a></li>
485 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/systemcommands/reconstruct.html"><strong>reconstruct</strong></a></li>
486 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/systemcommands/rehash.html"><strong>rehash</strong></a></li>
487 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/systemcommands/relocate_by_id.html"><strong>relocate_by_id</strong></a></li>
488 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/systemcommands/restore.html"><strong>restore</strong></a></li>
489 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/systemcommands/sievec.html"><strong>sievec</strong></a></li>
490 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/systemcommands/sieved.html"><strong>sieved</strong></a></li>
491 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/systemcommands/smmapd.html"><strong>smmapd</strong></a></li>
492 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/systemcommands/squatter.html"><strong>squatter</strong></a></li>
493 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/systemcommands/sync_client.html"><strong>sync_client</strong></a></li>
494 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/systemcommands/sync_reset.html"><strong>sync_reset</strong></a></li>
495 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/systemcommands/sync_server.html"><strong>sync_server</strong></a></li>
496 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/systemcommands/timsieved.html"><strong>timsieved</strong></a></li>
497 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/systemcommands/tls_prune.html"><strong>tls_prune</strong></a></li>
498 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/systemcommands/translatesieve.html"><strong>translatesieve</strong></a></li>
499 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/systemcommands/unexpunge.html"><strong>unexpunge</strong></a></li>
500 </ul>
501 </li>
502 <li class="toctree-l3"><a class="reference internal" href="../../../../reference/manpages/index.html#user-commands">(1) User Commands</a><ul>
503 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/usercommands/arbitronsort.pl.html"><strong>arbitronsort.pl</strong></a></li>
504 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/usercommands/dav_reconstruct.html"><strong>dav_reconstruct</strong></a></li>
505 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/usercommands/httptest.html"><strong>httptest</strong></a></li>
506 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/usercommands/imtest.html"><strong>imtest</strong></a></li>
507 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/usercommands/installsieve.html"><strong>installsieve</strong></a></li>
508 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/usercommands/lmtptest.html"><strong>lmtptest</strong></a></li>
509 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/usercommands/mupdatetest.html"><strong>mupdatetest</strong></a></li>
510 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/usercommands/nntptest.html"><strong>nntptest</strong></a></li>
511 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/usercommands/pop3test.html"><strong>pop3test</strong></a></li>
512 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/usercommands/sieveshell.html"><strong>sieveshell</strong></a></li>
513 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/usercommands/sivtest.html"><strong>sivtest</strong></a></li>
514 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/usercommands/smtptest.html"><strong>smtptest</strong></a></li>
515 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/manpages/usercommands/synctest.html"><strong>synctest</strong></a></li>
516 </ul>
517 </li>
518 </ul>
519 </li>
520 <li class="toctree-l2"><a class="reference internal" href="../../../../reference/admin.html">Administrator Guide</a><ul>
521 <li class="toctree-l3"><a class="reference internal" href="../../../../reference/admin.html#architecture">Architecture</a><ul>
522 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/architecture.html">System Architecture</a></li>
523 </ul>
524 </li>
525 <li class="toctree-l3"><a class="reference internal" href="../../../../reference/admin.html#management">Management</a><ul>
526 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/admin/locations.html">File &amp; Directory Locations</a></li>
527 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/admin/ports-sockets.html">Ports and Sockets</a></li>
528 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/admin/access-control.html">Access Control</a></li>
529 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/admin/quotas.html">Quotas</a></li>
530 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/admin/sieve.html">Cyrus Sieve</a></li>
531 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/admin/backups.html">Cyrus Backups</a></li>
532 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/admin/nntp.html">Cyrus NNTP</a></li>
533 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/admin/protlayer.html">Cyrus Prot Layer</a></li>
534 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/admin/sop.html">Standard Operating Procedures</a></li>
535 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/admin/eventsource.html">Cyrus Event Source</a></li>
536 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/admin/monitoring.html">Monitoring</a></li>
537 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/admin/config-mailboxdistribution.html">Mailbox Distribution</a></li>
538 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/admin/murder/murder.html">Cyrus Murder</a></li>
539 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/admin/nginx-proxy.html">HOWTO: Using an NGINX IMAP Proxy</a></li>
540 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/admin/tweaking.html">Tweaking Cyrus IMAP</a></li>
541 </ul>
542 </li>
543 </ul>
544 </li>
545 <li class="toctree-l2"><a class="reference internal" href="../../../../reference/faq.html">Frequently Asked Questions</a><ul>
546 <li class="toctree-l3"><a class="reference internal" href="../../../../reference/faq.html#features">Features</a><ul>
547 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/faqs/feature-database-backend.html">Which database backend should I use for which databases?</a></li>
548 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/faqs/feature-duplicate-delivery.html">Duplicate Delivery Suppression</a></li>
549 </ul>
550 </li>
551 <li class="toctree-l3"><a class="reference internal" href="../../../../reference/faq.html#installation-problems">Installation Problems</a><ul>
552 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/faqs/install-compilationerrors.html">Compilation errors about kssl.h and krb5.h on Red Hat Linux/Fedora</a></li>
553 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/faqs/install-install-help.html">Help! There must be an easier way to get all this going...</a></li>
554 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/faqs/install-linkerwarnings.html">OpenSSL Version Mismatches</a></li>
555 </ul>
556 </li>
557 <li class="toctree-l3"><a class="reference internal" href="../../../../reference/faq.html#common-feature-requests">Common Feature Requests</a><ul>
558 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/faqs/r-murder-ha.html">Does the Cyrus Murder support High Availability configurations?</a></li>
559 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/faqs/r-pop3-logging.html">Can I configure pop3d to log amount and size of messages fetched by user?</a></li>
560 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/faqs/r-publicssharedfolders.html">How can I make CyrusSieve work with public shared folders?</a></li>
561 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/faqs/r-subfolders.html">Can I have subfolders not appear under INBOX?</a></li>
562 </ul>
563 </li>
564 <li class="toctree-l3"><a class="reference internal" href="../../../../reference/faq.html#common-operational-questions">Common Operational Questions</a><ul>
565 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/faqs/o-acls.html">How do I view ACLs on a mailbox?</a></li>
566 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/faqs/o-annotations.html">What annotations are available?</a></li>
567 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/faqs/o-configdir-tempfs.html">Is it safe to put &lt;configdirectory&gt;/proc and &lt;configdirectory&gt;/lock on a tmpfs filesystem?</a></li>
568 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/faqs/o-coredump.html">How to enable core dumps</a></li>
569 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/faqs/o-delete-mailbox.html">Why can I not delete a mailbox as an admin user?</a></li>
570 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/faqs/o-deleted-expired-expunged-purged.html">When is What ... Deleted, Expired, Expunged or Purged?</a></li>
571 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/faqs/o-deliverdb-size.html">Why is deliver.db so large?</a></li>
572 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/faqs/o-freezes.html">I have multiple imapd-SERVICES configured and experience occasional freezes when I try to log in!</a></li>
573 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/faqs/o-gdb.html">How to run gdb on Cyrus components</a></li>
574 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/faqs/o-mailbox-doesnotexist.html">Cyrus delivers claims that the mailbox does not exist</a></li>
575 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/faqs/o-mixedcase.html">Why is mail being rejected with No Mailbox found due to MiXed CaSe incoming e-mail?</a></li>
576 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/faqs/o-otherdatabases.html">Can I use MySQL (or another SQL database) as the primary mail store?</a></li>
577 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/faqs/o-pop3slow.html">Why do POP3 connections take so long, but once the connection is established all is well?</a></li>
578 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/faqs/o-reconstruct.html">Why does reconstruct -m not work?</a></li>
579 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/faqs/o-sharedfilesystem-gpfs.html">Shared File Systems GPFS for high availability</a></li>
580 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/faqs/o-telemetry.html">How to enable telemetry</a></li>
581 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/faqs/o-toomanyprocesses.html">The process count keeps growing!</a></li>
582 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/faqs/o-unable-join-environment.html">&quot;unable to join environment&quot; error</a></li>
583 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/faqs/o-vacation-mailfrom.html">Why does Cyrus set the MAIL FROM address of the sender of vacation responses to '&lt;&gt;'?</a></li>
584 </ul>
585 </li>
586 <li class="toctree-l3"><a class="reference internal" href="../../../../reference/faq.html#common-interoperability-problems">Common Interoperability Problems</a><ul>
587 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/faqs/interop-8bit.html">Why does Cyrus reject 8-bit characters in the headers of my messages?</a></li>
588 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/faqs/interop-barenewlines.html">Why does Cyrus reject messages with &quot;bare newlines&quot;?</a></li>
589 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/faqs/interop-sieve-exim.html">How do I get Cyrus Sieve to play nice with Exim?</a></li>
590 <li class="toctree-l4"><a class="reference internal" href="../../../../reference/faqs/interop-slow-delivery.html">Why does mail delivery go slow or hang sometimes?</a></li>
591 </ul>
592 </li>
593 </ul>
594 </li>
595 </ul>
596 </li>
597 <li class="toctree-l1"><a class="reference internal" href="../../../../../developers.html">Developers</a><ul>
598 <li class="toctree-l2"><a class="reference internal" href="../../../../../contribute.html">We need your help</a></li>
599 <li class="toctree-l2"><a class="reference internal" href="../../../../developer/documentation.html">Contribute docs</a><ul>
600 <li class="toctree-l3"><a class="reference internal" href="../../../../developer/documentation.html#overview">Overview</a></li>
601 <li class="toctree-l3"><a class="reference internal" href="../../../../developer/documentation.html#documentation-tools">Documentation Tools</a></li>
602 <li class="toctree-l3"><a class="reference internal" href="../../../../developer/documentation.html#building-the-files">Building the files</a></li>
603 <li class="toctree-l3"><a class="reference internal" href="../../../../developer/documentation.html#submitting-updates">Submitting updates</a><ul>
604 <li class="toctree-l4"><a class="reference internal" href="../../../../developer/documentation.html#using-github-pull-requests">Using GitHub pull requests</a></li>
605 <li class="toctree-l4"><a class="reference internal" href="../../../../developer/documentation.html#patches-through-the-mailing-list">Patches through the mailing list</a></li>
606 </ul>
607 </li>
608 <li class="toctree-l3"><a class="reference internal" href="../../../../developer/documentation.html#special-tags">Special Tags</a><ul>
609 <li class="toctree-l4"><a class="reference internal" href="../../../../developer/documentation.html#rfc">rfc</a></li>
610 <li class="toctree-l4"><a class="reference internal" href="../../../../developer/documentation.html#cyrusman">cyrusman</a></li>
611 <li class="toctree-l4"><a class="reference internal" href="../../../../developer/documentation.html#imap-current-stable-version">imap_current_stable_version</a></li>
612 </ul>
613 </li>
614 <li class="toctree-l3"><a class="reference internal" href="../../../../developer/documentation.html#conventions-man-pages">Conventions: Man Pages</a><ul>
615 <li class="toctree-l4"><a class="reference internal" href="../../../../developer/documentation.html#synopsis">Synopsis</a></li>
616 <li class="toctree-l4"><a class="reference internal" href="../../../../developer/documentation.html#examples">Examples</a></li>
617 </ul>
618 </li>
619 </ul>
620 </li>
621 <li class="toctree-l2"><a class="reference internal" href="../../../../developer.html">Contribute code and tests</a><ul>
622 <li class="toctree-l3"><a class="reference internal" href="../../../../developer.html#getting-started">Getting Started</a><ul>
623 <li class="toctree-l4"><a class="reference internal" href="../../../../developer/process.html">Development Process</a></li>
624 <li class="toctree-l4"><a class="reference internal" href="../../../../developer/overview.html">Overview of Cyrus development environment</a></li>
625 <li class="toctree-l4"><a class="reference internal" href="../../../../developer/github-guide.html">GitHub guide</a></li>
626 <li class="toctree-l4"><a class="reference internal" href="../../../../developer/compiling.html">Compiling</a></li>
627 <li class="toctree-l4"><a class="reference internal" href="../../../../installing.html">Installing Cyrus</a></li>
628 <li class="toctree-l4"><a class="reference internal" href="../../../../developer/developer-testing.html">Developer Test Environment</a></li>
629 <li class="toctree-l4"><a class="reference internal" href="../../../../developer/jmap.html">JMAP support</a></li>
630 </ul>
631 </li>
632 <li class="toctree-l3"><a class="reference internal" href="../../../../developer.html#system-files-and-databases">System files and Databases</a><ul>
633 <li class="toctree-l4"><a class="reference internal" href="../../../../developer/namespaces.html">Namespaces: a developer view</a></li>
634 </ul>
635 </li>
636 <li class="toctree-l3"><a class="reference internal" href="../../../../developer.html#resources">Resources</a><ul>
637 <li class="toctree-l4"><a class="reference internal" href="../../../../developer/libraries.html">Developer Libraries</a></li>
638 </ul>
639 </li>
640 <li class="toctree-l3"><a class="reference internal" href="../../../../developer.html#releasing">Releasing</a><ul>
641 <li class="toctree-l4"><a class="reference internal" href="../../../../developer/releasing.html">Releasing Cyrus IMAP</a></li>
642 <li class="toctree-l4"><a class="reference internal" href="../../../../developer/ancient-releasing.html">Releasing new builds of ancient Cyrus IMAP versions</a></li>
643 </ul>
644 </li>
645 </ul>
646 </li>
647 <li class="toctree-l2"><a class="reference internal" href="../../../../developer/cyrusworks.html">Cyrus.Works</a><ul>
648 <li class="toctree-l3"><a class="reference internal" href="../../../../developer/cyrusworks.html#about-cyrus-works">About Cyrus Works</a></li>
649 <li class="toctree-l3"><a class="reference internal" href="../../../../developer/cyrusworks.html#how-it-works">How it works</a></li>
650 </ul>
651 </li>
652 <li class="toctree-l2"><a class="reference internal" href="../../../../../developers.html#cyrus-internals">Cyrus Internals</a><ul>
653 <li class="toctree-l3"><a class="reference internal" href="../../../../developer/API.html">Cyrus APIs</a><ul>
654 <li class="toctree-l4"><a class="reference internal" href="../../../../developer/API/cyrusdb.html">CyrusDB API</a></li>
655 <li class="toctree-l4"><a class="reference internal" href="../../../../developer/API/cyrusdb2.html">cyrusdb API</a></li>
656 <li class="toctree-l4"><a class="reference internal" href="../../../../developer/API/index-api.html">Index API</a></li>
657 <li class="toctree-l4"><a class="reference internal" href="../../../../developer/API/mailbox-api.html">Mailbox API</a></li>
658 </ul>
659 </li>
660 <li class="toctree-l3"><a class="reference internal" href="../../../../developer/thoughts.html">Thoughts &amp; Notes</a><ul>
661 <li class="toctree-l4"><a class="reference internal" href="../../../../developer/thoughts/backup.html">Notes for backup implementation</a></li>
662 <li class="toctree-l4"><a class="reference internal" href="../../../../developer/thoughts/bytecode.html">Cyrus IMAP Server: Sieve Bytecode</a></li>
663 <li class="toctree-l4"><a class="reference internal" href="../../../../developer/thoughts/caldav_scheduling_flowchart.html">Cyrus CalDAV Scheduling Flowchart</a></li>
664 <li class="toctree-l4"><a class="reference internal" href="../../../../developer/thoughts/improved_mboxlist_sort.html">Enabling improved_mboxlist_sort</a></li>
665 <li class="toctree-l4"><a class="reference internal" href="../../../../developer/thoughts/notes.html">Cyrus IMAP Server: Notes</a></li>
666 <li class="toctree-l4"><a class="reference internal" href="../../../../developer/thoughts/prot-events.html">Cyrus IMAP Server: Prot Events</a></li>
667 </ul>
668 </li>
669 <li class="toctree-l3"><a class="reference internal" href="../../../../developer/guidance.html">Guidance for Developers</a><ul>
670 <li class="toctree-l4"><a class="reference internal" href="../../../../developer/guidance/hacking.html">Cyrus IMAP Server: Hacking</a></li>
671 <li class="toctree-l4"><a class="reference internal" href="../../../../developer/guidance/internationalization.html">Cyrus IMAP Server: Internationalization</a></li>
672 <li class="toctree-l4"><a class="reference internal" href="../../../../developer/guidance/locking.html">Cyrus IMAP Server: Locking</a></li>
673 <li class="toctree-l4"><a class="reference internal" href="../../../../developer/guidance/mailbox-format.html">Cyrus IMAP Server: Mailbox File Formats</a></li>
674 <li class="toctree-l4"><a class="reference internal" href="../../../../developer/guidance/namelocks.html">Cyrus IMAP Server: Namelocks</a></li>
675 <li class="toctree-l4"><a class="reference internal" href="../../../../developer/guidance/prot.html">Cyrus IMAP Server: prot layer</a></li>
676 <li class="toctree-l4"><a class="reference internal" href="../../../../developer/guidance/replication_examples.html">Cyrus IMAP Server: Replication Examples</a></li>
677 <li class="toctree-l4"><a class="reference internal" href="../../../../developer/guidance/replication_protocol.html">Cyrus IMAP Server: Replication Protocol v2.4+</a></li>
678 <li class="toctree-l4"><a class="reference internal" href="../../../../developer/guidance/special_chars.html">Cyrus IMAP Server: Special Characters</a></li>
679 <li class="toctree-l4"><a class="reference internal" href="../../../../developer/guidance/var_directory_structure.html">Cyrus IMAP Server: var directory structure</a></li>
680 </ul>
681 </li>
682 </ul>
683 </li>
684 <li class="toctree-l2"><a class="reference internal" href="../../../../../developers.html#unit-tests">Unit Tests</a><ul>
685 <li class="toctree-l3"><a class="reference internal" href="../../../../developer/unit-tests.html">Unit Tests</a><ul>
686 <li class="toctree-l4"><a class="reference internal" href="../../../../developer/unit-tests.html#table-of-contents">Table of Contents</a></li>
687 <li class="toctree-l4"><a class="reference internal" href="../../../../developer/unit-tests.html#introduction">1. Introduction</a></li>
688 <li class="toctree-l4"><a class="reference internal" href="../../../../developer/unit-tests.html#what-is-a-unit-test">2. What Is A Unit Test?</a></li>
689 <li class="toctree-l4"><a class="reference internal" href="../../../../developer/unit-tests.html#running-the-tests">3. Running The Tests</a></li>
690 <li class="toctree-l4"><a class="reference internal" href="../../../../developer/unit-tests.html#debugging-a-test">3.6 Debugging A Test</a></li>
691 <li class="toctree-l4"><a class="reference internal" href="../../../../developer/unit-tests.html#adding-your-own-tests">4. Adding Your Own Tests</a></li>
692 <li class="toctree-l4"><a class="reference internal" href="../../../../developer/unit-tests.html#where-to-put-your-tests">4.1 Where To Put Your Tests</a></li>
693 <li class="toctree-l4"><a class="reference internal" href="../../../../developer/unit-tests.html#adding-a-new-suite">4.1 Adding A New Suite</a></li>
694 <li class="toctree-l4"><a class="reference internal" href="../../../../developer/unit-tests.html#adding-a-test-to-a-suite">4.2 Adding A Test To A Suite</a></li>
695 <li class="toctree-l4"><a class="reference internal" href="../../../../developer/unit-tests.html#suite-setup-and-teardown">4.3 Suite Setup And Teardown</a></li>
696 </ul>
697 </li>
698 </ul>
699 </li>
700 </ul>
701 </li>
702 <li class="toctree-l1"><a class="reference internal" href="../../../../../support.html">Support/Community</a><ul>
703 <li class="toctree-l2"><a class="reference internal" href="../../../../support/feedback-bugs.html">Found a bug?</a></li>
704 <li class="toctree-l2"><a class="reference internal" href="../../../../support/feedback-mailing-lists.html">Mailing lists</a></li>
705 <li class="toctree-l2"><a class="reference internal" href="../../../../support/feedback-meetings.html">Weekly meetings</a></li>
706 <li class="toctree-l2"><a class="reference internal" href="../../../../../overview/about_cyrus.html">About</a><ul>
707 <li class="toctree-l3"><a class="reference internal" href="../../../../../overview/what_is_cyrus.html">What is Cyrus</a><ul>
708 <li class="toctree-l4"><a class="reference internal" href="../../../../../overview/what_is_cyrus.html#what-is-cyrus">What is Cyrus</a></li>
709 <li class="toctree-l4"><a class="reference internal" href="../../../../../overview/what_is_cyrus.html#what-is-imap">What is IMAP?</a></li>
710 <li class="toctree-l4"><a class="reference internal" href="../../../../../overview/what_is_cyrus.html#imap-version-4-imap4">IMAP Version 4 (IMAP4)</a></li>
711 <li class="toctree-l4"><a class="reference internal" href="../../../../../overview/what_is_cyrus.html#mime">Mime</a></li>
712 <li class="toctree-l4"><a class="reference internal" href="../../../../../overview/what_is_cyrus.html#smtp">SMTP</a></li>
713 </ul>
714 </li>
715 <li class="toctree-l3"><a class="reference internal" href="../../../../../overview/who_is_cyrus.html">Who Is Cyrus</a><ul>
716 <li class="toctree-l4"><a class="reference internal" href="../../../../../overview/who_is_cyrus.html#core-contributors">Core Contributors</a></li>
717 <li class="toctree-l4"><a class="reference internal" href="../../../../../overview/who_is_cyrus.html#individual-contributors-and-past-contributors">Individual contributors and past contributors</a></li>
718 </ul>
719 </li>
720 <li class="toctree-l3"><a class="reference internal" href="../../../../../overview/cyrus_roadmap.html">Cyrus Roadmap</a><ul>
721 <li class="toctree-l4"><a class="reference internal" href="../../../../../overview/cyrus_roadmap.html#high-level-roadmap">High Level Roadmap</a></li>
722 </ul>
723 </li>
724 <li class="toctree-l3"><a class="reference internal" href="../../../../../overview/cyrus_history.html">Cyrus History</a></li>
725 <li class="toctree-l3"><a class="reference internal" href="../../../../../overview/cyrus_bylaws.html">Cyrus Bylaws</a><ul>
726 <li class="toctree-l4"><a class="reference internal" href="../../../../../overview/cyrus_bylaws.html#i-the-cyrus-governance-board">I. The Cyrus Governance Board</a></li>
727 <li class="toctree-l4"><a class="reference internal" href="../../../../../overview/cyrus_bylaws.html#ii-the-cyrus-core-developers-group">II. The Cyrus Core Developers Group</a></li>
728 <li class="toctree-l4"><a class="reference internal" href="../../../../../overview/cyrus_bylaws.html#iii-the-release-engineer">III. The Release Engineer</a></li>
729 <li class="toctree-l4"><a class="reference internal" href="../../../../../overview/cyrus_bylaws.html#iv-the-cyrus-roadmap">IV. The Cyrus Roadmap</a></li>
730 <li class="toctree-l4"><a class="reference internal" href="../../../../../overview/cyrus_bylaws.html#v-development-process">V. Development Process</a></li>
731 <li class="toctree-l4"><a class="reference internal" href="../../../../../overview/cyrus_bylaws.html#vi-changes-to-the-bylaws">VI. Changes to the Bylaws</a></li>
732 </ul>
733 </li>
734 </ul>
735 </li>
736 </ul>
737 </li>
738 </ul>
739 <p class="caption"><span class="caption-text">Cyrus SASL</span></p>
740 <ul>
741 <li class="toctree-l1"><a class="reference external" href="http://www.cyrusimap.org/sasl">Cyrus SASL</a></li>
742 </ul>
743
744
745
746 </div>
747
748 <div class="buildstatus">
749 <a href="https://github.com/cyrusimap/cyrus-imapd/actions" target="_blank">cyrus-imapd-3.8: <img src="https://github.com/cyrusimap/cyrus-imapd/actions/workflows/main.yml/badge.svg?branch=cyrus-imapd-3.8"></a>
750 </div>
751 &nbsp;
752 </nav>
753
754 <section data-toggle="wy-nav-shift" class="wy-nav-content-wrap">
755
756
757 <nav class="wy-nav-top" role="navigation" aria-label="top navigation">
758 <i data-toggle="wy-nav-top" class="fa fa-bars"></i>
759 <a href="../../../../../index.html">Cyrus IMAP</a>
760 </nav>
761
762
763
764 <div class="wy-nav-content">
765 <div class="rst-content">
766
767 <div role="navigation" aria-label="breadcrumbs navigation">
768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770
771 <li><a href="../../../../../download.html">Download</a> &raquo;</li>
772
773 <li><a href="../../index.html">Release Notes</a> &raquo;</li>
774
775 <li><a href="../index.html">Cyrus IMAP 3.8 Releases</a> &raquo;</li>
776
777 <li>Cyrus IMAP 3.8.0-beta2 Release Notes</li>
778 <li class="wy-breadcrumbs-aside">
779
780
781 <a href="https://github.com/cyrusimap/cyrus-imapd/blob/master/docsrc/imap/download/release-notes/3.8/x/3.8.0-beta2.rst" class="fa fa-github"> Edit on GitHub</a>
782
783
784 </li>
785 </ul>
786 <hr/>
787 </div>
788 <div role="main" class="document">
789
790 <div class="section" id="cyrus-imap-3-8-0-beta2-release-notes">
791 <h1>Cyrus IMAP 3.8.0-beta2 Release Notes<a class="headerlink" href="#cyrus-imap-3-8-0-beta2-release-notes" title="Permalink to this headline">¶</a></h1>
792 <p>Download from GitHub:</p>
793 <blockquote>
794 <div><ul class="simple">
795 <li><p><a class="reference external" href="https://github.com/cyrusimap/cyrus-imapd/releases/download/cyrus-imapd-3.8.0-beta2/cyrus-imapd-3.8.0-beta2.tar.gz">https://github.com/cyrusimap/cyrus-imapd/releases/download/cyrus-imapd-3.8.0-beta2/cyrus-imapd-3.8.0-beta2.tar.gz</a></p></li>
796 <li><p><a class="reference external" href="https://github.com/cyrusimap/cyrus-imapd/releases/download/cyrus-imapd-3.8.0-beta2/cyrus-imapd-3.8.0-beta2.tar.gz.sig">https://github.com/cyrusimap/cyrus-imapd/releases/download/cyrus-imapd-3.8.0-beta2/cyrus-imapd-3.8.0-beta2.tar.gz.sig</a></p></li>
797 </ul>
798 </div></blockquote>
799 <div class="section" id="major-changes-since-the-3-6-series">
800 <span id="relnotes-3-8-0-beta2-changes"></span><h2>Major changes since the 3.6 series<a class="headerlink" href="#major-changes-since-the-3-6-series" title="Permalink to this headline">¶</a></h2>
801 <ul class="simple">
802 <li><p>Adds the ability for replication to stage message uploads to the
803 archive partition rather than the spool partition.</p></li>
804 <li><p>Adds long-options support to various command line tools</p></li>
805 <li><p>Adds a new BYTESIZE smart type for imapoptions that set sizes</p></li>
806 <li><p>Removes empty lines from <a class="reference internal" href="../../../../reference/manpages/systemcommands/cyr_expire.html#std-cyrusman-cyr_expire-8">cyr_expire(8)</a> verbose output. If you
807 parse this output with external tools, those may need updating to match.</p></li>
808 <li><p>Adds a module to ptloader which speaks HTTP. See the &quot;pts_module&quot; and
809 &quot;httppts_uri&quot; options in <a class="reference internal" href="../../../../reference/manpages/configs/imapd.conf.html#std-cyrusman-imapd.conf-5">imapd.conf(5)</a>.</p></li>
810 <li><p>Adds support for IMAP Multimailbox Search (<span class="target" id="index-0"></span><a class="rfc reference external" href="https://tools.ietf.org/html/rfc7377.html"><strong>RFC 7377</strong></a>).</p></li>
811 <li><p>Adds support for IMAP Saved Search Results (<span class="target" id="index-1"></span><a class="rfc reference external" href="https://tools.ietf.org/html/rfc5182.html"><strong>RFC 5182</strong></a>).</p></li>
812 <li><p>Advertise support for IMAP URL-PARTIAL (<span class="target" id="index-2"></span><a class="rfc reference external" href="https://tools.ietf.org/html/rfc5550.html"><strong>RFC 5550</strong></a>).</p></li>
813 <li><p>Implements the JMAP calendars specification
814 (<a class="reference external" href="https://tools.ietf.org/html/draft-ietf-jmap-calendars">draft-ietf-jmap-calendars</a>). See the &quot;jmap_guesstz_fname&quot; option
815 in <a class="reference internal" href="../../../../reference/manpages/configs/imapd.conf.html#std-cyrusman-imapd.conf-5">imapd.conf(5)</a>.</p></li>
816 <li><p>Adds support for a new read-only <code class="docutils literal notranslate"><span class="pre">\Scheduled</span></code> mailbox that contains
817 emails created via JMAP EmailSubmission/set that are to be sent
818 at a later date/time. Also extends the JMAP EmailSubmission object
819 with optional instructions for moving the message into another mailbox
820 after it has been sent.</p></li>
821 <li><p>Maps JMAP CalendarEvent privacy to the newly introduced iCalendar
822 X-JMAP-PRIVACY property rather than CLASS. See
823 <a class="reference internal" href="../../../upgrade.html#upgrade-3-8-0-jmap-caldav-changes"><span class="std std-ref">JMAP/CalDAV changes</span></a> in the upgrade instructions.</p></li>
824 <li><p>Improves error handling and reporting from <a class="reference internal" href="../../../../reference/manpages/systemcommands/mbexamine.html#std-cyrusman-mbexamine-8">mbexamine(8)</a>. If you
825 have custom tooling that calls mbexamine, it may need updating.</p></li>
826 <li><p>Sieve: Remove support for creating scripts with the deprecated
827 <code class="docutils literal notranslate"><span class="pre">imapflags</span></code> capability and <code class="docutils literal notranslate"><span class="pre">mark</span></code> / <code class="docutils literal notranslate"><span class="pre">unmark</span></code> actions. See
828 <a class="reference internal" href="../../../upgrade.html#upgrade-3-8-0-sieve-changes"><span class="std std-ref">Sieve changes</span></a> in the upgrade instructions.</p></li>
829 <li><p>Lock ordering fixes should result in fewer &quot;resource deadlock avoided&quot;
830 errors</p></li>
831 </ul>
832 </div>
833 <div class="section" id="storage-changes">
834 <span id="relnotes-3-8-0-beta2-storage-changes"></span><h2>Storage changes<a class="headerlink" href="#storage-changes" title="Permalink to this headline">¶</a></h2>
835 <ul class="simple">
836 <li><p>None so far</p></li>
837 </ul>
838 </div>
839 <div class="section" id="updates-to-default-configuration">
840 <h2>Updates to default configuration<a class="headerlink" href="#updates-to-default-configuration" title="Permalink to this headline">¶</a></h2>
841 <p>The <a class="reference internal" href="../../../../reference/manpages/systemcommands/cyr_info.html#std-cyrusman-cyr_info-8">cyr_info(8)</a> <cite>conf</cite>, <cite>conf-all</cite> and <cite>conf-default</cite> subcommands
842 accept an <cite>-s &lt;version&gt;</cite> argument to highlight <a class="reference internal" href="../../../../reference/manpages/configs/imapd.conf.html#std-cyrusman-imapd.conf-5">imapd.conf(5)</a>
843 options that are new or whose behaviour has changed since the specified
844 version. We recommend using this when evaluating a new Cyrus version to
845 check which configuration options you will need to examine and maybe set or
846 change during the process.</p>
847 <ul>
848 <li><p>Adds a new BYTESIZE smart type for imapoptions that set sizes. This allows
849 sizes to be specified in &quot;B&quot;, &quot;KB&quot;, &quot;MB&quot;, &quot;GB&quot; for better readability.</p>
850 <p>These <a class="reference internal" href="../../../../reference/manpages/configs/imapd.conf.html#std-cyrusman-imapd.conf-5">imapd.conf(5)</a> options are changed in some way:</p>
851 <ul class="simple">
852 <li><p>archive_maxsize</p></li>
853 <li><p>autocreate_quota</p></li>
854 <li><p>autocreatequota</p></li>
855 <li><p>backup_compact_minsize</p></li>
856 <li><p>backup_compact_maxsize</p></li>
857 <li><p>event_content_size</p></li>
858 <li><p>icalendar_max_size</p></li>
859 <li><p>jmap_preview_length</p></li>
860 <li><p>jmap_max_size_upload</p></li>
861 <li><p>jmap_max_size_blob_set</p></li>
862 <li><p>jmap_max_size_request</p></li>
863 <li><p>jmap_mail_max_size_attachments_per_email</p></li>
864 <li><p>maxmessagesize</p></li>
865 <li><p>maxquoted</p></li>
866 <li><p>maxword</p></li>
867 <li><p>quotawarn -&gt; quotawarnpercent</p></li>
868 <li><p>quotawarnkb -&gt; quotawarnsize</p></li>
869 <li><p>search_maxsize</p></li>
870 <li><p>sieve_maxscriptsize</p></li>
871 <li><p>vcard_max_size</p></li>
872 <li><p>webdav_attachments_max_binary_attach_size</p></li>
873 </ul>
874 <p>This feature is transparent over upgrade and downgrade, provided the
875 imapd.conf remains unchanged.</p>
876 <p>Admins may update their imapd.conf to take advantage of the readability of
877 the new smart type, but after doing so will no longer be able to downgrade
878 to a version without this feature (unless they also revert their
879 imapd.conf).</p>
880 </li>
881 </ul>
882 </div>
883 <div class="section" id="security-fixes">
884 <h2>Security fixes<a class="headerlink" href="#security-fixes" title="Permalink to this headline">¶</a></h2>
885 <ul class="simple">
886 <li><p>None so far</p></li>
887 </ul>
888 </div>
889 <div class="section" id="significant-bugfixes">
890 <h2>Significant bugfixes<a class="headerlink" href="#significant-bugfixes" title="Permalink to this headline">¶</a></h2>
891 <ul class="simple">
892 <li><p>Fixed <a class="reference external" href="https://github.com/cyrusimap/cyrus-imapd/issues/4380">Issue #4380</a>: XFER to newer backends now assumes at least the current
893 mailbox version, rather than the oldest supported mailbox version.</p></li>
894 <li><p>Fixed <a class="reference external" href="https://github.com/cyrusimap/cyrus-imapd/issues/3771">Issue #3771</a>: Special-Use annotations lost on XFER</p></li>
895 <li><p>Fixed <a class="reference external" href="https://github.com/cyrusimap/cyrus-imapd/issues/4187">Issue #4187</a>: <a class="reference internal" href="../../../../reference/manpages/systemcommands/ctl_mboxlist.html#std-cyrusman-ctl_mboxlist-8">ctl_mboxlist(8)</a> can now detect and report
896 broken UUID mailboxes. Thanks Matthias Hunstock.</p></li>
897 <li><p>Fixed <a class="reference external" href="https://github.com/cyrusimap/cyrus-imapd/issues/4383">Issue #4383</a>: rolling <a class="reference internal" href="../../../../reference/manpages/systemcommands/squatter.html#std-cyrusman-squatter-8">squatter(8)</a> only compacted its index
898 databases at shutdown</p></li>
899 <li><p>Fixed <a class="reference external" href="https://github.com/cyrusimap/cyrus-imapd/issues/4439">Issue #4439</a>: GETMETADATA wasn't proxied correctly to murder backends.
900 Thanks Stéphane GAUBERT.</p></li>
901 </ul>
902 </div>
903 </div>
904
905
906 </div>
907 <footer>
908
909 <div class="rst-footer-buttons" role="navigation" aria-label="footer navigation">
910
911 <a href="../../3.6/index.html" class="btn btn-neutral float-right" title="Cyrus IMAP 3.6 Releases" accesskey="n">Next <span class="fa fa-arrow-circle-right"></span></a>
912
913
914 <a href="3.8.0-beta1.html" class="btn btn-neutral" title="Cyrus IMAP 3.8.0-beta1 Release Notes" accesskey="p"><span class="fa fa-arrow-circle-left"></span> Previous</a>
915
916 </div>
917
918
919 <hr/>
920
921 <div role="contentinfo">
922 <p>
923 &copy; Copyright 1993–2023, The Cyrus Team. Last updated on Mar 29 2023
924 </p>
925 </div>
926 Built with <a href="http://sphinx-doc.org/">Sphinx</a> 3.4.3 using a modified <a href="https://readthedocs.org">Read the Docs</a> <a href="https://github.com/snide/sphinx_rtd_theme">theme</a>.
927
928 </footer>
929 </div>
930 </div>
931
932 </section>
933
934 </div>
935
936
937
938
939
940 <script type="text/javascript">
941 var DOCUMENTATION_OPTIONS = {
942 URL_ROOT:'../../../../../',
943 VERSION:'3.8.0-beta2',
944 COLLAPSE_INDEX:false,
945 FILE_SUFFIX:'.html',
946 HAS_SOURCE: true
947 };
948 </script>
949 <script type="text/javascript" src="../../../../../_static/jquery.js"></script>
950 <script type="text/javascript" src="../../../../../_static/underscore.js"></script>
951 <script type="text/javascript" src="../../../../../_static/doctools.js"></script>
952 <script type="text/javascript" src="https://cdn.mathjax.org/mathjax/latest/MathJax.js"></script>
953
954
955
956
957
958 <script type="text/javascript" src="../../../../../_static/js/theme.js"></script>
959
960
961
962
963 <script type="text/javascript">
964 <!-- jQuery(function () {
965 SphinxRtdTheme.StickyNav.enable();
966 }); -->
967 </script>
968
969
970
971
972
973 </body>
974 </html>
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.9 Tags &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.9 Tags &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040
4141
4242
763763
764764 <div role="navigation" aria-label="breadcrumbs navigation">
765765 <ul class="wy-breadcrumbs">
766 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
766 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
767767
768768 <li>Cyrus IMAP 3.9 Tags</li>
769769 <li class="wy-breadcrumbs-aside">
824824 <script type="text/javascript">
825825 var DOCUMENTATION_OPTIONS = {
826826 URL_ROOT:'../../../../',
827 VERSION:'3.8.0-beta1',
827 VERSION:'3.8.0-beta2',
828828 COLLAPSE_INDEX:false,
829829 FILE_SUFFIX:'.html',
830830 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus IMAP 3.9.0-alpha0 Tag Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus IMAP 3.9.0-alpha0 Tag Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../../index.html"/>
4040
4141
4242
763763
764764 <div role="navigation" aria-label="breadcrumbs navigation">
765765 <ul class="wy-breadcrumbs">
766 <li><a href="../../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
766 <li><a href="../../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
767767
768768 <li>Cyrus IMAP 3.9.0-alpha0 Tag Notes</li>
769769 <li class="wy-breadcrumbs-aside">
845845 <script type="text/javascript">
846846 var DOCUMENTATION_OPTIONS = {
847847 URL_ROOT:'../../../../../',
848 VERSION:'3.8.0-beta1',
848 VERSION:'3.8.0-beta2',
849849 COLLAPSE_INDEX:false,
850850 FILE_SUFFIX:'.html',
851851 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Release Notes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Release Notes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Download" href="../../../download.html"/>
4141 <link rel="next" title="Cyrus IMAP 3.8 Releases" href="3.8/index.html"/>
4242 <link rel="prev" title="Ubuntu" href="../installation/distributions/ubuntu.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../download.html">Download</a> &raquo;</li>
772772
791791 <p>A 3.<strong>0</strong>.1 release is stable, but a 3.<strong>1</strong>.4 release is developmental only.</p>
792792 <div class="section" id="stable-version">
793793 <h2>Stable Version<a class="headerlink" href="#stable-version" title="Permalink to this headline">¶</a></h2>
794 <p>Latest stable version is <a href="3.8/x/3.8.0-beta1.html">3.8.0-beta1</a>. Documentation at <a class="reference external" href="https://www.cyrusimap.org/">https://www.cyrusimap.org/</a>.</p>
794 <p>Latest stable version is <a href="3.8/x/3.8.0-beta2.html">3.8.0-beta2</a>. Documentation at <a class="reference external" href="https://www.cyrusimap.org/">https://www.cyrusimap.org/</a>.</p>
795795 </div>
796796 <div class="section" id="development-version">
797797 <h2>Development Version<a class="headerlink" href="#development-version" title="Permalink to this headline">¶</a></h2>
937937 <script type="text/javascript">
938938 var DOCUMENTATION_OPTIONS = {
939939 URL_ROOT:'../../../',
940 VERSION:'3.8.0-beta1',
940 VERSION:'3.8.0-beta2',
941941 COLLAPSE_INDEX:false,
942942 FILE_SUFFIX:'.html',
943943 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Upgrading to 3.8 &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Upgrading to 3.8 &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../index.html"/>
4040 <link rel="up" title="Setup" href="../../setup.html"/>
4141 <link rel="next" title="Configuration Guide" href="../concepts/deployment.html"/>
4242 <link rel="prev" title="Virus Scanner" href="installation/virus.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../setup.html">Setup</a> &raquo;</li>
772772
876876 convert to the new style automatically as necessary.</p>
877877 </div>
878878 <div class="section" id="jmap-caldav-changes">
879 <span id="upgrade-3-8-0-beta1-jmap-caldav-changes"></span><h3><a class="toc-backref" href="#id5">JMAP/CalDAV changes</a><a class="headerlink" href="#jmap-caldav-changes" title="Permalink to this headline">¶</a></h3>
879 <span id="upgrade-3-8-0-jmap-caldav-changes"></span><h3><a class="toc-backref" href="#id5">JMAP/CalDAV changes</a><a class="headerlink" href="#jmap-caldav-changes" title="Permalink to this headline">¶</a></h3>
880880 <p>Previous versions of Cyrus determined the JMAP CalendarEvent privacy of
881881 an iCalendar VEVENT by the CLASS property. As of 3.8, this now gets determined
882882 by the newly introduced X-JMAP-PRIVACY property, but the CalDAV indexes may
898898 </ul>
899899 </div>
900900 <div class="section" id="sieve-changes">
901 <span id="upgrade-3-8-0-beta1-sieve-changes"></span><h3><a class="toc-backref" href="#id6">Sieve changes</a><a class="headerlink" href="#sieve-changes" title="Permalink to this headline">¶</a></h3>
901 <span id="upgrade-3-8-0-sieve-changes"></span><h3><a class="toc-backref" href="#id6">Sieve changes</a><a class="headerlink" href="#sieve-changes" title="Permalink to this headline">¶</a></h3>
902902 <p>Cyrus 3.8 no longer supports creating scripts with the deprecated
903903 <cite>imapflags</cite> capability and <cite>mark</cite> / <cite>unmark</cite> actions.</p>
904904 <p>Existing Sieve bytecode compiled with <cite>mark</cite> and <cite>unmark</cite> will continue
12621262
12631263 <div role="contentinfo">
12641264 <p>
1265 &copy; Copyright 1993–2023, The Cyrus Team. Last updated on Feb 15 2023
1265 &copy; Copyright 1993–2023, The Cyrus Team. Last updated on Mar 29 2023
12661266 </p>
12671267 </div>
12681268 Built with <a href="http://sphinx-doc.org/">Sphinx</a> 3.4.3 using a modified <a href="https://readthedocs.org">Read the Docs</a> <a href="https://github.com/snide/sphinx_rtd_theme">theme</a>.
12821282 <script type="text/javascript">
12831283 var DOCUMENTATION_OPTIONS = {
12841284 URL_ROOT:'../../',
1285 VERSION:'3.8.0-beta1',
1285 VERSION:'3.8.0-beta2',
12861286 COLLAPSE_INDEX:false,
12871287 FILE_SUFFIX:'.html',
12881288 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Installing Cyrus &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Installing Cyrus &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../genindex.html"/>
3838 <link rel="search" title="Search" href="../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../index.html"/>
4040 <link rel="up" title="Setup" href="../setup.html"/>
4141 <link rel="next" title="HTTP modules" href="download/installation/manage-dav.html"/>
4242 <link rel="prev" title="Compiling" href="developer/compiling.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../setup.html">Setup</a> &raquo;</li>
772772
16521652 <script type="text/javascript">
16531653 var DOCUMENTATION_OPTIONS = {
16541654 URL_ROOT:'../',
1655 VERSION:'3.8.0-beta1',
1655 VERSION:'3.8.0-beta2',
16561656 COLLAPSE_INDEX:false,
16571657 FILE_SUFFIX:'.html',
16581658 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Introduction to Cyrus IMAP &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Introduction to Cyrus IMAP &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../index.html"/>
4040 <link rel="up" title="Quickstart Guide" href="../../quickstart.html"/>
4141 <link rel="next" title="Overview" href="../../overview.html"/>
4242 <link rel="prev" title="Quickstart Guide" href="../../quickstart.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../quickstart.html">Quickstart Guide</a> &raquo;</li>
772772
870870 <script type="text/javascript">
871871 var DOCUMENTATION_OPTIONS = {
872872 URL_ROOT:'../../',
873 VERSION:'3.8.0-beta1',
873 VERSION:'3.8.0-beta2',
874874 COLLAPSE_INDEX:false,
875875 FILE_SUFFIX:'.html',
876876 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Combining Access Rights &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Combining Access Rights &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Access Control" href="../access-control.html"/>
4141 <link rel="next" title="Access Control Defaults" href="defaults.html"/>
4242 <link rel="prev" title="Access Control" href="../access-control.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
950950 <script type="text/javascript">
951951 var DOCUMENTATION_OPTIONS = {
952952 URL_ROOT:'../../../../',
953 VERSION:'3.8.0-beta1',
953 VERSION:'3.8.0-beta2',
954954 COLLAPSE_INDEX:false,
955955 FILE_SUFFIX:'.html',
956956 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Access Control Defaults &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Access Control Defaults &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Access Control" href="../access-control.html"/>
4141 <link rel="next" title="Access Control Identifier (ACI)" href="identifiers.html"/>
4242 <link rel="prev" title="Combining Access Rights" href="combining-rights.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
873873 <script type="text/javascript">
874874 var DOCUMENTATION_OPTIONS = {
875875 URL_ROOT:'../../../../',
876 VERSION:'3.8.0-beta1',
876 VERSION:'3.8.0-beta2',
877877 COLLAPSE_INDEX:false,
878878 FILE_SUFFIX:'.html',
879879 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Access Control Identifier (ACI) &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Access Control Identifier (ACI) &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Access Control" href="../access-control.html"/>
4141 <link rel="next" title="Access Control Lists Rights Reference" href="rights-reference.html"/>
4242 <link rel="prev" title="Access Control Defaults" href="defaults.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
909909 <script type="text/javascript">
910910 var DOCUMENTATION_OPTIONS = {
911911 URL_ROOT:'../../../../',
912 VERSION:'3.8.0-beta1',
912 VERSION:'3.8.0-beta2',
913913 COLLAPSE_INDEX:false,
914914 FILE_SUFFIX:'.html',
915915 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Access Control Lists Rights Reference &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Access Control Lists Rights Reference &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Access Control" href="../access-control.html"/>
4141 <link rel="next" title="Quotas" href="../quotas.html"/>
4242 <link rel="prev" title="Access Control Identifier (ACI)" href="identifiers.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
11461146 <script type="text/javascript">
11471147 var DOCUMENTATION_OPTIONS = {
11481148 URL_ROOT:'../../../../',
1149 VERSION:'3.8.0-beta1',
1149 VERSION:'3.8.0-beta2',
11501150 COLLAPSE_INDEX:false,
11511151 FILE_SUFFIX:'.html',
11521152 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Access Control &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Access Control &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Administrator Guide" href="../admin.html"/>
4141 <link rel="next" title="Combining Access Rights" href="access-control/combining-rights.html"/>
4242 <link rel="prev" title="Cyrus Socket Locations" href="ports/sockets.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../operations.html">Operations</a> &raquo;</li>
772772
851851 <script type="text/javascript">
852852 var DOCUMENTATION_OPTIONS = {
853853 URL_ROOT:'../../../',
854 VERSION:'3.8.0-beta1',
854 VERSION:'3.8.0-beta2',
855855 COLLAPSE_INDEX:false,
856856 FILE_SUFFIX:'.html',
857857 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus Backups &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus Backups &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Administrator Guide" href="../admin.html"/>
4141 <link rel="next" title="Cyrus NNTP" href="nntp.html"/>
4242 <link rel="prev" title="Cyrus Sieve" href="sieve.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../operations.html">Operations</a> &raquo;</li>
772772
13051305 <script type="text/javascript">
13061306 var DOCUMENTATION_OPTIONS = {
13071307 URL_ROOT:'../../../',
1308 VERSION:'3.8.0-beta1',
1308 VERSION:'3.8.0-beta2',
13091309 COLLAPSE_INDEX:false,
13101310 FILE_SUFFIX:'.html',
13111311 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Mailbox Distribution &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Mailbox Distribution &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Administrator Guide" href="../admin.html"/>
4141 <link rel="next" title="Cyrus Murder" href="murder/murder.html"/>
4242 <link rel="prev" title="Monitoring" href="monitoring.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../operations.html">Operations</a> &raquo;</li>
772772
10261026 <script type="text/javascript">
10271027 var DOCUMENTATION_OPTIONS = {
10281028 URL_ROOT:'../../../',
1029 VERSION:'3.8.0-beta1',
1029 VERSION:'3.8.0-beta2',
10301030 COLLAPSE_INDEX:false,
10311031 FILE_SUFFIX:'.html',
10321032 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus Event Source &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus Event Source &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Administrator Guide" href="../admin.html"/>
4141 <link rel="next" title="Monitoring" href="monitoring.html"/>
4242 <link rel="prev" title="Managing user_deny.db" href="sop/userdeny.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../operations.html">Operations</a> &raquo;</li>
772772
916916 <script type="text/javascript">
917917 var DOCUMENTATION_OPTIONS = {
918918 URL_ROOT:'../../../',
919 VERSION:'3.8.0-beta1',
919 VERSION:'3.8.0-beta2',
920920 COLLAPSE_INDEX:false,
921921 FILE_SUFFIX:'.html',
922922 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Archive Partitions &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Archive Partitions &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="File &amp; Directory Locations" href="../locations.html"/>
4141 <link rel="next" title="Configuration file locations" href="configuration-state.html"/>
4242 <link rel="prev" title="File &amp; Directory Locations" href="../locations.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
885885 <script type="text/javascript">
886886 var DOCUMENTATION_OPTIONS = {
887887 URL_ROOT:'../../../../',
888 VERSION:'3.8.0-beta1',
888 VERSION:'3.8.0-beta2',
889889 COLLAPSE_INDEX:false,
890890 FILE_SUFFIX:'.html',
891891 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Configuration file locations &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Configuration file locations &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="File &amp; Directory Locations" href="../locations.html"/>
4141 <link rel="next" title="Directory Hashing" href="hashing.html"/>
4242 <link rel="prev" title="Archive Partitions" href="archive-partitions.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
10771077 <script type="text/javascript">
10781078 var DOCUMENTATION_OPTIONS = {
10791079 URL_ROOT:'../../../../',
1080 VERSION:'3.8.0-beta1',
1080 VERSION:'3.8.0-beta2',
10811081 COLLAPSE_INDEX:false,
10821082 FILE_SUFFIX:'.html',
10831083 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Directory Hashing &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Directory Hashing &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="File &amp; Directory Locations" href="../locations.html"/>
4141 <link rel="next" title="Spool Directories" href="mailspool.html"/>
4242 <link rel="prev" title="Configuration file locations" href="configuration-state.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
857857 <script type="text/javascript">
858858 var DOCUMENTATION_OPTIONS = {
859859 URL_ROOT:'../../../../',
860 VERSION:'3.8.0-beta1',
860 VERSION:'3.8.0-beta2',
861861 COLLAPSE_INDEX:false,
862862 FILE_SUFFIX:'.html',
863863 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Spool Directories &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Spool Directories &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="File &amp; Directory Locations" href="../locations.html"/>
4141 <link rel="next" title="Search Tiers" href="searchtiers.html"/>
4242 <link rel="prev" title="Directory Hashing" href="hashing.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
949949 <script type="text/javascript">
950950 var DOCUMENTATION_OPTIONS = {
951951 URL_ROOT:'../../../../',
952 VERSION:'3.8.0-beta1',
952 VERSION:'3.8.0-beta2',
953953 COLLAPSE_INDEX:false,
954954 FILE_SUFFIX:'.html',
955955 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Search Tiers &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Search Tiers &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="File &amp; Directory Locations" href="../locations.html"/>
4141 <link rel="next" title="Ports and Sockets" href="../ports-sockets.html"/>
4242 <link rel="prev" title="Spool Directories" href="mailspool.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
903903 <script type="text/javascript">
904904 var DOCUMENTATION_OPTIONS = {
905905 URL_ROOT:'../../../../',
906 VERSION:'3.8.0-beta1',
906 VERSION:'3.8.0-beta2',
907907 COLLAPSE_INDEX:false,
908908 FILE_SUFFIX:'.html',
909909 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>File &amp; Directory Locations &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>File &amp; Directory Locations &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Administrator Guide" href="../admin.html"/>
4141 <link rel="next" title="Archive Partitions" href="locations/archive-partitions.html"/>
4242 <link rel="prev" title="System Architecture" href="../architecture.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../operations.html">Operations</a> &raquo;</li>
772772
10211021 <script type="text/javascript">
10221022 var DOCUMENTATION_OPTIONS = {
10231023 URL_ROOT:'../../../',
1024 VERSION:'3.8.0-beta1',
1024 VERSION:'3.8.0-beta2',
10251025 COLLAPSE_INDEX:false,
10261026 FILE_SUFFIX:'.html',
10271027 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Monitoring &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Monitoring &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Administrator Guide" href="../admin.html"/>
4141 <link rel="next" title="Mailbox Distribution" href="config-mailboxdistribution.html"/>
4242 <link rel="prev" title="Cyrus Event Source" href="eventsource.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../operations.html">Operations</a> &raquo;</li>
772772
883883 <script type="text/javascript">
884884 var DOCUMENTATION_OPTIONS = {
885885 URL_ROOT:'../../../',
886 VERSION:'3.8.0-beta1',
886 VERSION:'3.8.0-beta2',
887887 COLLAPSE_INDEX:false,
888888 FILE_SUFFIX:'.html',
889889 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus Murder: Concepts &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus Murder: Concepts &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Cyrus Murder" href="murder.html"/>
4141 <link rel="next" title="Cyrus Murder: Installation and Administration" href="murder-installation.html"/>
4242 <link rel="prev" title="Cyrus Murder" href="murder.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
13751375 <script type="text/javascript">
13761376 var DOCUMENTATION_OPTIONS = {
13771377 URL_ROOT:'../../../../',
1378 VERSION:'3.8.0-beta1',
1378 VERSION:'3.8.0-beta2',
13791379 COLLAPSE_INDEX:false,
13801380 FILE_SUFFIX:'.html',
13811381 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus Murder Failure Modes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus Murder Failure Modes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Cyrus Murder" href="murder.html"/>
4141 <link rel="next" title="Cyrus Murder Mail Delivery" href="murder-mail-delivery.html"/>
4242 <link rel="prev" title="Cyrus Murder Mupdate Details" href="murder-mupdate-details.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
871871 <script type="text/javascript">
872872 var DOCUMENTATION_OPTIONS = {
873873 URL_ROOT:'../../../../',
874 VERSION:'3.8.0-beta1',
874 VERSION:'3.8.0-beta2',
875875 COLLAPSE_INDEX:false,
876876 FILE_SUFFIX:'.html',
877877 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus Murder: Installation and Administration &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus Murder: Installation and Administration &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Cyrus Murder" href="murder.html"/>
4141 <link rel="next" title="Cyrus Murder Mupdate Details" href="murder-mupdate-details.html"/>
4242 <link rel="prev" title="Cyrus Murder: Concepts" href="murder-concepts.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
12941294 <script type="text/javascript">
12951295 var DOCUMENTATION_OPTIONS = {
12961296 URL_ROOT:'../../../../',
1297 VERSION:'3.8.0-beta1',
1297 VERSION:'3.8.0-beta2',
12981298 COLLAPSE_INDEX:false,
12991299 FILE_SUFFIX:'.html',
13001300 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus Murder Mail Delivery &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus Murder Mail Delivery &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Cyrus Murder" href="murder.html"/>
4141 <link rel="next" title="HOWTO: Using an NGINX IMAP Proxy" href="../nginx-proxy.html"/>
4242 <link rel="prev" title="Cyrus Murder Failure Modes" href="murder-failure-modes.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
870870 <script type="text/javascript">
871871 var DOCUMENTATION_OPTIONS = {
872872 URL_ROOT:'../../../../',
873 VERSION:'3.8.0-beta1',
873 VERSION:'3.8.0-beta2',
874874 COLLAPSE_INDEX:false,
875875 FILE_SUFFIX:'.html',
876876 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus Murder Mupdate Details &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus Murder Mupdate Details &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Cyrus Murder" href="murder.html"/>
4141 <link rel="next" title="Cyrus Murder Failure Modes" href="murder-failure-modes.html"/>
4242 <link rel="prev" title="Cyrus Murder: Installation and Administration" href="murder-installation.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
994994 <script type="text/javascript">
995995 var DOCUMENTATION_OPTIONS = {
996996 URL_ROOT:'../../../../',
997 VERSION:'3.8.0-beta1',
997 VERSION:'3.8.0-beta2',
998998 COLLAPSE_INDEX:false,
999999 FILE_SUFFIX:'.html',
10001000 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus Murder &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus Murder &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Administrator Guide" href="../../admin.html"/>
4141 <link rel="next" title="Cyrus Murder: Concepts" href="murder-concepts.html"/>
4242 <link rel="prev" title="Mailbox Distribution" href="../config-mailboxdistribution.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
876876 <script type="text/javascript">
877877 var DOCUMENTATION_OPTIONS = {
878878 URL_ROOT:'../../../../',
879 VERSION:'3.8.0-beta1',
879 VERSION:'3.8.0-beta2',
880880 COLLAPSE_INDEX:false,
881881 FILE_SUFFIX:'.html',
882882 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>HOWTO: Using an NGINX IMAP Proxy &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>HOWTO: Using an NGINX IMAP Proxy &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Administrator Guide" href="../admin.html"/>
4141 <link rel="next" title="Tweaking Cyrus IMAP" href="tweaking.html"/>
4242 <link rel="prev" title="Cyrus Murder Mail Delivery" href="murder/murder-mail-delivery.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../operations.html">Operations</a> &raquo;</li>
772772
827827 <script type="text/javascript">
828828 var DOCUMENTATION_OPTIONS = {
829829 URL_ROOT:'../../../',
830 VERSION:'3.8.0-beta1',
830 VERSION:'3.8.0-beta2',
831831 COLLAPSE_INDEX:false,
832832 FILE_SUFFIX:'.html',
833833 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus NNTP &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus NNTP &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Administrator Guide" href="../admin.html"/>
4141 <link rel="next" title="Cyrus Prot Layer" href="protlayer.html"/>
4242 <link rel="prev" title="Cyrus Backups" href="backups.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../operations.html">Operations</a> &raquo;</li>
772772
953953 <script type="text/javascript">
954954 var DOCUMENTATION_OPTIONS = {
955955 URL_ROOT:'../../../',
956 VERSION:'3.8.0-beta1',
956 VERSION:'3.8.0-beta2',
957957 COLLAPSE_INDEX:false,
958958 FILE_SUFFIX:'.html',
959959 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus Service Definitions &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus Service Definitions &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Ports and Sockets" href="../ports-sockets.html"/>
4141 <link rel="next" title="Cyrus Socket Locations" href="sockets.html"/>
4242 <link rel="prev" title="Ports and Sockets" href="../ports-sockets.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
855855 <script type="text/javascript">
856856 var DOCUMENTATION_OPTIONS = {
857857 URL_ROOT:'../../../../',
858 VERSION:'3.8.0-beta1',
858 VERSION:'3.8.0-beta2',
859859 COLLAPSE_INDEX:false,
860860 FILE_SUFFIX:'.html',
861861 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus Socket Locations &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus Socket Locations &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Ports and Sockets" href="../ports-sockets.html"/>
4141 <link rel="next" title="Access Control" href="../access-control.html"/>
4242 <link rel="prev" title="Cyrus Service Definitions" href="services.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
875875 <script type="text/javascript">
876876 var DOCUMENTATION_OPTIONS = {
877877 URL_ROOT:'../../../../',
878 VERSION:'3.8.0-beta1',
878 VERSION:'3.8.0-beta2',
879879 COLLAPSE_INDEX:false,
880880 FILE_SUFFIX:'.html',
881881 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Ports and Sockets &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Ports and Sockets &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Administrator Guide" href="../admin.html"/>
4141 <link rel="next" title="Cyrus Service Definitions" href="ports/services.html"/>
4242 <link rel="prev" title="Search Tiers" href="locations/searchtiers.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../operations.html">Operations</a> &raquo;</li>
772772
837837 <script type="text/javascript">
838838 var DOCUMENTATION_OPTIONS = {
839839 URL_ROOT:'../../../',
840 VERSION:'3.8.0-beta1',
840 VERSION:'3.8.0-beta2',
841841 COLLAPSE_INDEX:false,
842842 FILE_SUFFIX:'.html',
843843 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus Prot Layer &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus Prot Layer &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Administrator Guide" href="../admin.html"/>
4141 <link rel="next" title="Standard Operating Procedures" href="sop.html"/>
4242 <link rel="prev" title="Cyrus NNTP" href="nntp.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../operations.html">Operations</a> &raquo;</li>
772772
881881 <script type="text/javascript">
882882 var DOCUMENTATION_OPTIONS = {
883883 URL_ROOT:'../../../',
884 VERSION:'3.8.0-beta1',
884 VERSION:'3.8.0-beta2',
885885 COLLAPSE_INDEX:false,
886886 FILE_SUFFIX:'.html',
887887 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Quota Roots &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Quota Roots &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Quotas" href="../quotas.html"/>
4141 <link rel="next" title="Supported Quota Types" href="quotatypes.html"/>
4242 <link rel="prev" title="Quotas" href="../quotas.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
850850 <script type="text/javascript">
851851 var DOCUMENTATION_OPTIONS = {
852852 URL_ROOT:'../../../../',
853 VERSION:'3.8.0-beta1',
853 VERSION:'3.8.0-beta2',
854854 COLLAPSE_INDEX:false,
855855 FILE_SUFFIX:'.html',
856856 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Supported Quota Types &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Supported Quota Types &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Quotas" href="../quotas.html"/>
4141 <link rel="next" title="Cyrus Sieve" href="../sieve.html"/>
4242 <link rel="prev" title="Quota Roots" href="quotaroots.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
857857 <script type="text/javascript">
858858 var DOCUMENTATION_OPTIONS = {
859859 URL_ROOT:'../../../../',
860 VERSION:'3.8.0-beta1',
860 VERSION:'3.8.0-beta2',
861861 COLLAPSE_INDEX:false,
862862 FILE_SUFFIX:'.html',
863863 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Quotas &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Quotas &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Administrator Guide" href="../admin.html"/>
4141 <link rel="next" title="Quota Roots" href="quotas/quotaroots.html"/>
4242 <link rel="prev" title="Access Control Lists Rights Reference" href="access-control/rights-reference.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../operations.html">Operations</a> &raquo;</li>
772772
967967 <script type="text/javascript">
968968 var DOCUMENTATION_OPTIONS = {
969969 URL_ROOT:'../../../',
970 VERSION:'3.8.0-beta1',
970 VERSION:'3.8.0-beta2',
971971 COLLAPSE_INDEX:false,
972972 FILE_SUFFIX:'.html',
973973 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus Sieve &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus Sieve &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Administrator Guide" href="../admin.html"/>
4141 <link rel="next" title="Cyrus Backups" href="backups.html"/>
4242 <link rel="prev" title="Supported Quota Types" href="quotas/quotatypes.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../operations.html">Operations</a> &raquo;</li>
772772
10911091 <script type="text/javascript">
10921092 var DOCUMENTATION_OPTIONS = {
10931093 URL_ROOT:'../../../',
1094 VERSION:'3.8.0-beta1',
1094 VERSION:'3.8.0-beta2',
10951095 COLLAPSE_INDEX:false,
10961096 FILE_SUFFIX:'.html',
10971097 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Running Cyrus IMAP Services on Non-Standard Ports &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Running Cyrus IMAP Services on Non-Standard Ports &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Standard Operating Procedures" href="../sop.html"/>
4141 <link rel="next" title="Reconstructing Mailboxes" href="reconstructing.html"/>
4242 <link rel="prev" title="Deleting and Undeleting Messages and Folders" href="deleting.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
867867 <script type="text/javascript">
868868 var DOCUMENTATION_OPTIONS = {
869869 URL_ROOT:'../../../../',
870 VERSION:'3.8.0-beta1',
870 VERSION:'3.8.0-beta2',
871871 COLLAPSE_INDEX:false,
872872 FILE_SUFFIX:'.html',
873873 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Alternative Namespace &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Alternative Namespace &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Standard Operating Procedures" href="../sop.html"/>
4141 <link rel="next" title="Deleting and Undeleting Messages and Folders" href="deleting.html"/>
4242 <link rel="prev" title="Reloading Cyrus IMAP Services" href="reloading.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
837837 <script type="text/javascript">
838838 var DOCUMENTATION_OPTIONS = {
839839 URL_ROOT:'../../../../',
840 VERSION:'3.8.0-beta1',
840 VERSION:'3.8.0-beta2',
841841 COLLAPSE_INDEX:false,
842842 FILE_SUFFIX:'.html',
843843 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Deleting and Undeleting Messages and Folders &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Deleting and Undeleting Messages and Folders &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Standard Operating Procedures" href="../sop.html"/>
4141 <link rel="next" title="Running Cyrus IMAP Services on Non-Standard Ports" href="administration-running.html"/>
4242 <link rel="prev" title="Alternative Namespace" href="altnamespace.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
10101010 <script type="text/javascript">
10111011 var DOCUMENTATION_OPTIONS = {
10121012 URL_ROOT:'../../../../',
1013 VERSION:'3.8.0-beta1',
1013 VERSION:'3.8.0-beta2',
10141014 COLLAPSE_INDEX:false,
10151015 FILE_SUFFIX:'.html',
10161016 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Mailbox Operations &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Mailbox Operations &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Standard Operating Procedures" href="../sop.html"/>
4141 <link rel="next" title="Mailbox Folders exempt from quota" href="mailbox-quota.html"/>
4242 <link rel="prev" title="Replication: Installation and Administration" href="replication.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
836836 <script type="text/javascript">
837837 var DOCUMENTATION_OPTIONS = {
838838 URL_ROOT:'../../../../',
839 VERSION:'3.8.0-beta1',
839 VERSION:'3.8.0-beta2',
840840 COLLAPSE_INDEX:false,
841841 FILE_SUFFIX:'.html',
842842 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Mailbox Folders exempt from quota &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Mailbox Folders exempt from quota &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Mailbox Operations" href="mailbox-operations.html"/>
4141 <link rel="next" title="Reloading Cyrus IMAP Services" href="reloading.html"/>
4242 <link rel="prev" title="Mailbox Operations" href="mailbox-operations.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
844844 <script type="text/javascript">
845845 var DOCUMENTATION_OPTIONS = {
846846 URL_ROOT:'../../../../',
847 VERSION:'3.8.0-beta1',
847 VERSION:'3.8.0-beta2',
848848 COLLAPSE_INDEX:false,
849849 FILE_SUFFIX:'.html',
850850 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Reconstructing Mailboxes &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Reconstructing Mailboxes &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Standard Operating Procedures" href="../sop.html"/>
4141 <link rel="next" title="Using Squatter for Faster IMAP SEARCH" href="squatter.html"/>
4242 <link rel="prev" title="Running Cyrus IMAP Services on Non-Standard Ports" href="administration-running.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
861861 <script type="text/javascript">
862862 var DOCUMENTATION_OPTIONS = {
863863 URL_ROOT:'../../../../',
864 VERSION:'3.8.0-beta1',
864 VERSION:'3.8.0-beta2',
865865 COLLAPSE_INDEX:false,
866866 FILE_SUFFIX:'.html',
867867 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Reloading Cyrus IMAP Services &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Reloading Cyrus IMAP Services &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Standard Operating Procedures" href="../sop.html"/>
4141 <link rel="next" title="Alternative Namespace" href="altnamespace.html"/>
4242 <link rel="prev" title="Mailbox Folders exempt from quota" href="mailbox-quota.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
842842 <script type="text/javascript">
843843 var DOCUMENTATION_OPTIONS = {
844844 URL_ROOT:'../../../../',
845 VERSION:'3.8.0-beta1',
845 VERSION:'3.8.0-beta2',
846846 COLLAPSE_INDEX:false,
847847 FILE_SUFFIX:'.html',
848848 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Replication: Installation and Administration &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Replication: Installation and Administration &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Standard Operating Procedures" href="../sop.html"/>
4141 <link rel="next" title="Mailbox Operations" href="mailbox-operations.html"/>
4242 <link rel="prev" title="Standard Operating Procedures" href="../sop.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
12751275 <script type="text/javascript">
12761276 var DOCUMENTATION_OPTIONS = {
12771277 URL_ROOT:'../../../../',
1278 VERSION:'3.8.0-beta1',
1278 VERSION:'3.8.0-beta2',
12791279 COLLAPSE_INDEX:false,
12801280 FILE_SUFFIX:'.html',
12811281 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Splitting Metadata from Partitions &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Splitting Metadata from Partitions &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Standard Operating Procedures" href="../sop.html"/>
4141 <link rel="next" title="Managing user_deny.db" href="userdeny.html"/>
4242 <link rel="prev" title="Using Squatter for Faster IMAP SEARCH" href="squatter.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
856856 <script type="text/javascript">
857857 var DOCUMENTATION_OPTIONS = {
858858 URL_ROOT:'../../../../',
859 VERSION:'3.8.0-beta1',
859 VERSION:'3.8.0-beta2',
860860 COLLAPSE_INDEX:false,
861861 FILE_SUFFIX:'.html',
862862 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Using Squatter for Faster IMAP SEARCH &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Using Squatter for Faster IMAP SEARCH &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Standard Operating Procedures" href="../sop.html"/>
4141 <link rel="next" title="Splitting Metadata from Partitions" href="splitting-metadata.html"/>
4242 <link rel="prev" title="Reconstructing Mailboxes" href="reconstructing.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
854854 <script type="text/javascript">
855855 var DOCUMENTATION_OPTIONS = {
856856 URL_ROOT:'../../../../',
857 VERSION:'3.8.0-beta1',
857 VERSION:'3.8.0-beta2',
858858 COLLAPSE_INDEX:false,
859859 FILE_SUFFIX:'.html',
860860 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Managing user_deny.db &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Managing user_deny.db &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Standard Operating Procedures" href="../sop.html"/>
4141 <link rel="next" title="Cyrus Event Source" href="../eventsource.html"/>
4242 <link rel="prev" title="Splitting Metadata from Partitions" href="splitting-metadata.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
855855 <script type="text/javascript">
856856 var DOCUMENTATION_OPTIONS = {
857857 URL_ROOT:'../../../../',
858 VERSION:'3.8.0-beta1',
858 VERSION:'3.8.0-beta2',
859859 COLLAPSE_INDEX:false,
860860 FILE_SUFFIX:'.html',
861861 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Standard Operating Procedures &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Standard Operating Procedures &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Administrator Guide" href="../admin.html"/>
4141 <link rel="next" title="Replication: Installation and Administration" href="sop/replication.html"/>
4242 <link rel="prev" title="Cyrus Prot Layer" href="protlayer.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../operations.html">Operations</a> &raquo;</li>
772772
876876 <script type="text/javascript">
877877 var DOCUMENTATION_OPTIONS = {
878878 URL_ROOT:'../../../',
879 VERSION:'3.8.0-beta1',
879 VERSION:'3.8.0-beta2',
880880 COLLAPSE_INDEX:false,
881881 FILE_SUFFIX:'.html',
882882 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Tweaking Cyrus IMAP &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Tweaking Cyrus IMAP &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Administrator Guide" href="../admin.html"/>
4141 <link rel="next" title="Frequently Asked Questions" href="../faq.html"/>
4242 <link rel="prev" title="HOWTO: Using an NGINX IMAP Proxy" href="nginx-proxy.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../operations.html">Operations</a> &raquo;</li>
772772
960960 <script type="text/javascript">
961961 var DOCUMENTATION_OPTIONS = {
962962 URL_ROOT:'../../../',
963 VERSION:'3.8.0-beta1',
963 VERSION:'3.8.0-beta2',
964964 COLLAPSE_INDEX:false,
965965 FILE_SUFFIX:'.html',
966966 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Administrator Guide &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Administrator Guide &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../index.html"/>
4040 <link rel="up" title="Operations" href="../../operations.html"/>
4141 <link rel="next" title="System Architecture" href="architecture.html"/>
4242 <link rel="prev" title="synctest" href="manpages/usercommands/synctest.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../operations.html">Operations</a> &raquo;</li>
772772
958958 <script type="text/javascript">
959959 var DOCUMENTATION_OPTIONS = {
960960 URL_ROOT:'../../',
961 VERSION:'3.8.0-beta1',
961 VERSION:'3.8.0-beta2',
962962 COLLAPSE_INDEX:false,
963963 FILE_SUFFIX:'.html',
964964 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>System Architecture &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>System Architecture &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../index.html"/>
4040 <link rel="up" title="Administrator Guide" href="admin.html"/>
4141 <link rel="next" title="File &amp; Directory Locations" href="admin/locations.html"/>
4242 <link rel="prev" title="Administrator Guide" href="admin.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../operations.html">Operations</a> &raquo;</li>
772772
994994 <script type="text/javascript">
995995 var DOCUMENTATION_OPTIONS = {
996996 URL_ROOT:'../../',
997 VERSION:'3.8.0-beta1',
997 VERSION:'3.8.0-beta2',
998998 COLLAPSE_INDEX:false,
999999 FILE_SUFFIX:'.html',
10001000 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Frequently Asked Questions &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Frequently Asked Questions &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../index.html"/>
4040 <link rel="up" title="Operations" href="../../operations.html"/>
4141 <link rel="next" title="Which database backend should I use for which databases?" href="faqs/feature-database-backend.html"/>
4242 <link rel="prev" title="Tweaking Cyrus IMAP" href="admin/tweaking.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../operations.html">Operations</a> &raquo;</li>
772772
893893 <script type="text/javascript">
894894 var DOCUMENTATION_OPTIONS = {
895895 URL_ROOT:'../../',
896 VERSION:'3.8.0-beta1',
896 VERSION:'3.8.0-beta2',
897897 COLLAPSE_INDEX:false,
898898 FILE_SUFFIX:'.html',
899899 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Which database backend should I use for which databases? &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Which database backend should I use for which databases? &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Frequently Asked Questions" href="../faq.html"/>
4141 <link rel="next" title="Duplicate Delivery Suppression" href="feature-duplicate-delivery.html"/>
4242 <link rel="prev" title="Frequently Asked Questions" href="../faq.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../operations.html">Operations</a> &raquo;</li>
772772
836836 <script type="text/javascript">
837837 var DOCUMENTATION_OPTIONS = {
838838 URL_ROOT:'../../../',
839 VERSION:'3.8.0-beta1',
839 VERSION:'3.8.0-beta2',
840840 COLLAPSE_INDEX:false,
841841 FILE_SUFFIX:'.html',
842842 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Duplicate Delivery Suppression &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Duplicate Delivery Suppression &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Frequently Asked Questions" href="../faq.html"/>
4141 <link rel="next" title="Compilation errors about kssl.h and krb5.h on Red Hat Linux/Fedora" href="install-compilationerrors.html"/>
4242 <link rel="prev" title="Which database backend should I use for which databases?" href="feature-database-backend.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../operations.html">Operations</a> &raquo;</li>
772772
841841 <script type="text/javascript">
842842 var DOCUMENTATION_OPTIONS = {
843843 URL_ROOT:'../../../',
844 VERSION:'3.8.0-beta1',
844 VERSION:'3.8.0-beta2',
845845 COLLAPSE_INDEX:false,
846846 FILE_SUFFIX:'.html',
847847 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Compilation errors about kssl.h and krb5.h on Red Hat Linux/Fedora &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Compilation errors about kssl.h and krb5.h on Red Hat Linux/Fedora &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Frequently Asked Questions" href="../faq.html"/>
4141 <link rel="next" title="Help! There must be an easier way to get all this going..." href="install-install-help.html"/>
4242 <link rel="prev" title="Duplicate Delivery Suppression" href="feature-duplicate-delivery.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../operations.html">Operations</a> &raquo;</li>
772772
888888 <script type="text/javascript">
889889 var DOCUMENTATION_OPTIONS = {
890890 URL_ROOT:'../../../',
891 VERSION:'3.8.0-beta1',
891 VERSION:'3.8.0-beta2',
892892 COLLAPSE_INDEX:false,
893893 FILE_SUFFIX:'.html',
894894 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Help! There must be an easier way to get all this going... &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Help! There must be an easier way to get all this going... &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Frequently Asked Questions" href="../faq.html"/>
4141 <link rel="next" title="OpenSSL Version Mismatches" href="install-linkerwarnings.html"/>
4242 <link rel="prev" title="Compilation errors about kssl.h and krb5.h on Red Hat Linux/Fedora" href="install-compilationerrors.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../operations.html">Operations</a> &raquo;</li>
772772
843843 <script type="text/javascript">
844844 var DOCUMENTATION_OPTIONS = {
845845 URL_ROOT:'../../../',
846 VERSION:'3.8.0-beta1',
846 VERSION:'3.8.0-beta2',
847847 COLLAPSE_INDEX:false,
848848 FILE_SUFFIX:'.html',
849849 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>OpenSSL Version Mismatches &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>OpenSSL Version Mismatches &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Frequently Asked Questions" href="../faq.html"/>
4141 <link rel="next" title="Does the Cyrus Murder support High Availability configurations?" href="r-murder-ha.html"/>
4242 <link rel="prev" title="Help! There must be an easier way to get all this going..." href="install-install-help.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../operations.html">Operations</a> &raquo;</li>
772772
845845 <script type="text/javascript">
846846 var DOCUMENTATION_OPTIONS = {
847847 URL_ROOT:'../../../',
848 VERSION:'3.8.0-beta1',
848 VERSION:'3.8.0-beta2',
849849 COLLAPSE_INDEX:false,
850850 FILE_SUFFIX:'.html',
851851 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Why does Cyrus reject 8-bit characters in the headers of my messages? &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Why does Cyrus reject 8-bit characters in the headers of my messages? &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Frequently Asked Questions" href="../faq.html"/>
4141 <link rel="next" title="Why does Cyrus reject messages with &#34;bare newlines&#34;?" href="interop-barenewlines.html"/>
4242 <link rel="prev" title="Why does Cyrus set the MAIL FROM address of the sender of vacation responses to &#39;&lt;&gt;&#39;?" href="o-vacation-mailfrom.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../operations.html">Operations</a> &raquo;</li>
772772
856856 <script type="text/javascript">
857857 var DOCUMENTATION_OPTIONS = {
858858 URL_ROOT:'../../../',
859 VERSION:'3.8.0-beta1',
859 VERSION:'3.8.0-beta2',
860860 COLLAPSE_INDEX:false,
861861 FILE_SUFFIX:'.html',
862862 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Why does Cyrus reject messages with &#34;bare newlines&#34;? &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Why does Cyrus reject messages with &#34;bare newlines&#34;? &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Frequently Asked Questions" href="../faq.html"/>
4141 <link rel="next" title="How do I get Cyrus Sieve to play nice with Exim?" href="interop-sieve-exim.html"/>
4242 <link rel="prev" title="Why does Cyrus reject 8-bit characters in the headers of my messages?" href="interop-8bit.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../operations.html">Operations</a> &raquo;</li>
772772
828828 <script type="text/javascript">
829829 var DOCUMENTATION_OPTIONS = {
830830 URL_ROOT:'../../../',
831 VERSION:'3.8.0-beta1',
831 VERSION:'3.8.0-beta2',
832832 COLLAPSE_INDEX:false,
833833 FILE_SUFFIX:'.html',
834834 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>How do I get Cyrus Sieve to play nice with Exim? &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>How do I get Cyrus Sieve to play nice with Exim? &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Frequently Asked Questions" href="../faq.html"/>
4141 <link rel="next" title="Why does mail delivery go slow or hang sometimes?" href="interop-slow-delivery.html"/>
4242 <link rel="prev" title="Why does Cyrus reject messages with &#34;bare newlines&#34;?" href="interop-barenewlines.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../operations.html">Operations</a> &raquo;</li>
772772
841841 <script type="text/javascript">
842842 var DOCUMENTATION_OPTIONS = {
843843 URL_ROOT:'../../../',
844 VERSION:'3.8.0-beta1',
844 VERSION:'3.8.0-beta2',
845845 COLLAPSE_INDEX:false,
846846 FILE_SUFFIX:'.html',
847847 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Why does mail delivery go slow or hang sometimes? &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Why does mail delivery go slow or hang sometimes? &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Frequently Asked Questions" href="../faq.html"/>
4141 <link rel="next" title="Developers" href="../../../developers.html"/>
4242 <link rel="prev" title="How do I get Cyrus Sieve to play nice with Exim?" href="interop-sieve-exim.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../operations.html">Operations</a> &raquo;</li>
772772
842842 <script type="text/javascript">
843843 var DOCUMENTATION_OPTIONS = {
844844 URL_ROOT:'../../../',
845 VERSION:'3.8.0-beta1',
845 VERSION:'3.8.0-beta2',
846846 COLLAPSE_INDEX:false,
847847 FILE_SUFFIX:'.html',
848848 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>How do I view ACLs on a mailbox? &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>How do I view ACLs on a mailbox? &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Frequently Asked Questions" href="../faq.html"/>
4141 <link rel="next" title="What annotations are available?" href="o-annotations.html"/>
4242 <link rel="prev" title="Can I have subfolders not appear under INBOX?" href="r-subfolders.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../operations.html">Operations</a> &raquo;</li>
772772
828828 <script type="text/javascript">
829829 var DOCUMENTATION_OPTIONS = {
830830 URL_ROOT:'../../../',
831 VERSION:'3.8.0-beta1',
831 VERSION:'3.8.0-beta2',
832832 COLLAPSE_INDEX:false,
833833 FILE_SUFFIX:'.html',
834834 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>What annotations are available? &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>What annotations are available? &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Frequently Asked Questions" href="../faq.html"/>
4141 <link rel="next" title="Is it safe to put &lt;configdirectory&gt;/proc and &lt;configdirectory&gt;/lock on a tmpfs filesystem?" href="o-configdir-tempfs.html"/>
4242 <link rel="prev" title="How do I view ACLs on a mailbox?" href="o-acls.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../operations.html">Operations</a> &raquo;</li>
772772
889889 <script type="text/javascript">
890890 var DOCUMENTATION_OPTIONS = {
891891 URL_ROOT:'../../../',
892 VERSION:'3.8.0-beta1',
892 VERSION:'3.8.0-beta2',
893893 COLLAPSE_INDEX:false,
894894 FILE_SUFFIX:'.html',
895895 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Is it safe to put &lt;configdirectory&gt;/proc and &lt;configdirectory&gt;/lock on a tmpfs filesystem? &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Is it safe to put &lt;configdirectory&gt;/proc and &lt;configdirectory&gt;/lock on a tmpfs filesystem? &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Frequently Asked Questions" href="../faq.html"/>
4141 <link rel="next" title="How to enable core dumps" href="o-coredump.html"/>
4242 <link rel="prev" title="What annotations are available?" href="o-annotations.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../operations.html">Operations</a> &raquo;</li>
772772
833833 <script type="text/javascript">
834834 var DOCUMENTATION_OPTIONS = {
835835 URL_ROOT:'../../../',
836 VERSION:'3.8.0-beta1',
836 VERSION:'3.8.0-beta2',
837837 COLLAPSE_INDEX:false,
838838 FILE_SUFFIX:'.html',
839839 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>How to enable core dumps &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>How to enable core dumps &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Frequently Asked Questions" href="../faq.html"/>
4141 <link rel="next" title="Why can I not delete a mailbox as an admin user?" href="o-delete-mailbox.html"/>
4242 <link rel="prev" title="Is it safe to put &lt;configdirectory&gt;/proc and &lt;configdirectory&gt;/lock on a tmpfs filesystem?" href="o-configdir-tempfs.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../operations.html">Operations</a> &raquo;</li>
772772
850850 <script type="text/javascript">
851851 var DOCUMENTATION_OPTIONS = {
852852 URL_ROOT:'../../../',
853 VERSION:'3.8.0-beta1',
853 VERSION:'3.8.0-beta2',
854854 COLLAPSE_INDEX:false,
855855 FILE_SUFFIX:'.html',
856856 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Why can I not delete a mailbox as an admin user? &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Why can I not delete a mailbox as an admin user? &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Frequently Asked Questions" href="../faq.html"/>
4141 <link rel="next" title="When is What ... Deleted, Expired, Expunged or Purged?" href="o-deleted-expired-expunged-purged.html"/>
4242 <link rel="prev" title="How to enable core dumps" href="o-coredump.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../operations.html">Operations</a> &raquo;</li>
772772
834834 <script type="text/javascript">
835835 var DOCUMENTATION_OPTIONS = {
836836 URL_ROOT:'../../../',
837 VERSION:'3.8.0-beta1',
837 VERSION:'3.8.0-beta2',
838838 COLLAPSE_INDEX:false,
839839 FILE_SUFFIX:'.html',
840840 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>When is What ... Deleted, Expired, Expunged or Purged? &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>When is What ... Deleted, Expired, Expunged or Purged? &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Frequently Asked Questions" href="../faq.html"/>
4141 <link rel="next" title="Why is deliver.db so large?" href="o-deliverdb-size.html"/>
4242 <link rel="prev" title="Why can I not delete a mailbox as an admin user?" href="o-delete-mailbox.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../operations.html">Operations</a> &raquo;</li>
772772
10471047 <script type="text/javascript">
10481048 var DOCUMENTATION_OPTIONS = {
10491049 URL_ROOT:'../../../',
1050 VERSION:'3.8.0-beta1',
1050 VERSION:'3.8.0-beta2',
10511051 COLLAPSE_INDEX:false,
10521052 FILE_SUFFIX:'.html',
10531053 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Why is deliver.db so large? &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Why is deliver.db so large? &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Frequently Asked Questions" href="../faq.html"/>
4141 <link rel="next" title="I have multiple imapd-SERVICES configured and experience occasional freezes when I try to log in!" href="o-freezes.html"/>
4242 <link rel="prev" title="When is What ... Deleted, Expired, Expunged or Purged?" href="o-deleted-expired-expunged-purged.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../operations.html">Operations</a> &raquo;</li>
772772
835835 <script type="text/javascript">
836836 var DOCUMENTATION_OPTIONS = {
837837 URL_ROOT:'../../../',
838 VERSION:'3.8.0-beta1',
838 VERSION:'3.8.0-beta2',
839839 COLLAPSE_INDEX:false,
840840 FILE_SUFFIX:'.html',
841841 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>I have multiple imapd-SERVICES configured and experience occasional freezes when I try to log in! &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>I have multiple imapd-SERVICES configured and experience occasional freezes when I try to log in! &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Frequently Asked Questions" href="../faq.html"/>
4141 <link rel="next" title="How to run gdb on Cyrus components" href="o-gdb.html"/>
4242 <link rel="prev" title="Why is deliver.db so large?" href="o-deliverdb-size.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../operations.html">Operations</a> &raquo;</li>
772772
837837 <script type="text/javascript">
838838 var DOCUMENTATION_OPTIONS = {
839839 URL_ROOT:'../../../',
840 VERSION:'3.8.0-beta1',
840 VERSION:'3.8.0-beta2',
841841 COLLAPSE_INDEX:false,
842842 FILE_SUFFIX:'.html',
843843 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>How to run gdb on Cyrus components &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>How to run gdb on Cyrus components &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Frequently Asked Questions" href="../faq.html"/>
4141 <link rel="next" title="Cyrus delivers claims that the mailbox does not exist" href="o-mailbox-doesnotexist.html"/>
4242 <link rel="prev" title="I have multiple imapd-SERVICES configured and experience occasional freezes when I try to log in!" href="o-freezes.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../operations.html">Operations</a> &raquo;</li>
772772
851851 <script type="text/javascript">
852852 var DOCUMENTATION_OPTIONS = {
853853 URL_ROOT:'../../../',
854 VERSION:'3.8.0-beta1',
854 VERSION:'3.8.0-beta2',
855855 COLLAPSE_INDEX:false,
856856 FILE_SUFFIX:'.html',
857857 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus delivers claims that the mailbox does not exist &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus delivers claims that the mailbox does not exist &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Frequently Asked Questions" href="../faq.html"/>
4141 <link rel="next" title="Why is mail being rejected with No Mailbox found due to MiXed CaSe incoming e-mail?" href="o-mixedcase.html"/>
4242 <link rel="prev" title="How to run gdb on Cyrus components" href="o-gdb.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../operations.html">Operations</a> &raquo;</li>
772772
841841 <script type="text/javascript">
842842 var DOCUMENTATION_OPTIONS = {
843843 URL_ROOT:'../../../',
844 VERSION:'3.8.0-beta1',
844 VERSION:'3.8.0-beta2',
845845 COLLAPSE_INDEX:false,
846846 FILE_SUFFIX:'.html',
847847 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Why is mail being rejected with No Mailbox found due to MiXed CaSe incoming e-mail? &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Why is mail being rejected with No Mailbox found due to MiXed CaSe incoming e-mail? &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Frequently Asked Questions" href="../faq.html"/>
4141 <link rel="next" title="Can I use MySQL (or another SQL database) as the primary mail store?" href="o-otherdatabases.html"/>
4242 <link rel="prev" title="Cyrus delivers claims that the mailbox does not exist" href="o-mailbox-doesnotexist.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../operations.html">Operations</a> &raquo;</li>
772772
844844 <script type="text/javascript">
845845 var DOCUMENTATION_OPTIONS = {
846846 URL_ROOT:'../../../',
847 VERSION:'3.8.0-beta1',
847 VERSION:'3.8.0-beta2',
848848 COLLAPSE_INDEX:false,
849849 FILE_SUFFIX:'.html',
850850 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Can I use MySQL (or another SQL database) as the primary mail store? &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Can I use MySQL (or another SQL database) as the primary mail store? &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Frequently Asked Questions" href="../faq.html"/>
4141 <link rel="next" title="Why do POP3 connections take so long, but once the connection is established all is well?" href="o-pop3slow.html"/>
4242 <link rel="prev" title="Why is mail being rejected with No Mailbox found due to MiXed CaSe incoming e-mail?" href="o-mixedcase.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../operations.html">Operations</a> &raquo;</li>
772772
841841 <script type="text/javascript">
842842 var DOCUMENTATION_OPTIONS = {
843843 URL_ROOT:'../../../',
844 VERSION:'3.8.0-beta1',
844 VERSION:'3.8.0-beta2',
845845 COLLAPSE_INDEX:false,
846846 FILE_SUFFIX:'.html',
847847 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Why do POP3 connections take so long, but once the connection is established all is well? &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Why do POP3 connections take so long, but once the connection is established all is well? &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Frequently Asked Questions" href="../faq.html"/>
4141 <link rel="next" title="Why does reconstruct -m not work?" href="o-reconstruct.html"/>
4242 <link rel="prev" title="Can I use MySQL (or another SQL database) as the primary mail store?" href="o-otherdatabases.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../operations.html">Operations</a> &raquo;</li>
772772
838838 <script type="text/javascript">
839839 var DOCUMENTATION_OPTIONS = {
840840 URL_ROOT:'../../../',
841 VERSION:'3.8.0-beta1',
841 VERSION:'3.8.0-beta2',
842842 COLLAPSE_INDEX:false,
843843 FILE_SUFFIX:'.html',
844844 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Why does reconstruct -m not work? &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Why does reconstruct -m not work? &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Frequently Asked Questions" href="../faq.html"/>
4141 <link rel="next" title="Shared File Systems GPFS for high availability" href="o-sharedfilesystem-gpfs.html"/>
4242 <link rel="prev" title="Why do POP3 connections take so long, but once the connection is established all is well?" href="o-pop3slow.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../operations.html">Operations</a> &raquo;</li>
772772
850850 <script type="text/javascript">
851851 var DOCUMENTATION_OPTIONS = {
852852 URL_ROOT:'../../../',
853 VERSION:'3.8.0-beta1',
853 VERSION:'3.8.0-beta2',
854854 COLLAPSE_INDEX:false,
855855 FILE_SUFFIX:'.html',
856856 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Shared File Systems GPFS for high availability &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Shared File Systems GPFS for high availability &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Frequently Asked Questions" href="../faq.html"/>
4141 <link rel="next" title="How to enable telemetry" href="o-telemetry.html"/>
4242 <link rel="prev" title="Why does reconstruct -m not work?" href="o-reconstruct.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../operations.html">Operations</a> &raquo;</li>
772772
894894 <script type="text/javascript">
895895 var DOCUMENTATION_OPTIONS = {
896896 URL_ROOT:'../../../',
897 VERSION:'3.8.0-beta1',
897 VERSION:'3.8.0-beta2',
898898 COLLAPSE_INDEX:false,
899899 FILE_SUFFIX:'.html',
900900 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>How to enable telemetry &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>How to enable telemetry &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Frequently Asked Questions" href="../faq.html"/>
4141 <link rel="next" title="The process count keeps growing!" href="o-toomanyprocesses.html"/>
4242 <link rel="prev" title="Shared File Systems GPFS for high availability" href="o-sharedfilesystem-gpfs.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../operations.html">Operations</a> &raquo;</li>
772772
839839 <script type="text/javascript">
840840 var DOCUMENTATION_OPTIONS = {
841841 URL_ROOT:'../../../',
842 VERSION:'3.8.0-beta1',
842 VERSION:'3.8.0-beta2',
843843 COLLAPSE_INDEX:false,
844844 FILE_SUFFIX:'.html',
845845 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>The process count keeps growing! &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>The process count keeps growing! &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Frequently Asked Questions" href="../faq.html"/>
4141 <link rel="next" title="&#34;unable to join environment&#34; error" href="o-unable-join-environment.html"/>
4242 <link rel="prev" title="How to enable telemetry" href="o-telemetry.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../operations.html">Operations</a> &raquo;</li>
772772
843843 <script type="text/javascript">
844844 var DOCUMENTATION_OPTIONS = {
845845 URL_ROOT:'../../../',
846 VERSION:'3.8.0-beta1',
846 VERSION:'3.8.0-beta2',
847847 COLLAPSE_INDEX:false,
848848 FILE_SUFFIX:'.html',
849849 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>&#34;unable to join environment&#34; error &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>&#34;unable to join environment&#34; error &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Frequently Asked Questions" href="../faq.html"/>
4141 <link rel="next" title="Why does Cyrus set the MAIL FROM address of the sender of vacation responses to &#39;&lt;&gt;&#39;?" href="o-vacation-mailfrom.html"/>
4242 <link rel="prev" title="The process count keeps growing!" href="o-toomanyprocesses.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../operations.html">Operations</a> &raquo;</li>
772772
848848 <script type="text/javascript">
849849 var DOCUMENTATION_OPTIONS = {
850850 URL_ROOT:'../../../',
851 VERSION:'3.8.0-beta1',
851 VERSION:'3.8.0-beta2',
852852 COLLAPSE_INDEX:false,
853853 FILE_SUFFIX:'.html',
854854 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Why does Cyrus set the MAIL FROM address of the sender of vacation responses to &#39;&lt;&gt;&#39;? &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Why does Cyrus set the MAIL FROM address of the sender of vacation responses to &#39;&lt;&gt;&#39;? &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Frequently Asked Questions" href="../faq.html"/>
4141 <link rel="next" title="Why does Cyrus reject 8-bit characters in the headers of my messages?" href="interop-8bit.html"/>
4242 <link rel="prev" title="&#34;unable to join environment&#34; error" href="o-unable-join-environment.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../operations.html">Operations</a> &raquo;</li>
772772
863863 <script type="text/javascript">
864864 var DOCUMENTATION_OPTIONS = {
865865 URL_ROOT:'../../../',
866 VERSION:'3.8.0-beta1',
866 VERSION:'3.8.0-beta2',
867867 COLLAPSE_INDEX:false,
868868 FILE_SUFFIX:'.html',
869869 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Does the Cyrus Murder support High Availability configurations? &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Does the Cyrus Murder support High Availability configurations? &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Frequently Asked Questions" href="../faq.html"/>
4141 <link rel="next" title="Can I configure pop3d to log amount and size of messages fetched by user?" href="r-pop3-logging.html"/>
4242 <link rel="prev" title="OpenSSL Version Mismatches" href="install-linkerwarnings.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../operations.html">Operations</a> &raquo;</li>
772772
852852 <script type="text/javascript">
853853 var DOCUMENTATION_OPTIONS = {
854854 URL_ROOT:'../../../',
855 VERSION:'3.8.0-beta1',
855 VERSION:'3.8.0-beta2',
856856 COLLAPSE_INDEX:false,
857857 FILE_SUFFIX:'.html',
858858 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Can I configure pop3d to log amount and size of messages fetched by user? &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Can I configure pop3d to log amount and size of messages fetched by user? &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Frequently Asked Questions" href="../faq.html"/>
4141 <link rel="next" title="How can I make CyrusSieve work with public shared folders?" href="r-publicssharedfolders.html"/>
4242 <link rel="prev" title="Does the Cyrus Murder support High Availability configurations?" href="r-murder-ha.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../operations.html">Operations</a> &raquo;</li>
772772
830830 <script type="text/javascript">
831831 var DOCUMENTATION_OPTIONS = {
832832 URL_ROOT:'../../../',
833 VERSION:'3.8.0-beta1',
833 VERSION:'3.8.0-beta2',
834834 COLLAPSE_INDEX:false,
835835 FILE_SUFFIX:'.html',
836836 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>How can I make CyrusSieve work with public shared folders? &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>How can I make CyrusSieve work with public shared folders? &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Frequently Asked Questions" href="../faq.html"/>
4141 <link rel="next" title="Can I have subfolders not appear under INBOX?" href="r-subfolders.html"/>
4242 <link rel="prev" title="Can I configure pop3d to log amount and size of messages fetched by user?" href="r-pop3-logging.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../operations.html">Operations</a> &raquo;</li>
772772
828828 <script type="text/javascript">
829829 var DOCUMENTATION_OPTIONS = {
830830 URL_ROOT:'../../../',
831 VERSION:'3.8.0-beta1',
831 VERSION:'3.8.0-beta2',
832832 COLLAPSE_INDEX:false,
833833 FILE_SUFFIX:'.html',
834834 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Can I have subfolders not appear under INBOX? &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Can I have subfolders not appear under INBOX? &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Frequently Asked Questions" href="../faq.html"/>
4141 <link rel="next" title="How do I view ACLs on a mailbox?" href="o-acls.html"/>
4242 <link rel="prev" title="How can I make CyrusSieve work with public shared folders?" href="r-publicssharedfolders.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../operations.html">Operations</a> &raquo;</li>
772772
833833 <script type="text/javascript">
834834 var DOCUMENTATION_OPTIONS = {
835835 URL_ROOT:'../../../',
836 VERSION:'3.8.0-beta1',
836 VERSION:'3.8.0-beta2',
837837 COLLAPSE_INDEX:false,
838838 FILE_SUFFIX:'.html',
839839 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>cyrus.conf &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>cyrus.conf &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="imapd.conf" href="imapd.conf.html"/>
4242 <link rel="prev" title="Man pages" href="../index.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
10821082 <script type="text/javascript">
10831083 var DOCUMENTATION_OPTIONS = {
10841084 URL_ROOT:'../../../../',
1085 VERSION:'3.8.0-beta1',
1085 VERSION:'3.8.0-beta2',
10861086 COLLAPSE_INDEX:false,
10871087 FILE_SUFFIX:'.html',
10881088 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>imapd.conf &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>imapd.conf &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="krb.equiv" href="krb.equiv.html"/>
4242 <link rel="prev" title="cyrus.conf" href="cyrus.conf.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
44294429 <script type="text/javascript">
44304430 var DOCUMENTATION_OPTIONS = {
44314431 URL_ROOT:'../../../../',
4432 VERSION:'3.8.0-beta1',
4432 VERSION:'3.8.0-beta2',
44334433 COLLAPSE_INDEX:false,
44344434 FILE_SUFFIX:'.html',
44354435 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>krb.equiv &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>krb.equiv &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="arbitron" href="../systemcommands/arbitron.html"/>
4242 <link rel="prev" title="imapd.conf" href="imapd.conf.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
861861 <script type="text/javascript">
862862 var DOCUMENTATION_OPTIONS = {
863863 URL_ROOT:'../../../../',
864 VERSION:'3.8.0-beta1',
864 VERSION:'3.8.0-beta2',
865865 COLLAPSE_INDEX:false,
866866 FILE_SUFFIX:'.html',
867867 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Man pages &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Man pages &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../index.html"/>
4040 <link rel="up" title="Operations" href="../../../operations.html"/>
4141 <link rel="next" title="cyrus.conf" href="configs/cyrus.conf.html"/>
4242 <link rel="prev" title="Operations" href="../../../operations.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../operations.html">Operations</a> &raquo;</li>
772772
928928 <script type="text/javascript">
929929 var DOCUMENTATION_OPTIONS = {
930930 URL_ROOT:'../../../',
931 VERSION:'3.8.0-beta1',
931 VERSION:'3.8.0-beta2',
932932 COLLAPSE_INDEX:false,
933933 FILE_SUFFIX:'.html',
934934 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>arbitron &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>arbitron &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="backupd" href="backupd.html"/>
4242 <link rel="prev" title="krb.equiv" href="../configs/krb.equiv.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
10031003 <script type="text/javascript">
10041004 var DOCUMENTATION_OPTIONS = {
10051005 URL_ROOT:'../../../../',
1006 VERSION:'3.8.0-beta1',
1006 VERSION:'3.8.0-beta2',
10071007 COLLAPSE_INDEX:false,
10081008 FILE_SUFFIX:'.html',
10091009 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>backupd &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>backupd &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="chk_cyrus" href="chk_cyrus.html"/>
4242 <link rel="prev" title="arbitron" href="arbitron.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
909909 <script type="text/javascript">
910910 var DOCUMENTATION_OPTIONS = {
911911 URL_ROOT:'../../../../',
912 VERSION:'3.8.0-beta1',
912 VERSION:'3.8.0-beta2',
913913 COLLAPSE_INDEX:false,
914914 FILE_SUFFIX:'.html',
915915 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>chk_cyrus &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>chk_cyrus &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="ctl_backups" href="ctl_backups.html"/>
4242 <link rel="prev" title="backupd" href="backupd.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
888888 <script type="text/javascript">
889889 var DOCUMENTATION_OPTIONS = {
890890 URL_ROOT:'../../../../',
891 VERSION:'3.8.0-beta1',
891 VERSION:'3.8.0-beta2',
892892 COLLAPSE_INDEX:false,
893893 FILE_SUFFIX:'.html',
894894 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>ctl_backups &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>ctl_backups &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="ctl_conversationsdb" href="ctl_conversationsdb.html"/>
4242 <link rel="prev" title="chk_cyrus" href="chk_cyrus.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
11001100 <script type="text/javascript">
11011101 var DOCUMENTATION_OPTIONS = {
11021102 URL_ROOT:'../../../../',
1103 VERSION:'3.8.0-beta1',
1103 VERSION:'3.8.0-beta2',
11041104 COLLAPSE_INDEX:false,
11051105 FILE_SUFFIX:'.html',
11061106 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>ctl_conversationsdb &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>ctl_conversationsdb &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="ctl_cyrusdb" href="ctl_cyrusdb.html"/>
4242 <link rel="prev" title="ctl_backups" href="ctl_backups.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
950950 <script type="text/javascript">
951951 var DOCUMENTATION_OPTIONS = {
952952 URL_ROOT:'../../../../',
953 VERSION:'3.8.0-beta1',
953 VERSION:'3.8.0-beta2',
954954 COLLAPSE_INDEX:false,
955955 FILE_SUFFIX:'.html',
956956 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>ctl_cyrusdb &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>ctl_cyrusdb &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="ctl_deliver" href="ctl_deliver.html"/>
4242 <link rel="prev" title="ctl_conversationsdb" href="ctl_conversationsdb.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
920920 <script type="text/javascript">
921921 var DOCUMENTATION_OPTIONS = {
922922 URL_ROOT:'../../../../',
923 VERSION:'3.8.0-beta1',
923 VERSION:'3.8.0-beta2',
924924 COLLAPSE_INDEX:false,
925925 FILE_SUFFIX:'.html',
926926 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>ctl_deliver &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>ctl_deliver &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="ctl_mboxlist" href="ctl_mboxlist.html"/>
4242 <link rel="prev" title="ctl_cyrusdb" href="ctl_cyrusdb.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
890890 <script type="text/javascript">
891891 var DOCUMENTATION_OPTIONS = {
892892 URL_ROOT:'../../../../',
893 VERSION:'3.8.0-beta1',
893 VERSION:'3.8.0-beta2',
894894 COLLAPSE_INDEX:false,
895895 FILE_SUFFIX:'.html',
896896 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>ctl_mboxlist &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>ctl_mboxlist &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="ctl_zoneinfo" href="ctl_zoneinfo.html"/>
4242 <link rel="prev" title="ctl_deliver" href="ctl_deliver.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
10151015 <script type="text/javascript">
10161016 var DOCUMENTATION_OPTIONS = {
10171017 URL_ROOT:'../../../../',
1018 VERSION:'3.8.0-beta1',
1018 VERSION:'3.8.0-beta2',
10191019 COLLAPSE_INDEX:false,
10201020 FILE_SUFFIX:'.html',
10211021 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>ctl_zoneinfo &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>ctl_zoneinfo &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="cvt_cyrusdb" href="cvt_cyrusdb.html"/>
4242 <link rel="prev" title="ctl_mboxlist" href="ctl_mboxlist.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
891891 <script type="text/javascript">
892892 var DOCUMENTATION_OPTIONS = {
893893 URL_ROOT:'../../../../',
894 VERSION:'3.8.0-beta1',
894 VERSION:'3.8.0-beta2',
895895 COLLAPSE_INDEX:false,
896896 FILE_SUFFIX:'.html',
897897 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>cvt_cyrusdb &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>cvt_cyrusdb &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="cvt_xlist_specialuse" href="cvt_xlist_specialuse.html"/>
4242 <link rel="prev" title="ctl_zoneinfo" href="ctl_zoneinfo.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
881881 <script type="text/javascript">
882882 var DOCUMENTATION_OPTIONS = {
883883 URL_ROOT:'../../../../',
884 VERSION:'3.8.0-beta1',
884 VERSION:'3.8.0-beta2',
885885 COLLAPSE_INDEX:false,
886886 FILE_SUFFIX:'.html',
887887 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>cvt_xlist_specialuse &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>cvt_xlist_specialuse &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="cyr_backup" href="cyr_backup.html"/>
4242 <link rel="prev" title="cvt_cyrusdb" href="cvt_cyrusdb.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
879879 <script type="text/javascript">
880880 var DOCUMENTATION_OPTIONS = {
881881 URL_ROOT:'../../../../',
882 VERSION:'3.8.0-beta1',
882 VERSION:'3.8.0-beta2',
883883 COLLAPSE_INDEX:false,
884884 FILE_SUFFIX:'.html',
885885 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>cyr_backup &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>cyr_backup &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="cyr_buildinfo" href="cyr_buildinfo.html"/>
4242 <link rel="prev" title="cvt_xlist_specialuse" href="cvt_xlist_specialuse.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
955955 <script type="text/javascript">
956956 var DOCUMENTATION_OPTIONS = {
957957 URL_ROOT:'../../../../',
958 VERSION:'3.8.0-beta1',
958 VERSION:'3.8.0-beta2',
959959 COLLAPSE_INDEX:false,
960960 FILE_SUFFIX:'.html',
961961 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>cyr_buildinfo &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>cyr_buildinfo &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="cyr_dbtool" href="cyr_dbtool.html"/>
4242 <link rel="prev" title="cyr_backup" href="cyr_backup.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
858858 <script type="text/javascript">
859859 var DOCUMENTATION_OPTIONS = {
860860 URL_ROOT:'../../../../',
861 VERSION:'3.8.0-beta1',
861 VERSION:'3.8.0-beta2',
862862 COLLAPSE_INDEX:false,
863863 FILE_SUFFIX:'.html',
864864 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>cyr_dbtool &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>cyr_dbtool &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="cyr_deny" href="cyr_deny.html"/>
4242 <link rel="prev" title="cyr_buildinfo" href="cyr_buildinfo.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
948948 <script type="text/javascript">
949949 var DOCUMENTATION_OPTIONS = {
950950 URL_ROOT:'../../../../',
951 VERSION:'3.8.0-beta1',
951 VERSION:'3.8.0-beta2',
952952 COLLAPSE_INDEX:false,
953953 FILE_SUFFIX:'.html',
954954 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>cyr_deny &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>cyr_deny &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="cyr_df" href="cyr_df.html"/>
4242 <link rel="prev" title="cyr_dbtool" href="cyr_dbtool.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
897897 <script type="text/javascript">
898898 var DOCUMENTATION_OPTIONS = {
899899 URL_ROOT:'../../../../',
900 VERSION:'3.8.0-beta1',
900 VERSION:'3.8.0-beta2',
901901 COLLAPSE_INDEX:false,
902902 FILE_SUFFIX:'.html',
903903 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>cyr_df &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>cyr_df &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="cyr_expire" href="cyr_expire.html"/>
4242 <link rel="prev" title="cyr_deny" href="cyr_deny.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
872872 <script type="text/javascript">
873873 var DOCUMENTATION_OPTIONS = {
874874 URL_ROOT:'../../../../',
875 VERSION:'3.8.0-beta1',
875 VERSION:'3.8.0-beta2',
876876 COLLAPSE_INDEX:false,
877877 FILE_SUFFIX:'.html',
878878 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>cyr_expire &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>cyr_expire &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="cyr_info" href="cyr_info.html"/>
4242 <link rel="prev" title="cyr_df" href="cyr_df.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
10131013 <script type="text/javascript">
10141014 var DOCUMENTATION_OPTIONS = {
10151015 URL_ROOT:'../../../../',
1016 VERSION:'3.8.0-beta1',
1016 VERSION:'3.8.0-beta2',
10171017 COLLAPSE_INDEX:false,
10181018 FILE_SUFFIX:'.html',
10191019 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>cyr_info &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>cyr_info &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="cyr_ls" href="cyr_ls.html"/>
4242 <link rel="prev" title="cyr_expire" href="cyr_expire.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
954954 <script type="text/javascript">
955955 var DOCUMENTATION_OPTIONS = {
956956 URL_ROOT:'../../../../',
957 VERSION:'3.8.0-beta1',
957 VERSION:'3.8.0-beta2',
958958 COLLAPSE_INDEX:false,
959959 FILE_SUFFIX:'.html',
960960 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>cyr_ls &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>cyr_ls &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="cyr_synclog" href="cyr_synclog.html"/>
4242 <link rel="prev" title="cyr_info" href="cyr_info.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
893893 <script type="text/javascript">
894894 var DOCUMENTATION_OPTIONS = {
895895 URL_ROOT:'../../../../',
896 VERSION:'3.8.0-beta1',
896 VERSION:'3.8.0-beta2',
897897 COLLAPSE_INDEX:false,
898898 FILE_SUFFIX:'.html',
899899 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>cyr_synclog &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>cyr_synclog &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="cyr_userseen" href="cyr_userseen.html"/>
4242 <link rel="prev" title="cyr_ls" href="cyr_ls.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
939939 <script type="text/javascript">
940940 var DOCUMENTATION_OPTIONS = {
941941 URL_ROOT:'../../../../',
942 VERSION:'3.8.0-beta1',
942 VERSION:'3.8.0-beta2',
943943 COLLAPSE_INDEX:false,
944944 FILE_SUFFIX:'.html',
945945 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>cyr_userseen &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>cyr_userseen &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="cyr_virusscan" href="cyr_virusscan.html"/>
4242 <link rel="prev" title="cyr_synclog" href="cyr_synclog.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
892892 <script type="text/javascript">
893893 var DOCUMENTATION_OPTIONS = {
894894 URL_ROOT:'../../../../',
895 VERSION:'3.8.0-beta1',
895 VERSION:'3.8.0-beta2',
896896 COLLAPSE_INDEX:false,
897897 FILE_SUFFIX:'.html',
898898 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>cyr_virusscan &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>cyr_virusscan &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="cyradm" href="cyradm.html"/>
4242 <link rel="prev" title="cyr_userseen" href="cyr_userseen.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
999999 <script type="text/javascript">
10001000 var DOCUMENTATION_OPTIONS = {
10011001 URL_ROOT:'../../../../',
1002 VERSION:'3.8.0-beta1',
1002 VERSION:'3.8.0-beta2',
10031003 COLLAPSE_INDEX:false,
10041004 FILE_SUFFIX:'.html',
10051005 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>cyradm &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>cyradm &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="cyrdump" href="cyrdump.html"/>
4242 <link rel="prev" title="cyr_virusscan" href="cyr_virusscan.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
13751375 <script type="text/javascript">
13761376 var DOCUMENTATION_OPTIONS = {
13771377 URL_ROOT:'../../../../',
1378 VERSION:'3.8.0-beta1',
1378 VERSION:'3.8.0-beta2',
13791379 COLLAPSE_INDEX:false,
13801380 FILE_SUFFIX:'.html',
13811381 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>cyrdump &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>cyrdump &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="deliver" href="deliver.html"/>
4242 <link rel="prev" title="cyradm" href="cyradm.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
851851 <script type="text/javascript">
852852 var DOCUMENTATION_OPTIONS = {
853853 URL_ROOT:'../../../../',
854 VERSION:'3.8.0-beta1',
854 VERSION:'3.8.0-beta2',
855855 COLLAPSE_INDEX:false,
856856 FILE_SUFFIX:'.html',
857857 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>deliver &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>deliver &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="fetchnews" href="fetchnews.html"/>
4242 <link rel="prev" title="cyrdump" href="cyrdump.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
923923 <script type="text/javascript">
924924 var DOCUMENTATION_OPTIONS = {
925925 URL_ROOT:'../../../../',
926 VERSION:'3.8.0-beta1',
926 VERSION:'3.8.0-beta2',
927927 COLLAPSE_INDEX:false,
928928 FILE_SUFFIX:'.html',
929929 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>fetchnews &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>fetchnews &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="fud" href="fud.html"/>
4242 <link rel="prev" title="deliver" href="deliver.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
908908 <script type="text/javascript">
909909 var DOCUMENTATION_OPTIONS = {
910910 URL_ROOT:'../../../../',
911 VERSION:'3.8.0-beta1',
911 VERSION:'3.8.0-beta2',
912912 COLLAPSE_INDEX:false,
913913 FILE_SUFFIX:'.html',
914914 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>fud &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>fud &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="httpd" href="httpd.html"/>
4242 <link rel="prev" title="fetchnews" href="fetchnews.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
933933 <script type="text/javascript">
934934 var DOCUMENTATION_OPTIONS = {
935935 URL_ROOT:'../../../../',
936 VERSION:'3.8.0-beta1',
936 VERSION:'3.8.0-beta2',
937937 COLLAPSE_INDEX:false,
938938 FILE_SUFFIX:'.html',
939939 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>httpd &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>httpd &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="idled" href="idled.html"/>
4242 <link rel="prev" title="fud" href="fud.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
926926 <script type="text/javascript">
927927 var DOCUMENTATION_OPTIONS = {
928928 URL_ROOT:'../../../../',
929 VERSION:'3.8.0-beta1',
929 VERSION:'3.8.0-beta2',
930930 COLLAPSE_INDEX:false,
931931 FILE_SUFFIX:'.html',
932932 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>idled &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>idled &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="imapd" href="imapd.html"/>
4242 <link rel="prev" title="httpd" href="httpd.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
869869 <script type="text/javascript">
870870 var DOCUMENTATION_OPTIONS = {
871871 URL_ROOT:'../../../../',
872 VERSION:'3.8.0-beta1',
872 VERSION:'3.8.0-beta2',
873873 COLLAPSE_INDEX:false,
874874 FILE_SUFFIX:'.html',
875875 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>imapd &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>imapd &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="ipurge" href="ipurge.html"/>
4242 <link rel="prev" title="idled" href="idled.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
932932 <script type="text/javascript">
933933 var DOCUMENTATION_OPTIONS = {
934934 URL_ROOT:'../../../../',
935 VERSION:'3.8.0-beta1',
935 VERSION:'3.8.0-beta2',
936936 COLLAPSE_INDEX:false,
937937 FILE_SUFFIX:'.html',
938938 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>ipurge &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>ipurge &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="lmtpd" href="lmtpd.html"/>
4242 <link rel="prev" title="imapd" href="imapd.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
943943 <script type="text/javascript">
944944 var DOCUMENTATION_OPTIONS = {
945945 URL_ROOT:'../../../../',
946 VERSION:'3.8.0-beta1',
946 VERSION:'3.8.0-beta2',
947947 COLLAPSE_INDEX:false,
948948 FILE_SUFFIX:'.html',
949949 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>lmtpd &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>lmtpd &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="lmtpproxyd" href="lmtpproxyd.html"/>
4242 <link rel="prev" title="ipurge" href="ipurge.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
900900 <script type="text/javascript">
901901 var DOCUMENTATION_OPTIONS = {
902902 URL_ROOT:'../../../../',
903 VERSION:'3.8.0-beta1',
903 VERSION:'3.8.0-beta2',
904904 COLLAPSE_INDEX:false,
905905 FILE_SUFFIX:'.html',
906906 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>lmtpproxyd &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>lmtpproxyd &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="masssievec" href="masssievec.html"/>
4242 <link rel="prev" title="lmtpd" href="lmtpd.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
900900 <script type="text/javascript">
901901 var DOCUMENTATION_OPTIONS = {
902902 URL_ROOT:'../../../../',
903 VERSION:'3.8.0-beta1',
903 VERSION:'3.8.0-beta2',
904904 COLLAPSE_INDEX:false,
905905 FILE_SUFFIX:'.html',
906906 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>masssievec &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>masssievec &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="master" href="master.html"/>
4242 <link rel="prev" title="lmtpproxyd" href="lmtpproxyd.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
802802 <dl class="std option">
803803 <dt id="cmdoption-masssievec-arg-imapd.conf">
804804 <span id="cmdoption-masssievec-arg-imapd-conf"></span><code class="sig-name descname">imapd.conf</code><code class="sig-prename descclassname"></code><a class="headerlink" href="#cmdoption-masssievec-arg-imapd.conf" title="Permalink to this definition">¶</a></dt>
805 <dd><p>Provide an alternate impad.conf. If not specified, uses <code class="docutils literal notranslate"><span class="pre">/etc/imapd.conf</span></code>.</p>
805 <dd><p>Provide an alternate imapd.conf. If not specified, uses <code class="docutils literal notranslate"><span class="pre">/etc/imapd.conf</span></code>.</p>
806806 </dd></dl>
807807
808808 </div>
830830
831831 <div role="contentinfo">
832832 <p>
833 &copy; Copyright 1993–2023, The Cyrus Team. Last updated on Sep 13 2016
833 &copy; Copyright 1993–2023, The Cyrus Team. Last updated on Mar 19 2023
834834 </p>
835835 </div>
836836 Built with <a href="http://sphinx-doc.org/">Sphinx</a> 3.4.3 using a modified <a href="https://readthedocs.org">Read the Docs</a> <a href="https://github.com/snide/sphinx_rtd_theme">theme</a>.
850850 <script type="text/javascript">
851851 var DOCUMENTATION_OPTIONS = {
852852 URL_ROOT:'../../../../',
853 VERSION:'3.8.0-beta1',
853 VERSION:'3.8.0-beta2',
854854 COLLAPSE_INDEX:false,
855855 FILE_SUFFIX:'.html',
856856 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>master &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>master &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="mbexamine" href="mbexamine.html"/>
4242 <link rel="prev" title="masssievec" href="masssievec.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
946946 <script type="text/javascript">
947947 var DOCUMENTATION_OPTIONS = {
948948 URL_ROOT:'../../../../',
949 VERSION:'3.8.0-beta1',
949 VERSION:'3.8.0-beta2',
950950 COLLAPSE_INDEX:false,
951951 FILE_SUFFIX:'.html',
952952 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>mbexamine &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>mbexamine &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="mbpath" href="mbpath.html"/>
4242 <link rel="prev" title="master" href="master.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
10001000 <script type="text/javascript">
10011001 var DOCUMENTATION_OPTIONS = {
10021002 URL_ROOT:'../../../../',
1003 VERSION:'3.8.0-beta1',
1003 VERSION:'3.8.0-beta2',
10041004 COLLAPSE_INDEX:false,
10051005 FILE_SUFFIX:'.html',
10061006 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>mbpath &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>mbpath &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="mbtool" href="mbtool.html"/>
4242 <link rel="prev" title="mbexamine" href="mbexamine.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
959959 <script type="text/javascript">
960960 var DOCUMENTATION_OPTIONS = {
961961 URL_ROOT:'../../../../',
962 VERSION:'3.8.0-beta1',
962 VERSION:'3.8.0-beta2',
963963 COLLAPSE_INDEX:false,
964964 FILE_SUFFIX:'.html',
965965 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>mbtool &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>mbtool &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="mkimap" href="mkimap.html"/>
4242 <link rel="prev" title="mbpath" href="mbpath.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
896896 <script type="text/javascript">
897897 var DOCUMENTATION_OPTIONS = {
898898 URL_ROOT:'../../../../',
899 VERSION:'3.8.0-beta1',
899 VERSION:'3.8.0-beta2',
900900 COLLAPSE_INDEX:false,
901901 FILE_SUFFIX:'.html',
902902 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>mkimap &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>mkimap &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="mknewsgroups" href="mknewsgroups.html"/>
4242 <link rel="prev" title="mbtool" href="mbtool.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
884884 <script type="text/javascript">
885885 var DOCUMENTATION_OPTIONS = {
886886 URL_ROOT:'../../../../',
887 VERSION:'3.8.0-beta1',
887 VERSION:'3.8.0-beta2',
888888 COLLAPSE_INDEX:false,
889889 FILE_SUFFIX:'.html',
890890 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>mknewsgroups &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>mknewsgroups &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="mupdate" href="mupdate.html"/>
4242 <link rel="prev" title="mkimap" href="mkimap.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
890890 <script type="text/javascript">
891891 var DOCUMENTATION_OPTIONS = {
892892 URL_ROOT:'../../../../',
893 VERSION:'3.8.0-beta1',
893 VERSION:'3.8.0-beta2',
894894 COLLAPSE_INDEX:false,
895895 FILE_SUFFIX:'.html',
896896 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>mupdate &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>mupdate &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="nntpd" href="nntpd.html"/>
4242 <link rel="prev" title="mknewsgroups" href="mknewsgroups.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
896896 <script type="text/javascript">
897897 var DOCUMENTATION_OPTIONS = {
898898 URL_ROOT:'../../../../',
899 VERSION:'3.8.0-beta1',
899 VERSION:'3.8.0-beta2',
900900 COLLAPSE_INDEX:false,
901901 FILE_SUFFIX:'.html',
902902 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>nntpd &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>nntpd &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="notifyd" href="notifyd.html"/>
4242 <link rel="prev" title="mupdate" href="mupdate.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
925925 <script type="text/javascript">
926926 var DOCUMENTATION_OPTIONS = {
927927 URL_ROOT:'../../../../',
928 VERSION:'3.8.0-beta1',
928 VERSION:'3.8.0-beta2',
929929 COLLAPSE_INDEX:false,
930930 FILE_SUFFIX:'.html',
931931 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>notifyd &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>notifyd &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="pop3d" href="pop3d.html"/>
4242 <link rel="prev" title="nntpd" href="nntpd.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
913913 <script type="text/javascript">
914914 var DOCUMENTATION_OPTIONS = {
915915 URL_ROOT:'../../../../',
916 VERSION:'3.8.0-beta1',
916 VERSION:'3.8.0-beta2',
917917 COLLAPSE_INDEX:false,
918918 FILE_SUFFIX:'.html',
919919 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>pop3d &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>pop3d &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="pop3proxyd" href="pop3proxyd.html"/>
4242 <link rel="prev" title="notifyd" href="notifyd.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
921921 <script type="text/javascript">
922922 var DOCUMENTATION_OPTIONS = {
923923 URL_ROOT:'../../../../',
924 VERSION:'3.8.0-beta1',
924 VERSION:'3.8.0-beta2',
925925 COLLAPSE_INDEX:false,
926926 FILE_SUFFIX:'.html',
927927 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>pop3proxyd &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>pop3proxyd &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="promstatsd" href="promstatsd.html"/>
4242 <link rel="prev" title="pop3d" href="pop3d.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
900900 <script type="text/javascript">
901901 var DOCUMENTATION_OPTIONS = {
902902 URL_ROOT:'../../../../',
903 VERSION:'3.8.0-beta1',
903 VERSION:'3.8.0-beta2',
904904 COLLAPSE_INDEX:false,
905905 FILE_SUFFIX:'.html',
906906 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>promstatsd &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>promstatsd &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="proxyd" href="proxyd.html"/>
4242 <link rel="prev" title="pop3proxyd" href="pop3proxyd.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
939939 <script type="text/javascript">
940940 var DOCUMENTATION_OPTIONS = {
941941 URL_ROOT:'../../../../',
942 VERSION:'3.8.0-beta1',
942 VERSION:'3.8.0-beta2',
943943 COLLAPSE_INDEX:false,
944944 FILE_SUFFIX:'.html',
945945 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>proxyd &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>proxyd &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="ptdump" href="ptdump.html"/>
4242 <link rel="prev" title="promstatsd" href="promstatsd.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
932932 <script type="text/javascript">
933933 var DOCUMENTATION_OPTIONS = {
934934 URL_ROOT:'../../../../',
935 VERSION:'3.8.0-beta1',
935 VERSION:'3.8.0-beta2',
936936 COLLAPSE_INDEX:false,
937937 FILE_SUFFIX:'.html',
938938 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>ptdump &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>ptdump &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="ptexpire" href="ptexpire.html"/>
4242 <link rel="prev" title="proxyd" href="proxyd.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
855855 <script type="text/javascript">
856856 var DOCUMENTATION_OPTIONS = {
857857 URL_ROOT:'../../../../',
858 VERSION:'3.8.0-beta1',
858 VERSION:'3.8.0-beta2',
859859 COLLAPSE_INDEX:false,
860860 FILE_SUFFIX:'.html',
861861 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>ptexpire &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>ptexpire &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="ptloader" href="ptloader.html"/>
4242 <link rel="prev" title="ptdump" href="ptdump.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
862862 <script type="text/javascript">
863863 var DOCUMENTATION_OPTIONS = {
864864 URL_ROOT:'../../../../',
865 VERSION:'3.8.0-beta1',
865 VERSION:'3.8.0-beta2',
866866 COLLAPSE_INDEX:false,
867867 FILE_SUFFIX:'.html',
868868 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>ptloader &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>ptloader &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="quota" href="quota.html"/>
4242 <link rel="prev" title="ptexpire" href="ptexpire.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
859859 <script type="text/javascript">
860860 var DOCUMENTATION_OPTIONS = {
861861 URL_ROOT:'../../../../',
862 VERSION:'3.8.0-beta1',
862 VERSION:'3.8.0-beta2',
863863 COLLAPSE_INDEX:false,
864864 FILE_SUFFIX:'.html',
865865 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>quota &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>quota &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="reconstruct" href="reconstruct.html"/>
4242 <link rel="prev" title="ptloader" href="ptloader.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
941941 <script type="text/javascript">
942942 var DOCUMENTATION_OPTIONS = {
943943 URL_ROOT:'../../../../',
944 VERSION:'3.8.0-beta1',
944 VERSION:'3.8.0-beta2',
945945 COLLAPSE_INDEX:false,
946946 FILE_SUFFIX:'.html',
947947 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>reconstruct &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>reconstruct &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="rehash" href="rehash.html"/>
4242 <link rel="prev" title="quota" href="quota.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
10841084 <script type="text/javascript">
10851085 var DOCUMENTATION_OPTIONS = {
10861086 URL_ROOT:'../../../../',
1087 VERSION:'3.8.0-beta1',
1087 VERSION:'3.8.0-beta2',
10881088 COLLAPSE_INDEX:false,
10891089 FILE_SUFFIX:'.html',
10901090 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>rehash &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>rehash &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="relocate_by_id" href="relocate_by_id.html"/>
4242 <link rel="prev" title="reconstruct" href="reconstruct.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
894894 <script type="text/javascript">
895895 var DOCUMENTATION_OPTIONS = {
896896 URL_ROOT:'../../../../',
897 VERSION:'3.8.0-beta1',
897 VERSION:'3.8.0-beta2',
898898 COLLAPSE_INDEX:false,
899899 FILE_SUFFIX:'.html',
900900 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>relocate_by_id &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>relocate_by_id &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="restore" href="restore.html"/>
4242 <link rel="prev" title="rehash" href="rehash.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
884884 <script type="text/javascript">
885885 var DOCUMENTATION_OPTIONS = {
886886 URL_ROOT:'../../../../',
887 VERSION:'3.8.0-beta1',
887 VERSION:'3.8.0-beta2',
888888 COLLAPSE_INDEX:false,
889889 FILE_SUFFIX:'.html',
890890 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>restore &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>restore &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="sievec" href="sievec.html"/>
4242 <link rel="prev" title="relocate_by_id" href="relocate_by_id.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
10661066 <script type="text/javascript">
10671067 var DOCUMENTATION_OPTIONS = {
10681068 URL_ROOT:'../../../../',
1069 VERSION:'3.8.0-beta1',
1069 VERSION:'3.8.0-beta2',
10701070 COLLAPSE_INDEX:false,
10711071 FILE_SUFFIX:'.html',
10721072 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>sievec &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>sievec &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="sieved" href="sieved.html"/>
4242 <link rel="prev" title="restore" href="restore.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
849849 <script type="text/javascript">
850850 var DOCUMENTATION_OPTIONS = {
851851 URL_ROOT:'../../../../',
852 VERSION:'3.8.0-beta1',
852 VERSION:'3.8.0-beta2',
853853 COLLAPSE_INDEX:false,
854854 FILE_SUFFIX:'.html',
855855 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>sieved &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>sieved &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="smmapd" href="smmapd.html"/>
4242 <link rel="prev" title="sievec" href="sievec.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
851851 <script type="text/javascript">
852852 var DOCUMENTATION_OPTIONS = {
853853 URL_ROOT:'../../../../',
854 VERSION:'3.8.0-beta1',
854 VERSION:'3.8.0-beta2',
855855 COLLAPSE_INDEX:false,
856856 FILE_SUFFIX:'.html',
857857 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>smmapd &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>smmapd &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="squatter" href="squatter.html"/>
4242 <link rel="prev" title="sieved" href="sieved.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
895895 <script type="text/javascript">
896896 var DOCUMENTATION_OPTIONS = {
897897 URL_ROOT:'../../../../',
898 VERSION:'3.8.0-beta1',
898 VERSION:'3.8.0-beta2',
899899 COLLAPSE_INDEX:false,
900900 FILE_SUFFIX:'.html',
901901 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>squatter &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>squatter &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="sync_client" href="sync_client.html"/>
4242 <link rel="prev" title="smmapd" href="smmapd.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
12551255 <script type="text/javascript">
12561256 var DOCUMENTATION_OPTIONS = {
12571257 URL_ROOT:'../../../../',
1258 VERSION:'3.8.0-beta1',
1258 VERSION:'3.8.0-beta2',
12591259 COLLAPSE_INDEX:false,
12601260 FILE_SUFFIX:'.html',
12611261 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>sync_client &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>sync_client &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="sync_reset" href="sync_reset.html"/>
4242 <link rel="prev" title="squatter" href="squatter.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
10681068 <script type="text/javascript">
10691069 var DOCUMENTATION_OPTIONS = {
10701070 URL_ROOT:'../../../../',
1071 VERSION:'3.8.0-beta1',
1071 VERSION:'3.8.0-beta2',
10721072 COLLAPSE_INDEX:false,
10731073 FILE_SUFFIX:'.html',
10741074 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>sync_reset &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>sync_reset &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="sync_server" href="sync_server.html"/>
4242 <link rel="prev" title="sync_client" href="sync_client.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
870870 <script type="text/javascript">
871871 var DOCUMENTATION_OPTIONS = {
872872 URL_ROOT:'../../../../',
873 VERSION:'3.8.0-beta1',
873 VERSION:'3.8.0-beta2',
874874 COLLAPSE_INDEX:false,
875875 FILE_SUFFIX:'.html',
876876 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>sync_server &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>sync_server &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="timsieved" href="timsieved.html"/>
4242 <link rel="prev" title="sync_reset" href="sync_reset.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
884884 <script type="text/javascript">
885885 var DOCUMENTATION_OPTIONS = {
886886 URL_ROOT:'../../../../',
887 VERSION:'3.8.0-beta1',
887 VERSION:'3.8.0-beta2',
888888 COLLAPSE_INDEX:false,
889889 FILE_SUFFIX:'.html',
890890 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>timsieved &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>timsieved &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="tls_prune" href="tls_prune.html"/>
4242 <link rel="prev" title="sync_server" href="sync_server.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
878878 <script type="text/javascript">
879879 var DOCUMENTATION_OPTIONS = {
880880 URL_ROOT:'../../../../',
881 VERSION:'3.8.0-beta1',
881 VERSION:'3.8.0-beta2',
882882 COLLAPSE_INDEX:false,
883883 FILE_SUFFIX:'.html',
884884 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>tls_prune &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>tls_prune &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="translatesieve" href="translatesieve.html"/>
4242 <link rel="prev" title="timsieved" href="timsieved.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
865865 <script type="text/javascript">
866866 var DOCUMENTATION_OPTIONS = {
867867 URL_ROOT:'../../../../',
868 VERSION:'3.8.0-beta1',
868 VERSION:'3.8.0-beta2',
869869 COLLAPSE_INDEX:false,
870870 FILE_SUFFIX:'.html',
871871 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>translatesieve &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>translatesieve &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="unexpunge" href="unexpunge.html"/>
4242 <link rel="prev" title="tls_prune" href="tls_prune.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
893893 <script type="text/javascript">
894894 var DOCUMENTATION_OPTIONS = {
895895 URL_ROOT:'../../../../',
896 VERSION:'3.8.0-beta1',
896 VERSION:'3.8.0-beta2',
897897 COLLAPSE_INDEX:false,
898898 FILE_SUFFIX:'.html',
899899 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>unexpunge &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>unexpunge &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="arbitronsort.pl" href="../usercommands/arbitronsort.pl.html"/>
4242 <link rel="prev" title="translatesieve" href="translatesieve.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
10301030 <script type="text/javascript">
10311031 var DOCUMENTATION_OPTIONS = {
10321032 URL_ROOT:'../../../../',
1033 VERSION:'3.8.0-beta1',
1033 VERSION:'3.8.0-beta2',
10341034 COLLAPSE_INDEX:false,
10351035 FILE_SUFFIX:'.html',
10361036 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>arbitronsort.pl &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>arbitronsort.pl &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="dav_reconstruct" href="dav_reconstruct.html"/>
4242 <link rel="prev" title="unexpunge" href="../systemcommands/unexpunge.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
849849 <script type="text/javascript">
850850 var DOCUMENTATION_OPTIONS = {
851851 URL_ROOT:'../../../../',
852 VERSION:'3.8.0-beta1',
852 VERSION:'3.8.0-beta2',
853853 COLLAPSE_INDEX:false,
854854 FILE_SUFFIX:'.html',
855855 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>dav_reconstruct &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>dav_reconstruct &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="httptest" href="httptest.html"/>
4242 <link rel="prev" title="arbitronsort.pl" href="arbitronsort.pl.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
865865 <script type="text/javascript">
866866 var DOCUMENTATION_OPTIONS = {
867867 URL_ROOT:'../../../../',
868 VERSION:'3.8.0-beta1',
868 VERSION:'3.8.0-beta2',
869869 COLLAPSE_INDEX:false,
870870 FILE_SUFFIX:'.html',
871871 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>httptest &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>httptest &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="imtest" href="imtest.html"/>
4242 <link rel="prev" title="dav_reconstruct" href="dav_reconstruct.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
10101010 <script type="text/javascript">
10111011 var DOCUMENTATION_OPTIONS = {
10121012 URL_ROOT:'../../../../',
1013 VERSION:'3.8.0-beta1',
1013 VERSION:'3.8.0-beta2',
10141014 COLLAPSE_INDEX:false,
10151015 FILE_SUFFIX:'.html',
10161016 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>imtest &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>imtest &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="installsieve" href="installsieve.html"/>
4242 <link rel="prev" title="httptest" href="httptest.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
10071007 <script type="text/javascript">
10081008 var DOCUMENTATION_OPTIONS = {
10091009 URL_ROOT:'../../../../',
1010 VERSION:'3.8.0-beta1',
1010 VERSION:'3.8.0-beta2',
10111011 COLLAPSE_INDEX:false,
10121012 FILE_SUFFIX:'.html',
10131013 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>installsieve &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>installsieve &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="lmtptest" href="lmtptest.html"/>
4242 <link rel="prev" title="imtest" href="imtest.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
924924 <script type="text/javascript">
925925 var DOCUMENTATION_OPTIONS = {
926926 URL_ROOT:'../../../../',
927 VERSION:'3.8.0-beta1',
927 VERSION:'3.8.0-beta2',
928928 COLLAPSE_INDEX:false,
929929 FILE_SUFFIX:'.html',
930930 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>lmtptest &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>lmtptest &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="mupdatetest" href="mupdatetest.html"/>
4242 <link rel="prev" title="installsieve" href="installsieve.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
10101010 <script type="text/javascript">
10111011 var DOCUMENTATION_OPTIONS = {
10121012 URL_ROOT:'../../../../',
1013 VERSION:'3.8.0-beta1',
1013 VERSION:'3.8.0-beta2',
10141014 COLLAPSE_INDEX:false,
10151015 FILE_SUFFIX:'.html',
10161016 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>mupdatetest &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>mupdatetest &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="nntptest" href="nntptest.html"/>
4242 <link rel="prev" title="lmtptest" href="lmtptest.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
10101010 <script type="text/javascript">
10111011 var DOCUMENTATION_OPTIONS = {
10121012 URL_ROOT:'../../../../',
1013 VERSION:'3.8.0-beta1',
1013 VERSION:'3.8.0-beta2',
10141014 COLLAPSE_INDEX:false,
10151015 FILE_SUFFIX:'.html',
10161016 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>nntptest &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>nntptest &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="pop3test" href="pop3test.html"/>
4242 <link rel="prev" title="mupdatetest" href="mupdatetest.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
831831 <script type="text/javascript">
832832 var DOCUMENTATION_OPTIONS = {
833833 URL_ROOT:'../../../../',
834 VERSION:'3.8.0-beta1',
834 VERSION:'3.8.0-beta2',
835835 COLLAPSE_INDEX:false,
836836 FILE_SUFFIX:'.html',
837837 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>pop3test &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>pop3test &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="sieveshell" href="sieveshell.html"/>
4242 <link rel="prev" title="nntptest" href="nntptest.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
10101010 <script type="text/javascript">
10111011 var DOCUMENTATION_OPTIONS = {
10121012 URL_ROOT:'../../../../',
1013 VERSION:'3.8.0-beta1',
1013 VERSION:'3.8.0-beta2',
10141014 COLLAPSE_INDEX:false,
10151015 FILE_SUFFIX:'.html',
10161016 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>sieveshell &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>sieveshell &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="sivtest" href="sivtest.html"/>
4242 <link rel="prev" title="pop3test" href="pop3test.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
904904 <script type="text/javascript">
905905 var DOCUMENTATION_OPTIONS = {
906906 URL_ROOT:'../../../../',
907 VERSION:'3.8.0-beta1',
907 VERSION:'3.8.0-beta2',
908908 COLLAPSE_INDEX:false,
909909 FILE_SUFFIX:'.html',
910910 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>sivtest &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>sivtest &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="smtptest" href="smtptest.html"/>
4242 <link rel="prev" title="sieveshell" href="sieveshell.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
10101010 <script type="text/javascript">
10111011 var DOCUMENTATION_OPTIONS = {
10121012 URL_ROOT:'../../../../',
1013 VERSION:'3.8.0-beta1',
1013 VERSION:'3.8.0-beta2',
10141014 COLLAPSE_INDEX:false,
10151015 FILE_SUFFIX:'.html',
10161016 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>smtptest &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>smtptest &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="synctest" href="synctest.html"/>
4242 <link rel="prev" title="sivtest" href="sivtest.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
10101010 <script type="text/javascript">
10111011 var DOCUMENTATION_OPTIONS = {
10121012 URL_ROOT:'../../../../',
1013 VERSION:'3.8.0-beta1',
1013 VERSION:'3.8.0-beta2',
10141014 COLLAPSE_INDEX:false,
10151015 FILE_SUFFIX:'.html',
10161016 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>synctest &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>synctest &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../../../index.html"/>
4040 <link rel="up" title="Man pages" href="../index.html"/>
4141 <link rel="next" title="Administrator Guide" href="../../admin.html"/>
4242 <link rel="prev" title="smtptest" href="smtptest.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../../../operations.html">Operations</a> &raquo;</li>
772772
10071007 <script type="text/javascript">
10081008 var DOCUMENTATION_OPTIONS = {
10091009 URL_ROOT:'../../../../',
1010 VERSION:'3.8.0-beta1',
1010 VERSION:'3.8.0-beta2',
10111011 COLLAPSE_INDEX:false,
10121012 FILE_SUFFIX:'.html',
10131013 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>RFCs Supported by Cyrus IMAP &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>RFCs Supported by Cyrus IMAP &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../genindex.html"/>
3838 <link rel="search" title="Search" href="../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../index.html"/>
4040
4141
4242
763763
764764 <div role="navigation" aria-label="breadcrumbs navigation">
765765 <ul class="wy-breadcrumbs">
766 <li><a href="../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
766 <li><a href="../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
767767
768768 <li>RFCs Supported by Cyrus IMAP</li>
769769 <li class="wy-breadcrumbs-aside">
18191819 <script type="text/javascript">
18201820 var DOCUMENTATION_OPTIONS = {
18211821 URL_ROOT:'../',
1822 VERSION:'3.8.0-beta1',
1822 VERSION:'3.8.0-beta2',
18231823 COLLAPSE_INDEX:false,
18241824 FILE_SUFFIX:'.html',
18251825 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Reporting Bugs &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Reporting Bugs &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../index.html"/>
4040 <link rel="up" title="Support/Community" href="../../support.html"/>
4141 <link rel="next" title="Mailing Lists" href="feedback-mailing-lists.html"/>
4242 <link rel="prev" title="Support/Community" href="../../support.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../support.html">Support/Community</a> &raquo;</li>
772772
855855 <script type="text/javascript">
856856 var DOCUMENTATION_OPTIONS = {
857857 URL_ROOT:'../../',
858 VERSION:'3.8.0-beta1',
858 VERSION:'3.8.0-beta2',
859859 COLLAPSE_INDEX:false,
860860 FILE_SUFFIX:'.html',
861861 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Mailing Lists &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Mailing Lists &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../index.html"/>
4040 <link rel="up" title="Support/Community" href="../../support.html"/>
4141 <link rel="next" title="Online Meetings" href="feedback-meetings.html"/>
4242 <link rel="prev" title="Reporting Bugs" href="feedback-bugs.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../support.html">Support/Community</a> &raquo;</li>
772772
855855 <script type="text/javascript">
856856 var DOCUMENTATION_OPTIONS = {
857857 URL_ROOT:'../../',
858 VERSION:'3.8.0-beta1',
858 VERSION:'3.8.0-beta2',
859859 COLLAPSE_INDEX:false,
860860 FILE_SUFFIX:'.html',
861861 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Online Meetings &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Online Meetings &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../../genindex.html"/>
3838 <link rel="search" title="Search" href="../../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../../index.html"/>
4040 <link rel="up" title="Support/Community" href="../../support.html"/>
4141 <link rel="next" title="About Cyrus" href="../../overview/about_cyrus.html"/>
4242 <link rel="prev" title="Mailing Lists" href="feedback-mailing-lists.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../../support.html">Support/Community</a> &raquo;</li>
772772
830830 <script type="text/javascript">
831831 var DOCUMENTATION_OPTIONS = {
832832 URL_ROOT:'../../',
833 VERSION:'3.8.0-beta1',
833 VERSION:'3.8.0-beta2',
834834 COLLAPSE_INDEX:false,
835835 FILE_SUFFIX:'.html',
836836 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>What is Cyrus IMAP? &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>What is Cyrus IMAP? &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="genindex.html"/>
3838 <link rel="search" title="Search" href="search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="#"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="#"/>
4040 <link rel="next" title="Download" href="download.html"/>
4141
4242
764764
765765 <div role="navigation" aria-label="breadcrumbs navigation">
766766 <ul class="wy-breadcrumbs">
767 <li><a href="#">Docs v3.8.0-beta1</a> &raquo;</li>
767 <li><a href="#">Docs v3.8.0-beta2</a> &raquo;</li>
768768
769769 <li>What is Cyrus IMAP?</li>
770770 <li class="wy-breadcrumbs-aside">
783783 <span id="imap-index"></span><h1>What is Cyrus IMAP?<a class="headerlink" href="#what-is-cyrus-imap" title="Permalink to this headline">¶</a></h1>
784784 <p>Cyrus IMAP is an email, contacts and calendar server. Cyrus is free and open source.</p>
785785 <ul class="simple">
786 <li><p>This is the documentation for version 3.8.0-beta1 of Cyrus IMAP: <strong>stable</strong> branch.</p></li>
786 <li><p>This is the documentation for version 3.8.0-beta2 of Cyrus IMAP: <strong>stable</strong> branch.</p></li>
787787 <li><p>The latest development version 3.9.0-alpha0 is at <a class="reference external" href="https://www.cyrusimap.org/dev/">https://www.cyrusimap.org/dev/</a>.</p></li>
788788 </ul>
789789 <div class="section" id="features">
10531053 <script type="text/javascript">
10541054 var DOCUMENTATION_OPTIONS = {
10551055 URL_ROOT:'./',
1056 VERSION:'3.8.0-beta1',
1056 VERSION:'3.8.0-beta2',
10571057 COLLAPSE_INDEX:false,
10581058 FILE_SUFFIX:'.html',
10591059 HAS_SOURCE: true
Binary diff not shown
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Operations &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Operations &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="genindex.html"/>
3838 <link rel="search" title="Search" href="search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="index.html"/>
4040 <link rel="next" title="Man pages" href="imap/reference/manpages/index.html"/>
4141 <link rel="prev" title="Supported Platforms and System Requirements" href="imap/concepts/deployment/supported-platforms.html"/>
4242
765765
766766 <div role="navigation" aria-label="breadcrumbs navigation">
767767 <ul class="wy-breadcrumbs">
768 <li><a href="index.html">Docs v3.8.0-beta1</a> &raquo;</li>
768 <li><a href="index.html">Docs v3.8.0-beta2</a> &raquo;</li>
769769
770770 <li>Operations</li>
771771 <li class="wy-breadcrumbs-aside">
845845 <script type="text/javascript">
846846 var DOCUMENTATION_OPTIONS = {
847847 URL_ROOT:'./',
848 VERSION:'3.8.0-beta1',
848 VERSION:'3.8.0-beta2',
849849 COLLAPSE_INDEX:false,
850850 FILE_SUFFIX:'.html',
851851 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>About Cyrus &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>About Cyrus &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../genindex.html"/>
3838 <link rel="search" title="Search" href="../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../index.html"/>
4040 <link rel="up" title="Support/Community" href="../support.html"/>
4141 <link rel="next" title="About Cyrus" href="what_is_cyrus.html"/>
4242 <link rel="prev" title="Online Meetings" href="../imap/support/feedback-meetings.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../support.html">Support/Community</a> &raquo;</li>
772772
856856 <script type="text/javascript">
857857 var DOCUMENTATION_OPTIONS = {
858858 URL_ROOT:'../',
859 VERSION:'3.8.0-beta1',
859 VERSION:'3.8.0-beta2',
860860 COLLAPSE_INDEX:false,
861861 FILE_SUFFIX:'.html',
862862 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus Bylaws &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus Bylaws &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../genindex.html"/>
3838 <link rel="search" title="Search" href="../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../index.html"/>
4040 <link rel="up" title="About Cyrus" href="about_cyrus.html"/>
4141 <link rel="prev" title="Cyrus History" href="cyrus_history.html"/>
4242
765765
766766 <div role="navigation" aria-label="breadcrumbs navigation">
767767 <ul class="wy-breadcrumbs">
768 <li><a href="../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
768 <li><a href="../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
769769
770770 <li><a href="../support.html">Support/Community</a> &raquo;</li>
771771
872872 <script type="text/javascript">
873873 var DOCUMENTATION_OPTIONS = {
874874 URL_ROOT:'../',
875 VERSION:'3.8.0-beta1',
875 VERSION:'3.8.0-beta2',
876876 COLLAPSE_INDEX:false,
877877 FILE_SUFFIX:'.html',
878878 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus History &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus History &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../genindex.html"/>
3838 <link rel="search" title="Search" href="../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../index.html"/>
4040 <link rel="up" title="About Cyrus" href="about_cyrus.html"/>
4141 <link rel="next" title="Cyrus Bylaws" href="cyrus_bylaws.html"/>
4242 <link rel="prev" title="Cyrus Roadmap" href="cyrus_roadmap.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../support.html">Support/Community</a> &raquo;</li>
772772
842842 <script type="text/javascript">
843843 var DOCUMENTATION_OPTIONS = {
844844 URL_ROOT:'../',
845 VERSION:'3.8.0-beta1',
845 VERSION:'3.8.0-beta2',
846846 COLLAPSE_INDEX:false,
847847 FILE_SUFFIX:'.html',
848848 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Cyrus Roadmap &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Cyrus Roadmap &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../genindex.html"/>
3838 <link rel="search" title="Search" href="../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../index.html"/>
4040 <link rel="up" title="About Cyrus" href="about_cyrus.html"/>
4141 <link rel="next" title="Cyrus History" href="cyrus_history.html"/>
4242 <link rel="prev" title="Who Is Cyrus" href="who_is_cyrus.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../support.html">Support/Community</a> &raquo;</li>
772772
886886 <script type="text/javascript">
887887 var DOCUMENTATION_OPTIONS = {
888888 URL_ROOT:'../',
889 VERSION:'3.8.0-beta1',
889 VERSION:'3.8.0-beta2',
890890 COLLAPSE_INDEX:false,
891891 FILE_SUFFIX:'.html',
892892 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>About Cyrus &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>About Cyrus &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../genindex.html"/>
3838 <link rel="search" title="Search" href="../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../index.html"/>
4040 <link rel="up" title="About Cyrus" href="about_cyrus.html"/>
4141 <link rel="next" title="Who Is Cyrus" href="who_is_cyrus.html"/>
4242 <link rel="prev" title="About Cyrus" href="about_cyrus.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../support.html">Support/Community</a> &raquo;</li>
772772
853853 <script type="text/javascript">
854854 var DOCUMENTATION_OPTIONS = {
855855 URL_ROOT:'../',
856 VERSION:'3.8.0-beta1',
856 VERSION:'3.8.0-beta2',
857857 COLLAPSE_INDEX:false,
858858 FILE_SUFFIX:'.html',
859859 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Who Is Cyrus &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Who Is Cyrus &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="../genindex.html"/>
3838 <link rel="search" title="Search" href="../search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="../index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="../index.html"/>
4040 <link rel="up" title="About Cyrus" href="about_cyrus.html"/>
4141 <link rel="next" title="Cyrus Roadmap" href="cyrus_roadmap.html"/>
4242 <link rel="prev" title="About Cyrus" href="what_is_cyrus.html"/>
766766
767767 <div role="navigation" aria-label="breadcrumbs navigation">
768768 <ul class="wy-breadcrumbs">
769 <li><a href="../index.html">Docs v3.8.0-beta1</a> &raquo;</li>
769 <li><a href="../index.html">Docs v3.8.0-beta2</a> &raquo;</li>
770770
771771 <li><a href="../support.html">Support/Community</a> &raquo;</li>
772772
894894 <script type="text/javascript">
895895 var DOCUMENTATION_OPTIONS = {
896896 URL_ROOT:'../',
897 VERSION:'3.8.0-beta1',
897 VERSION:'3.8.0-beta2',
898898 COLLAPSE_INDEX:false,
899899 FILE_SUFFIX:'.html',
900900 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Overview &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Overview &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="genindex.html"/>
3838 <link rel="search" title="Search" href="search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="index.html"/>
4040 <link rel="next" title="Features" href="imap/concepts/features.html"/>
4141 <link rel="prev" title="Introduction to Cyrus IMAP" href="imap/quickstart/introduction.html"/>
4242
765765
766766 <div role="navigation" aria-label="breadcrumbs navigation">
767767 <ul class="wy-breadcrumbs">
768 <li><a href="index.html">Docs v3.8.0-beta1</a> &raquo;</li>
768 <li><a href="index.html">Docs v3.8.0-beta2</a> &raquo;</li>
769769
770770 <li>Overview</li>
771771 <li class="wy-breadcrumbs-aside">
851851 <script type="text/javascript">
852852 var DOCUMENTATION_OPTIONS = {
853853 URL_ROOT:'./',
854 VERSION:'3.8.0-beta1',
854 VERSION:'3.8.0-beta2',
855855 COLLAPSE_INDEX:false,
856856 FILE_SUFFIX:'.html',
857857 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Preface &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Preface &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="genindex.html"/>
3838 <link rel="search" title="Search" href="search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="index.html"/>
4040
4141
4242
763763
764764 <div role="navigation" aria-label="breadcrumbs navigation">
765765 <ul class="wy-breadcrumbs">
766 <li><a href="index.html">Docs v3.8.0-beta1</a> &raquo;</li>
766 <li><a href="index.html">Docs v3.8.0-beta2</a> &raquo;</li>
767767
768768 <li>Preface</li>
769769 <li class="wy-breadcrumbs-aside">
817817 <script type="text/javascript">
818818 var DOCUMENTATION_OPTIONS = {
819819 URL_ROOT:'./',
820 VERSION:'3.8.0-beta1',
820 VERSION:'3.8.0-beta2',
821821 COLLAPSE_INDEX:false,
822822 FILE_SUFFIX:'.html',
823823 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Quickstart Guide &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Quickstart Guide &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="genindex.html"/>
3838 <link rel="search" title="Search" href="search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="index.html"/>
4040 <link rel="next" title="Introduction to Cyrus IMAP" href="imap/quickstart/introduction.html"/>
4141 <link rel="prev" title="Notes for Packagers" href="imap/download/packagers.html"/>
4242
765765
766766 <div role="navigation" aria-label="breadcrumbs navigation">
767767 <ul class="wy-breadcrumbs">
768 <li><a href="index.html">Docs v3.8.0-beta1</a> &raquo;</li>
768 <li><a href="index.html">Docs v3.8.0-beta2</a> &raquo;</li>
769769
770770 <li>Quickstart Guide</li>
771771 <li class="wy-breadcrumbs-aside">
795795 <p>A quick guide to getting a basic installation of Cyrus up and running in 5 minutes.</p>
796796 <p>The first place to start with a new installation of Cyrus IMAP is with
797797 your OS distribution of choice and their packaging, where available.</p>
798 <p>If there is no Cyrus IMAP 3.8.0-beta1 package available yet
798 <p>If there is no Cyrus IMAP 3.8.0-beta2 package available yet
799799 from your distro, download the official source tarball from <a class="reference external" href="https://github.com/cyrusimap/cyrus-imapd/releases">GitHub</a>. The
800800 <a class="reference internal" href="imap/developer/compiling.html#compiling"><span class="std std-ref">Compiling</span></a> guide will help you get it built and installed.</p>
801801 <div class="section" id="install-cyrus-package-s">
10751075 <script type="text/javascript">
10761076 var DOCUMENTATION_OPTIONS = {
10771077 URL_ROOT:'./',
1078 VERSION:'3.8.0-beta1',
1078 VERSION:'3.8.0-beta2',
10791079 COLLAPSE_INDEX:false,
10801080 FILE_SUFFIX:'.html',
10811081 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Search &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Search &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="genindex.html"/>
3838 <link rel="search" title="Search" href="#"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="index.html"/>
4040
4141
4242
763763
764764 <div role="navigation" aria-label="breadcrumbs navigation">
765765 <ul class="wy-breadcrumbs">
766 <li><a href="index.html">Docs v3.8.0-beta1</a> &raquo;</li>
766 <li><a href="index.html">Docs v3.8.0-beta2</a> &raquo;</li>
767767
768768 <li>Search</li>
769769 <li class="wy-breadcrumbs-aside">
816816 <script type="text/javascript">
817817 var DOCUMENTATION_OPTIONS = {
818818 URL_ROOT:'./',
819 VERSION:'3.8.0-beta1',
819 VERSION:'3.8.0-beta2',
820820 COLLAPSE_INDEX:false,
821821 FILE_SUFFIX:'.html',
822822 HAS_SOURCE: true
0 Search.setIndex({docnames:["contribute","developers","download","glossary","imap/concepts/deployment","imap/concepts/deployment/authentication_and_authorization","imap/concepts/deployment/databases","imap/concepts/deployment/deployment_scenarios","imap/concepts/deployment/known_protocol_limitations","imap/concepts/deployment/mailbox_creation_distribution","imap/concepts/deployment/performance_recommendations","imap/concepts/deployment/storage","imap/concepts/deployment/supported-platforms","imap/concepts/features","imap/concepts/features/access-control","imap/concepts/features/archiving","imap/concepts/features/authentication-kerberos","imap/concepts/features/authentication-ldap","imap/concepts/features/authentication-sql","imap/concepts/features/automatic-creation-of-mailboxes","imap/concepts/features/caldav-collections","imap/concepts/features/carddav","imap/concepts/features/dav-collection-mgmt","imap/concepts/features/dav-components","imap/concepts/features/delayed-delete","imap/concepts/features/delayed-expunge","imap/concepts/features/duplicate-message-delivery-suppression","imap/concepts/features/event-notifications","imap/concepts/features/mail-spool-partitions","imap/concepts/features/mailbox-annotations","imap/concepts/features/mailbox-distribution","imap/concepts/features/mailbox-metadata-partitions","imap/concepts/features/message-annotations","imap/concepts/features/namespaces","imap/concepts/features/quota","imap/concepts/features/sealed-system","imap/concepts/features/server-aggregation","imap/concepts/features/server-side-filtering","imap/concepts/features/shared-seen-state","imap/concepts/features/single-instance-store","imap/concepts/features/virtual-domains","imap/concepts/overview_and_concepts","imap/developer","imap/developer/API","imap/developer/API/cyrusdb","imap/developer/API/cyrusdb2","imap/developer/API/index-api","imap/developer/API/mailbox-api","imap/developer/ancient-releasing","imap/developer/compiling","imap/developer/cyrusworks","imap/developer/developer-testing","imap/developer/documentation","imap/developer/github-guide","imap/developer/guidance","imap/developer/guidance/hacking","imap/developer/guidance/internationalization","imap/developer/guidance/locking","imap/developer/guidance/mailbox-format","imap/developer/guidance/namelocks","imap/developer/guidance/prot","imap/developer/guidance/replication_examples","imap/developer/guidance/replication_protocol","imap/developer/guidance/special_chars","imap/developer/guidance/var_directory_structure","imap/developer/install-xapian","imap/developer/jmap","imap/developer/libraries","imap/developer/libraries/imclient","imap/developer/namespaces","imap/developer/overview","imap/developer/process","imap/developer/releasing","imap/developer/thoughts","imap/developer/thoughts/backup","imap/developer/thoughts/bytecode","imap/developer/thoughts/caldav_scheduling_flowchart","imap/developer/thoughts/improved_mboxlist_sort","imap/developer/thoughts/notes","imap/developer/thoughts/prot-events","imap/developer/unit-tests","imap/download/getcyrus","imap/download/installation/distributions/centos","imap/download/installation/distributions/debian","imap/download/installation/distributions/fedora","imap/download/installation/distributions/opensuse","imap/download/installation/distributions/rhel","imap/download/installation/distributions/ubuntu","imap/download/installation/http/caldav","imap/download/installation/http/carddav","imap/download/installation/http/jmap","imap/download/installation/http/rss","imap/download/installation/http/webdav","imap/download/installation/manage-dav","imap/download/installation/mta/configuration","imap/download/installation/virus","imap/download/packagers","imap/download/release-notes/1/1.x.x","imap/download/release-notes/2.0/2.0.x","imap/download/release-notes/2.1/2.1.x","imap/download/release-notes/2.2/2.2.x","imap/download/release-notes/2.3/index","imap/download/release-notes/2.3/x/2.3.0","imap/download/release-notes/2.3/x/2.3.1","imap/download/release-notes/2.3/x/2.3.10","imap/download/release-notes/2.3/x/2.3.11","imap/download/release-notes/2.3/x/2.3.12","imap/download/release-notes/2.3/x/2.3.13","imap/download/release-notes/2.3/x/2.3.14","imap/download/release-notes/2.3/x/2.3.15","imap/download/release-notes/2.3/x/2.3.16","imap/download/release-notes/2.3/x/2.3.17","imap/download/release-notes/2.3/x/2.3.18","imap/download/release-notes/2.3/x/2.3.19","imap/download/release-notes/2.3/x/2.3.2","imap/download/release-notes/2.3/x/2.3.20","imap/download/release-notes/2.3/x/2.3.3","imap/download/release-notes/2.3/x/2.3.4","imap/download/release-notes/2.3/x/2.3.5","imap/download/release-notes/2.3/x/2.3.6","imap/download/release-notes/2.3/x/2.3.7","imap/download/release-notes/2.3/x/2.3.8","imap/download/release-notes/2.3/x/2.3.9","imap/download/release-notes/2.4-dav/index","imap/download/release-notes/2.4-dav/x/2.4.17-caldav-beta1","imap/download/release-notes/2.4-dav/x/2.4.17-caldav-beta10","imap/download/release-notes/2.4-dav/x/2.4.17-caldav-beta11","imap/download/release-notes/2.4-dav/x/2.4.17-caldav-beta2","imap/download/release-notes/2.4-dav/x/2.4.17-caldav-beta3","imap/download/release-notes/2.4-dav/x/2.4.17-caldav-beta4","imap/download/release-notes/2.4-dav/x/2.4.17-caldav-beta5","imap/download/release-notes/2.4-dav/x/2.4.17-caldav-beta6","imap/download/release-notes/2.4-dav/x/2.4.17-caldav-beta7","imap/download/release-notes/2.4-dav/x/2.4.17-caldav-beta8","imap/download/release-notes/2.4-dav/x/2.4.17-caldav-beta9","imap/download/release-notes/2.4/index","imap/download/release-notes/2.4/x/2.4.0","imap/download/release-notes/2.4/x/2.4.1","imap/download/release-notes/2.4/x/2.4.10","imap/download/release-notes/2.4/x/2.4.11","imap/download/release-notes/2.4/x/2.4.12","imap/download/release-notes/2.4/x/2.4.13","imap/download/release-notes/2.4/x/2.4.14","imap/download/release-notes/2.4/x/2.4.15","imap/download/release-notes/2.4/x/2.4.16","imap/download/release-notes/2.4/x/2.4.17","imap/download/release-notes/2.4/x/2.4.18","imap/download/release-notes/2.4/x/2.4.19","imap/download/release-notes/2.4/x/2.4.2","imap/download/release-notes/2.4/x/2.4.20","imap/download/release-notes/2.4/x/2.4.21","imap/download/release-notes/2.4/x/2.4.22","imap/download/release-notes/2.4/x/2.4.3","imap/download/release-notes/2.4/x/2.4.4","imap/download/release-notes/2.4/x/2.4.5","imap/download/release-notes/2.4/x/2.4.6","imap/download/release-notes/2.4/x/2.4.7","imap/download/release-notes/2.4/x/2.4.8","imap/download/release-notes/2.4/x/2.4.9","imap/download/release-notes/2.5/index","imap/download/release-notes/2.5/x/2.5.0","imap/download/release-notes/2.5/x/2.5.1","imap/download/release-notes/2.5/x/2.5.10","imap/download/release-notes/2.5/x/2.5.11","imap/download/release-notes/2.5/x/2.5.12","imap/download/release-notes/2.5/x/2.5.13","imap/download/release-notes/2.5/x/2.5.15","imap/download/release-notes/2.5/x/2.5.16","imap/download/release-notes/2.5/x/2.5.17","imap/download/release-notes/2.5/x/2.5.2","imap/download/release-notes/2.5/x/2.5.3","imap/download/release-notes/2.5/x/2.5.4","imap/download/release-notes/2.5/x/2.5.5","imap/download/release-notes/2.5/x/2.5.6","imap/download/release-notes/2.5/x/2.5.7","imap/download/release-notes/2.5/x/2.5.8","imap/download/release-notes/2.5/x/2.5.9","imap/download/release-notes/3.0/index","imap/download/release-notes/3.0/x/3.0.0","imap/download/release-notes/3.0/x/3.0.0-beta1","imap/download/release-notes/3.0/x/3.0.0-beta2","imap/download/release-notes/3.0/x/3.0.0-beta3","imap/download/release-notes/3.0/x/3.0.0-beta4","imap/download/release-notes/3.0/x/3.0.0-beta5","imap/download/release-notes/3.0/x/3.0.0-beta6","imap/download/release-notes/3.0/x/3.0.0-rc1","imap/download/release-notes/3.0/x/3.0.0-rc2","imap/download/release-notes/3.0/x/3.0.0-rc3","imap/download/release-notes/3.0/x/3.0.0-rc4","imap/download/release-notes/3.0/x/3.0.1","imap/download/release-notes/3.0/x/3.0.10","imap/download/release-notes/3.0/x/3.0.11","imap/download/release-notes/3.0/x/3.0.12","imap/download/release-notes/3.0/x/3.0.13","imap/download/release-notes/3.0/x/3.0.14","imap/download/release-notes/3.0/x/3.0.15","imap/download/release-notes/3.0/x/3.0.16","imap/download/release-notes/3.0/x/3.0.17","imap/download/release-notes/3.0/x/3.0.18","imap/download/release-notes/3.0/x/3.0.2","imap/download/release-notes/3.0/x/3.0.3","imap/download/release-notes/3.0/x/3.0.4","imap/download/release-notes/3.0/x/3.0.5","imap/download/release-notes/3.0/x/3.0.6","imap/download/release-notes/3.0/x/3.0.7","imap/download/release-notes/3.0/x/3.0.8","imap/download/release-notes/3.0/x/3.0.9","imap/download/release-notes/3.1/index","imap/download/release-notes/3.1/x/3.1.0-dev","imap/download/release-notes/3.1/x/3.1.1","imap/download/release-notes/3.1/x/3.1.2","imap/download/release-notes/3.1/x/3.1.3","imap/download/release-notes/3.1/x/3.1.4","imap/download/release-notes/3.1/x/3.1.5","imap/download/release-notes/3.1/x/3.1.6","imap/download/release-notes/3.1/x/3.1.7","imap/download/release-notes/3.1/x/3.1.8","imap/download/release-notes/3.1/x/3.1.9","imap/download/release-notes/3.2/index","imap/download/release-notes/3.2/x/3.2.0","imap/download/release-notes/3.2/x/3.2.0-beta3","imap/download/release-notes/3.2/x/3.2.0-beta4","imap/download/release-notes/3.2/x/3.2.0-rc1","imap/download/release-notes/3.2/x/3.2.1","imap/download/release-notes/3.2/x/3.2.10","imap/download/release-notes/3.2/x/3.2.11","imap/download/release-notes/3.2/x/3.2.2","imap/download/release-notes/3.2/x/3.2.3","imap/download/release-notes/3.2/x/3.2.4","imap/download/release-notes/3.2/x/3.2.5","imap/download/release-notes/3.2/x/3.2.6","imap/download/release-notes/3.2/x/3.2.7","imap/download/release-notes/3.2/x/3.2.8","imap/download/release-notes/3.2/x/3.2.9","imap/download/release-notes/3.3/index","imap/download/release-notes/3.3/x/3.3.0","imap/download/release-notes/3.3/x/3.3.1","imap/download/release-notes/3.4/index","imap/download/release-notes/3.4/x/3.4.0","imap/download/release-notes/3.4/x/3.4.0-beta1","imap/download/release-notes/3.4/x/3.4.0-beta2","imap/download/release-notes/3.4/x/3.4.0-beta3","imap/download/release-notes/3.4/x/3.4.0-rc1","imap/download/release-notes/3.4/x/3.4.1","imap/download/release-notes/3.4/x/3.4.2","imap/download/release-notes/3.4/x/3.4.3","imap/download/release-notes/3.4/x/3.4.4","imap/download/release-notes/3.4/x/3.4.5","imap/download/release-notes/3.5/index","imap/download/release-notes/3.5/x/3.5.0-alpha0","imap/download/release-notes/3.6/index","imap/download/release-notes/3.6/x/3.6.0","imap/download/release-notes/3.6/x/3.6.0-beta1","imap/download/release-notes/3.6/x/3.6.0-beta2","imap/download/release-notes/3.6/x/3.6.0-beta3","imap/download/release-notes/3.6/x/3.6.0-rc1","imap/download/release-notes/3.6/x/3.6.0-rc2","imap/download/release-notes/3.6/x/3.6.1","imap/download/release-notes/3.7/index","imap/download/release-notes/3.7/x/3.7.0-alpha0","imap/download/release-notes/3.8/index","imap/download/release-notes/3.8/x/3.8.0-alpha0","imap/download/release-notes/3.8/x/3.8.0-beta1","imap/download/release-notes/3.9/index","imap/download/release-notes/3.9/x/3.9.0-alpha0","imap/download/release-notes/index","imap/download/upgrade","imap/installing","imap/quickstart/introduction","imap/reference/admin","imap/reference/admin/access-control","imap/reference/admin/access-control/combining-rights","imap/reference/admin/access-control/defaults","imap/reference/admin/access-control/identifiers","imap/reference/admin/access-control/rights-reference","imap/reference/admin/backups","imap/reference/admin/config-mailboxdistribution","imap/reference/admin/eventsource","imap/reference/admin/locations","imap/reference/admin/locations/archive-partitions","imap/reference/admin/locations/configuration-state","imap/reference/admin/locations/hashing","imap/reference/admin/locations/mailspool","imap/reference/admin/locations/searchtiers","imap/reference/admin/monitoring","imap/reference/admin/murder/murder","imap/reference/admin/murder/murder-concepts","imap/reference/admin/murder/murder-failure-modes","imap/reference/admin/murder/murder-installation","imap/reference/admin/murder/murder-mail-delivery","imap/reference/admin/murder/murder-mupdate-details","imap/reference/admin/nginx-proxy","imap/reference/admin/nntp","imap/reference/admin/ports-sockets","imap/reference/admin/ports/services","imap/reference/admin/ports/sockets","imap/reference/admin/protlayer","imap/reference/admin/quotas","imap/reference/admin/quotas/quotaroots","imap/reference/admin/quotas/quotatypes","imap/reference/admin/sieve","imap/reference/admin/sop","imap/reference/admin/sop/administration-running","imap/reference/admin/sop/altnamespace","imap/reference/admin/sop/deleting","imap/reference/admin/sop/mailbox-operations","imap/reference/admin/sop/mailbox-quota","imap/reference/admin/sop/reconstructing","imap/reference/admin/sop/reloading","imap/reference/admin/sop/replication","imap/reference/admin/sop/splitting-metadata","imap/reference/admin/sop/squatter","imap/reference/admin/sop/userdeny","imap/reference/admin/tweaking","imap/reference/architecture","imap/reference/faq","imap/reference/faqs/feature-database-backend","imap/reference/faqs/feature-duplicate-delivery","imap/reference/faqs/install-compilationerrors","imap/reference/faqs/install-install-help","imap/reference/faqs/install-linkerwarnings","imap/reference/faqs/interop-8bit","imap/reference/faqs/interop-barenewlines","imap/reference/faqs/interop-sieve-exim","imap/reference/faqs/interop-slow-delivery","imap/reference/faqs/o-acls","imap/reference/faqs/o-annotations","imap/reference/faqs/o-configdir-tempfs","imap/reference/faqs/o-coredump","imap/reference/faqs/o-delete-mailbox","imap/reference/faqs/o-deleted-expired-expunged-purged","imap/reference/faqs/o-deliverdb-size","imap/reference/faqs/o-freezes","imap/reference/faqs/o-gdb","imap/reference/faqs/o-mailbox-doesnotexist","imap/reference/faqs/o-mixedcase","imap/reference/faqs/o-otherdatabases","imap/reference/faqs/o-pop3slow","imap/reference/faqs/o-reconstruct","imap/reference/faqs/o-sharedfilesystem-gpfs","imap/reference/faqs/o-telemetry","imap/reference/faqs/o-toomanyprocesses","imap/reference/faqs/o-unable-join-environment","imap/reference/faqs/o-vacation-mailfrom","imap/reference/faqs/r-murder-ha","imap/reference/faqs/r-pop3-logging","imap/reference/faqs/r-publicssharedfolders","imap/reference/faqs/r-subfolders","imap/reference/manpages/configs/cyrus.conf","imap/reference/manpages/configs/imapd.conf","imap/reference/manpages/configs/krb.equiv","imap/reference/manpages/index","imap/reference/manpages/systemcommands/arbitron","imap/reference/manpages/systemcommands/backupd","imap/reference/manpages/systemcommands/chk_cyrus","imap/reference/manpages/systemcommands/ctl_backups","imap/reference/manpages/systemcommands/ctl_conversationsdb","imap/reference/manpages/systemcommands/ctl_cyrusdb","imap/reference/manpages/systemcommands/ctl_deliver","imap/reference/manpages/systemcommands/ctl_mboxlist","imap/reference/manpages/systemcommands/ctl_zoneinfo","imap/reference/manpages/systemcommands/cvt_cyrusdb","imap/reference/manpages/systemcommands/cvt_xlist_specialuse","imap/reference/manpages/systemcommands/cyr_backup","imap/reference/manpages/systemcommands/cyr_buildinfo","imap/reference/manpages/systemcommands/cyr_dbtool","imap/reference/manpages/systemcommands/cyr_deny","imap/reference/manpages/systemcommands/cyr_df","imap/reference/manpages/systemcommands/cyr_expire","imap/reference/manpages/systemcommands/cyr_info","imap/reference/manpages/systemcommands/cyr_ls","imap/reference/manpages/systemcommands/cyr_synclog","imap/reference/manpages/systemcommands/cyr_userseen","imap/reference/manpages/systemcommands/cyr_virusscan","imap/reference/manpages/systemcommands/cyradm","imap/reference/manpages/systemcommands/cyrdump","imap/reference/manpages/systemcommands/deliver","imap/reference/manpages/systemcommands/fetchnews","imap/reference/manpages/systemcommands/fud","imap/reference/manpages/systemcommands/httpd","imap/reference/manpages/systemcommands/idled","imap/reference/manpages/systemcommands/imapd","imap/reference/manpages/systemcommands/ipurge","imap/reference/manpages/systemcommands/lmtpd","imap/reference/manpages/systemcommands/lmtpproxyd","imap/reference/manpages/systemcommands/masssievec","imap/reference/manpages/systemcommands/master","imap/reference/manpages/systemcommands/mbexamine","imap/reference/manpages/systemcommands/mbpath","imap/reference/manpages/systemcommands/mbtool","imap/reference/manpages/systemcommands/mkimap","imap/reference/manpages/systemcommands/mknewsgroups","imap/reference/manpages/systemcommands/mupdate","imap/reference/manpages/systemcommands/nntpd","imap/reference/manpages/systemcommands/notifyd","imap/reference/manpages/systemcommands/pop3d","imap/reference/manpages/systemcommands/pop3proxyd","imap/reference/manpages/systemcommands/promstatsd","imap/reference/manpages/systemcommands/proxyd","imap/reference/manpages/systemcommands/ptdump","imap/reference/manpages/systemcommands/ptexpire","imap/reference/manpages/systemcommands/ptloader","imap/reference/manpages/systemcommands/quota","imap/reference/manpages/systemcommands/reconstruct","imap/reference/manpages/systemcommands/rehash","imap/reference/manpages/systemcommands/relocate_by_id","imap/reference/manpages/systemcommands/restore","imap/reference/manpages/systemcommands/sievec","imap/reference/manpages/systemcommands/sieved","imap/reference/manpages/systemcommands/smmapd","imap/reference/manpages/systemcommands/squatter","imap/reference/manpages/systemcommands/sync_client","imap/reference/manpages/systemcommands/sync_reset","imap/reference/manpages/systemcommands/sync_server","imap/reference/manpages/systemcommands/timsieved","imap/reference/manpages/systemcommands/tls_prune","imap/reference/manpages/systemcommands/translatesieve","imap/reference/manpages/systemcommands/unexpunge","imap/reference/manpages/usercommands/arbitronsort.pl","imap/reference/manpages/usercommands/dav_reconstruct","imap/reference/manpages/usercommands/httptest","imap/reference/manpages/usercommands/imtest","imap/reference/manpages/usercommands/installsieve","imap/reference/manpages/usercommands/lmtptest","imap/reference/manpages/usercommands/mupdatetest","imap/reference/manpages/usercommands/nntptest","imap/reference/manpages/usercommands/pop3test","imap/reference/manpages/usercommands/sieveshell","imap/reference/manpages/usercommands/sivtest","imap/reference/manpages/usercommands/smtptest","imap/reference/manpages/usercommands/synctest","imap/rfc-support","imap/support/feedback-bugs","imap/support/feedback-mailing-lists","imap/support/feedback-meetings","index","operations","overview","overview/about_cyrus","overview/cyrus_bylaws","overview/cyrus_history","overview/cyrus_roadmap","overview/what_is_cyrus","overview/who_is_cyrus","preface","quickstart","setup","sitemap","styles","support"],envversion:{"sphinx.domains.c":2,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":3,"sphinx.domains.index":1,"sphinx.domains.javascript":2,"sphinx.domains.math":2,"sphinx.domains.python":2,"sphinx.domains.rst":2,"sphinx.domains.std":1,"sphinx.ext.intersphinx":1,"sphinx.ext.todo":2,sphinx:56},filenames:["contribute.rst","developers.rst","download.rst","glossary.rst","imap/concepts/deployment.rst","imap/concepts/deployment/authentication_and_authorization.rst","imap/concepts/deployment/databases.rst","imap/concepts/deployment/deployment_scenarios.rst","imap/concepts/deployment/known_protocol_limitations.rst","imap/concepts/deployment/mailbox_creation_distribution.rst","imap/concepts/deployment/performance_recommendations.rst","imap/concepts/deployment/storage.rst","imap/concepts/deployment/supported-platforms.rst","imap/concepts/features.rst","imap/concepts/features/access-control.rst","imap/concepts/features/archiving.rst","imap/concepts/features/authentication-kerberos.rst","imap/concepts/features/authentication-ldap.rst","imap/concepts/features/authentication-sql.rst","imap/concepts/features/automatic-creation-of-mailboxes.rst","imap/concepts/features/caldav-collections.rst","imap/concepts/features/carddav.rst","imap/concepts/features/dav-collection-mgmt.rst","imap/concepts/features/dav-components.rst","imap/concepts/features/delayed-delete.rst","imap/concepts/features/delayed-expunge.rst","imap/concepts/features/duplicate-message-delivery-suppression.rst","imap/concepts/features/event-notifications.rst","imap/concepts/features/mail-spool-partitions.rst","imap/concepts/features/mailbox-annotations.rst","imap/concepts/features/mailbox-distribution.rst","imap/concepts/features/mailbox-metadata-partitions.rst","imap/concepts/features/message-annotations.rst","imap/concepts/features/namespaces.rst","imap/concepts/features/quota.rst","imap/concepts/features/sealed-system.rst","imap/concepts/features/server-aggregation.rst","imap/concepts/features/server-side-filtering.rst","imap/concepts/features/shared-seen-state.rst","imap/concepts/features/single-instance-store.rst","imap/concepts/features/virtual-domains.rst","imap/concepts/overview_and_concepts.rst","imap/developer.rst","imap/developer/API.rst","imap/developer/API/cyrusdb.rst","imap/developer/API/cyrusdb2.rst","imap/developer/API/index-api.rst","imap/developer/API/mailbox-api.rst","imap/developer/ancient-releasing.rst","imap/developer/compiling.rst","imap/developer/cyrusworks.rst","imap/developer/developer-testing.rst","imap/developer/documentation.rst","imap/developer/github-guide.rst","imap/developer/guidance.rst","imap/developer/guidance/hacking.rst","imap/developer/guidance/internationalization.rst","imap/developer/guidance/locking.rst","imap/developer/guidance/mailbox-format.rst","imap/developer/guidance/namelocks.rst","imap/developer/guidance/prot.rst","imap/developer/guidance/replication_examples.rst","imap/developer/guidance/replication_protocol.rst","imap/developer/guidance/special_chars.rst","imap/developer/guidance/var_directory_structure.rst","imap/developer/install-xapian.rst","imap/developer/jmap.rst","imap/developer/libraries.rst","imap/developer/libraries/imclient.rst","imap/developer/namespaces.rst","imap/developer/overview.rst","imap/developer/process.rst","imap/developer/releasing.rst","imap/developer/thoughts.rst","imap/developer/thoughts/backup.rst","imap/developer/thoughts/bytecode.rst","imap/developer/thoughts/caldav_scheduling_flowchart.rst","imap/developer/thoughts/improved_mboxlist_sort.rst","imap/developer/thoughts/notes.rst","imap/developer/thoughts/prot-events.rst","imap/developer/unit-tests.rst","imap/download/getcyrus.rst","imap/download/installation/distributions/centos.rst","imap/download/installation/distributions/debian.rst","imap/download/installation/distributions/fedora.rst","imap/download/installation/distributions/opensuse.rst","imap/download/installation/distributions/rhel.rst","imap/download/installation/distributions/ubuntu.rst","imap/download/installation/http/caldav.rst","imap/download/installation/http/carddav.rst","imap/download/installation/http/jmap.rst","imap/download/installation/http/rss.rst","imap/download/installation/http/webdav.rst","imap/download/installation/manage-dav.rst","imap/download/installation/mta/configuration.rst","imap/download/installation/virus.rst","imap/download/packagers.rst","imap/download/release-notes/1/1.x.x.rst","imap/download/release-notes/2.0/2.0.x.rst","imap/download/release-notes/2.1/2.1.x.rst","imap/download/release-notes/2.2/2.2.x.rst","imap/download/release-notes/2.3/index.rst","imap/download/release-notes/2.3/x/2.3.0.rst","imap/download/release-notes/2.3/x/2.3.1.rst","imap/download/release-notes/2.3/x/2.3.10.rst","imap/download/release-notes/2.3/x/2.3.11.rst","imap/download/release-notes/2.3/x/2.3.12.rst","imap/download/release-notes/2.3/x/2.3.13.rst","imap/download/release-notes/2.3/x/2.3.14.rst","imap/download/release-notes/2.3/x/2.3.15.rst","imap/download/release-notes/2.3/x/2.3.16.rst","imap/download/release-notes/2.3/x/2.3.17.rst","imap/download/release-notes/2.3/x/2.3.18.rst","imap/download/release-notes/2.3/x/2.3.19.rst","imap/download/release-notes/2.3/x/2.3.2.rst","imap/download/release-notes/2.3/x/2.3.20.rst","imap/download/release-notes/2.3/x/2.3.3.rst","imap/download/release-notes/2.3/x/2.3.4.rst","imap/download/release-notes/2.3/x/2.3.5.rst","imap/download/release-notes/2.3/x/2.3.6.rst","imap/download/release-notes/2.3/x/2.3.7.rst","imap/download/release-notes/2.3/x/2.3.8.rst","imap/download/release-notes/2.3/x/2.3.9.rst","imap/download/release-notes/2.4-dav/index.rst","imap/download/release-notes/2.4-dav/x/2.4.17-caldav-beta1.rst","imap/download/release-notes/2.4-dav/x/2.4.17-caldav-beta10.rst","imap/download/release-notes/2.4-dav/x/2.4.17-caldav-beta11.rst","imap/download/release-notes/2.4-dav/x/2.4.17-caldav-beta2.rst","imap/download/release-notes/2.4-dav/x/2.4.17-caldav-beta3.rst","imap/download/release-notes/2.4-dav/x/2.4.17-caldav-beta4.rst","imap/download/release-notes/2.4-dav/x/2.4.17-caldav-beta5.rst","imap/download/release-notes/2.4-dav/x/2.4.17-caldav-beta6.rst","imap/download/release-notes/2.4-dav/x/2.4.17-caldav-beta7.rst","imap/download/release-notes/2.4-dav/x/2.4.17-caldav-beta8.rst","imap/download/release-notes/2.4-dav/x/2.4.17-caldav-beta9.rst","imap/download/release-notes/2.4/index.rst","imap/download/release-notes/2.4/x/2.4.0.rst","imap/download/release-notes/2.4/x/2.4.1.rst","imap/download/release-notes/2.4/x/2.4.10.rst","imap/download/release-notes/2.4/x/2.4.11.rst","imap/download/release-notes/2.4/x/2.4.12.rst","imap/download/release-notes/2.4/x/2.4.13.rst","imap/download/release-notes/2.4/x/2.4.14.rst","imap/download/release-notes/2.4/x/2.4.15.rst","imap/download/release-notes/2.4/x/2.4.16.rst","imap/download/release-notes/2.4/x/2.4.17.rst","imap/download/release-notes/2.4/x/2.4.18.rst","imap/download/release-notes/2.4/x/2.4.19.rst","imap/download/release-notes/2.4/x/2.4.2.rst","imap/download/release-notes/2.4/x/2.4.20.rst","imap/download/release-notes/2.4/x/2.4.21.rst","imap/download/release-notes/2.4/x/2.4.22.rst","imap/download/release-notes/2.4/x/2.4.3.rst","imap/download/release-notes/2.4/x/2.4.4.rst","imap/download/release-notes/2.4/x/2.4.5.rst","imap/download/release-notes/2.4/x/2.4.6.rst","imap/download/release-notes/2.4/x/2.4.7.rst","imap/download/release-notes/2.4/x/2.4.8.rst","imap/download/release-notes/2.4/x/2.4.9.rst","imap/download/release-notes/2.5/index.rst","imap/download/release-notes/2.5/x/2.5.0.rst","imap/download/release-notes/2.5/x/2.5.1.rst","imap/download/release-notes/2.5/x/2.5.10.rst","imap/download/release-notes/2.5/x/2.5.11.rst","imap/download/release-notes/2.5/x/2.5.12.rst","imap/download/release-notes/2.5/x/2.5.13.rst","imap/download/release-notes/2.5/x/2.5.15.rst","imap/download/release-notes/2.5/x/2.5.16.rst","imap/download/release-notes/2.5/x/2.5.17.rst","imap/download/release-notes/2.5/x/2.5.2.rst","imap/download/release-notes/2.5/x/2.5.3.rst","imap/download/release-notes/2.5/x/2.5.4.rst","imap/download/release-notes/2.5/x/2.5.5.rst","imap/download/release-notes/2.5/x/2.5.6.rst","imap/download/release-notes/2.5/x/2.5.7.rst","imap/download/release-notes/2.5/x/2.5.8.rst","imap/download/release-notes/2.5/x/2.5.9.rst","imap/download/release-notes/3.0/index.rst","imap/download/release-notes/3.0/x/3.0.0.rst","imap/download/release-notes/3.0/x/3.0.0-beta1.rst","imap/download/release-notes/3.0/x/3.0.0-beta2.rst","imap/download/release-notes/3.0/x/3.0.0-beta3.rst","imap/download/release-notes/3.0/x/3.0.0-beta4.rst","imap/download/release-notes/3.0/x/3.0.0-beta5.rst","imap/download/release-notes/3.0/x/3.0.0-beta6.rst","imap/download/release-notes/3.0/x/3.0.0-rc1.rst","imap/download/release-notes/3.0/x/3.0.0-rc2.rst","imap/download/release-notes/3.0/x/3.0.0-rc3.rst","imap/download/release-notes/3.0/x/3.0.0-rc4.rst","imap/download/release-notes/3.0/x/3.0.1.rst","imap/download/release-notes/3.0/x/3.0.10.rst","imap/download/release-notes/3.0/x/3.0.11.rst","imap/download/release-notes/3.0/x/3.0.12.rst","imap/download/release-notes/3.0/x/3.0.13.rst","imap/download/release-notes/3.0/x/3.0.14.rst","imap/download/release-notes/3.0/x/3.0.15.rst","imap/download/release-notes/3.0/x/3.0.16.rst","imap/download/release-notes/3.0/x/3.0.17.rst","imap/download/release-notes/3.0/x/3.0.18.rst","imap/download/release-notes/3.0/x/3.0.2.rst","imap/download/release-notes/3.0/x/3.0.3.rst","imap/download/release-notes/3.0/x/3.0.4.rst","imap/download/release-notes/3.0/x/3.0.5.rst","imap/download/release-notes/3.0/x/3.0.6.rst","imap/download/release-notes/3.0/x/3.0.7.rst","imap/download/release-notes/3.0/x/3.0.8.rst","imap/download/release-notes/3.0/x/3.0.9.rst","imap/download/release-notes/3.1/index.rst","imap/download/release-notes/3.1/x/3.1.0-dev.rst","imap/download/release-notes/3.1/x/3.1.1.rst","imap/download/release-notes/3.1/x/3.1.2.rst","imap/download/release-notes/3.1/x/3.1.3.rst","imap/download/release-notes/3.1/x/3.1.4.rst","imap/download/release-notes/3.1/x/3.1.5.rst","imap/download/release-notes/3.1/x/3.1.6.rst","imap/download/release-notes/3.1/x/3.1.7.rst","imap/download/release-notes/3.1/x/3.1.8.rst","imap/download/release-notes/3.1/x/3.1.9.rst","imap/download/release-notes/3.2/index.rst","imap/download/release-notes/3.2/x/3.2.0.rst","imap/download/release-notes/3.2/x/3.2.0-beta3.rst","imap/download/release-notes/3.2/x/3.2.0-beta4.rst","imap/download/release-notes/3.2/x/3.2.0-rc1.rst","imap/download/release-notes/3.2/x/3.2.1.rst","imap/download/release-notes/3.2/x/3.2.10.rst","imap/download/release-notes/3.2/x/3.2.11.rst","imap/download/release-notes/3.2/x/3.2.2.rst","imap/download/release-notes/3.2/x/3.2.3.rst","imap/download/release-notes/3.2/x/3.2.4.rst","imap/download/release-notes/3.2/x/3.2.5.rst","imap/download/release-notes/3.2/x/3.2.6.rst","imap/download/release-notes/3.2/x/3.2.7.rst","imap/download/release-notes/3.2/x/3.2.8.rst","imap/download/release-notes/3.2/x/3.2.9.rst","imap/download/release-notes/3.3/index.rst","imap/download/release-notes/3.3/x/3.3.0.rst","imap/download/release-notes/3.3/x/3.3.1.rst","imap/download/release-notes/3.4/index.rst","imap/download/release-notes/3.4/x/3.4.0.rst","imap/download/release-notes/3.4/x/3.4.0-beta1.rst","imap/download/release-notes/3.4/x/3.4.0-beta2.rst","imap/download/release-notes/3.4/x/3.4.0-beta3.rst","imap/download/release-notes/3.4/x/3.4.0-rc1.rst","imap/download/release-notes/3.4/x/3.4.1.rst","imap/download/release-notes/3.4/x/3.4.2.rst","imap/download/release-notes/3.4/x/3.4.3.rst","imap/download/release-notes/3.4/x/3.4.4.rst","imap/download/release-notes/3.4/x/3.4.5.rst","imap/download/release-notes/3.5/index.rst","imap/download/release-notes/3.5/x/3.5.0-alpha0.rst","imap/download/release-notes/3.6/index.rst","imap/download/release-notes/3.6/x/3.6.0.rst","imap/download/release-notes/3.6/x/3.6.0-beta1.rst","imap/download/release-notes/3.6/x/3.6.0-beta2.rst","imap/download/release-notes/3.6/x/3.6.0-beta3.rst","imap/download/release-notes/3.6/x/3.6.0-rc1.rst","imap/download/release-notes/3.6/x/3.6.0-rc2.rst","imap/download/release-notes/3.6/x/3.6.1.rst","imap/download/release-notes/3.7/index.rst","imap/download/release-notes/3.7/x/3.7.0-alpha0.rst","imap/download/release-notes/3.8/index.rst","imap/download/release-notes/3.8/x/3.8.0-alpha0.rst","imap/download/release-notes/3.8/x/3.8.0-beta1.rst","imap/download/release-notes/3.9/index.rst","imap/download/release-notes/3.9/x/3.9.0-alpha0.rst","imap/download/release-notes/index.rst","imap/download/upgrade.rst","imap/installing.rst","imap/quickstart/introduction.rst","imap/reference/admin.rst","imap/reference/admin/access-control.rst","imap/reference/admin/access-control/combining-rights.rst","imap/reference/admin/access-control/defaults.rst","imap/reference/admin/access-control/identifiers.rst","imap/reference/admin/access-control/rights-reference.rst","imap/reference/admin/backups.rst","imap/reference/admin/config-mailboxdistribution.rst","imap/reference/admin/eventsource.rst","imap/reference/admin/locations.rst","imap/reference/admin/locations/archive-partitions.rst","imap/reference/admin/locations/configuration-state.rst","imap/reference/admin/locations/hashing.rst","imap/reference/admin/locations/mailspool.rst","imap/reference/admin/locations/searchtiers.rst","imap/reference/admin/monitoring.rst","imap/reference/admin/murder/murder.rst","imap/reference/admin/murder/murder-concepts.rst","imap/reference/admin/murder/murder-failure-modes.rst","imap/reference/admin/murder/murder-installation.rst","imap/reference/admin/murder/murder-mail-delivery.rst","imap/reference/admin/murder/murder-mupdate-details.rst","imap/reference/admin/nginx-proxy.rst","imap/reference/admin/nntp.rst","imap/reference/admin/ports-sockets.rst","imap/reference/admin/ports/services.rst","imap/reference/admin/ports/sockets.rst","imap/reference/admin/protlayer.rst","imap/reference/admin/quotas.rst","imap/reference/admin/quotas/quotaroots.rst","imap/reference/admin/quotas/quotatypes.rst","imap/reference/admin/sieve.rst","imap/reference/admin/sop.rst","imap/reference/admin/sop/administration-running.rst","imap/reference/admin/sop/altnamespace.rst","imap/reference/admin/sop/deleting.rst","imap/reference/admin/sop/mailbox-operations.rst","imap/reference/admin/sop/mailbox-quota.rst","imap/reference/admin/sop/reconstructing.rst","imap/reference/admin/sop/reloading.rst","imap/reference/admin/sop/replication.rst","imap/reference/admin/sop/splitting-metadata.rst","imap/reference/admin/sop/squatter.rst","imap/reference/admin/sop/userdeny.rst","imap/reference/admin/tweaking.rst","imap/reference/architecture.rst","imap/reference/faq.rst","imap/reference/faqs/feature-database-backend.rst","imap/reference/faqs/feature-duplicate-delivery.rst","imap/reference/faqs/install-compilationerrors.rst","imap/reference/faqs/install-install-help.rst","imap/reference/faqs/install-linkerwarnings.rst","imap/reference/faqs/interop-8bit.rst","imap/reference/faqs/interop-barenewlines.rst","imap/reference/faqs/interop-sieve-exim.rst","imap/reference/faqs/interop-slow-delivery.rst","imap/reference/faqs/o-acls.rst","imap/reference/faqs/o-annotations.rst","imap/reference/faqs/o-configdir-tempfs.rst","imap/reference/faqs/o-coredump.rst","imap/reference/faqs/o-delete-mailbox.rst","imap/reference/faqs/o-deleted-expired-expunged-purged.rst","imap/reference/faqs/o-deliverdb-size.rst","imap/reference/faqs/o-freezes.rst","imap/reference/faqs/o-gdb.rst","imap/reference/faqs/o-mailbox-doesnotexist.rst","imap/reference/faqs/o-mixedcase.rst","imap/reference/faqs/o-otherdatabases.rst","imap/reference/faqs/o-pop3slow.rst","imap/reference/faqs/o-reconstruct.rst","imap/reference/faqs/o-sharedfilesystem-gpfs.rst","imap/reference/faqs/o-telemetry.rst","imap/reference/faqs/o-toomanyprocesses.rst","imap/reference/faqs/o-unable-join-environment.rst","imap/reference/faqs/o-vacation-mailfrom.rst","imap/reference/faqs/r-murder-ha.rst","imap/reference/faqs/r-pop3-logging.rst","imap/reference/faqs/r-publicssharedfolders.rst","imap/reference/faqs/r-subfolders.rst","imap/reference/manpages/configs/cyrus.conf.rst","imap/reference/manpages/configs/imapd.conf.rst","imap/reference/manpages/configs/krb.equiv.rst","imap/reference/manpages/index.rst","imap/reference/manpages/systemcommands/arbitron.rst","imap/reference/manpages/systemcommands/backupd.rst","imap/reference/manpages/systemcommands/chk_cyrus.rst","imap/reference/manpages/systemcommands/ctl_backups.rst","imap/reference/manpages/systemcommands/ctl_conversationsdb.rst","imap/reference/manpages/systemcommands/ctl_cyrusdb.rst","imap/reference/manpages/systemcommands/ctl_deliver.rst","imap/reference/manpages/systemcommands/ctl_mboxlist.rst","imap/reference/manpages/systemcommands/ctl_zoneinfo.rst","imap/reference/manpages/systemcommands/cvt_cyrusdb.rst","imap/reference/manpages/systemcommands/cvt_xlist_specialuse.rst","imap/reference/manpages/systemcommands/cyr_backup.rst","imap/reference/manpages/systemcommands/cyr_buildinfo.rst","imap/reference/manpages/systemcommands/cyr_dbtool.rst","imap/reference/manpages/systemcommands/cyr_deny.rst","imap/reference/manpages/systemcommands/cyr_df.rst","imap/reference/manpages/systemcommands/cyr_expire.rst","imap/reference/manpages/systemcommands/cyr_info.rst","imap/reference/manpages/systemcommands/cyr_ls.rst","imap/reference/manpages/systemcommands/cyr_synclog.rst","imap/reference/manpages/systemcommands/cyr_userseen.rst","imap/reference/manpages/systemcommands/cyr_virusscan.rst","imap/reference/manpages/systemcommands/cyradm.rst","imap/reference/manpages/systemcommands/cyrdump.rst","imap/reference/manpages/systemcommands/deliver.rst","imap/reference/manpages/systemcommands/fetchnews.rst","imap/reference/manpages/systemcommands/fud.rst","imap/reference/manpages/systemcommands/httpd.rst","imap/reference/manpages/systemcommands/idled.rst","imap/reference/manpages/systemcommands/imapd.rst","imap/reference/manpages/systemcommands/ipurge.rst","imap/reference/manpages/systemcommands/lmtpd.rst","imap/reference/manpages/systemcommands/lmtpproxyd.rst","imap/reference/manpages/systemcommands/masssievec.rst","imap/reference/manpages/systemcommands/master.rst","imap/reference/manpages/systemcommands/mbexamine.rst","imap/reference/manpages/systemcommands/mbpath.rst","imap/reference/manpages/systemcommands/mbtool.rst","imap/reference/manpages/systemcommands/mkimap.rst","imap/reference/manpages/systemcommands/mknewsgroups.rst","imap/reference/manpages/systemcommands/mupdate.rst","imap/reference/manpages/systemcommands/nntpd.rst","imap/reference/manpages/systemcommands/notifyd.rst","imap/reference/manpages/systemcommands/pop3d.rst","imap/reference/manpages/systemcommands/pop3proxyd.rst","imap/reference/manpages/systemcommands/promstatsd.rst","imap/reference/manpages/systemcommands/proxyd.rst","imap/reference/manpages/systemcommands/ptdump.rst","imap/reference/manpages/systemcommands/ptexpire.rst","imap/reference/manpages/systemcommands/ptloader.rst","imap/reference/manpages/systemcommands/quota.rst","imap/reference/manpages/systemcommands/reconstruct.rst","imap/reference/manpages/systemcommands/rehash.rst","imap/reference/manpages/systemcommands/relocate_by_id.rst","imap/reference/manpages/systemcommands/restore.rst","imap/reference/manpages/systemcommands/sievec.rst","imap/reference/manpages/systemcommands/sieved.rst","imap/reference/manpages/systemcommands/smmapd.rst","imap/reference/manpages/systemcommands/squatter.rst","imap/reference/manpages/systemcommands/sync_client.rst","imap/reference/manpages/systemcommands/sync_reset.rst","imap/reference/manpages/systemcommands/sync_server.rst","imap/reference/manpages/systemcommands/timsieved.rst","imap/reference/manpages/systemcommands/tls_prune.rst","imap/reference/manpages/systemcommands/translatesieve.rst","imap/reference/manpages/systemcommands/unexpunge.rst","imap/reference/manpages/usercommands/arbitronsort.pl.rst","imap/reference/manpages/usercommands/dav_reconstruct.rst","imap/reference/manpages/usercommands/httptest.rst","imap/reference/manpages/usercommands/imtest.rst","imap/reference/manpages/usercommands/installsieve.rst","imap/reference/manpages/usercommands/lmtptest.rst","imap/reference/manpages/usercommands/mupdatetest.rst","imap/reference/manpages/usercommands/nntptest.rst","imap/reference/manpages/usercommands/pop3test.rst","imap/reference/manpages/usercommands/sieveshell.rst","imap/reference/manpages/usercommands/sivtest.rst","imap/reference/manpages/usercommands/smtptest.rst","imap/reference/manpages/usercommands/synctest.rst","imap/rfc-support.rst","imap/support/feedback-bugs.rst","imap/support/feedback-mailing-lists.rst","imap/support/feedback-meetings.rst","index.rst","operations.rst","overview.rst","overview/about_cyrus.rst","overview/cyrus_bylaws.rst","overview/cyrus_history.rst","overview/cyrus_roadmap.rst","overview/what_is_cyrus.rst","overview/who_is_cyrus.rst","preface.rst","quickstart.rst","setup.rst","sitemap.rst","styles.rst","support.rst"],objects:{"":{"-c":[349,0,1,"cmdoption-c"],"-m":[349,0,1,"cmdoption-m"],"-p":[349,0,1,"cmdoption-p"],"-u":[349,0,1,"cmdoption-u"],"arbitron(8)":[352,1,1,"std-cyrusman-arbitron-8"],"backupd(8)":[353,1,1,"std-cyrusman-backupd-8"],"chk_cyrus(8)":[354,1,1,"std-cyrusman-chk_cyrus-8"],"conf-all":[369,0,1,"cmdoption-arg-conf-all"],"conf-default":[369,0,1,"cmdoption-arg-conf-default"],"conf-lint":[369,0,1,"cmdoption-arg-conf-lint"],"ctl_backups(8)":[355,1,1,"std-cyrusman-ctl_backups-8"],"ctl_conversationsdb(8)":[356,1,1,"std-cyrusman-ctl_conversationsdb-8"],"ctl_cyrusdb(8)":[357,1,1,"std-cyrusman-ctl_cyrusdb-8"],"ctl_deliver(8)":[358,1,1,"std-cyrusman-ctl_deliver-8"],"ctl_mboxlist(8)":[359,1,1,"std-cyrusman-ctl_mboxlist-8"],"ctl_zoneinfo(8)":[360,1,1,"std-cyrusman-ctl_zoneinfo-8"],"cvt_cyrusdb(8)":[361,1,1,"std-cyrusman-cvt_cyrusdb-8"],"cvt_xlist_specialuse(8)":[362,1,1,"std-cyrusman-cvt_xlist_specialuse-8"],"cyr_backup(8)":[363,1,1,"std-cyrusman-cyr_backup-8"],"cyr_buildinfo(8)":[364,1,1,"std-cyrusman-cyr_buildinfo-8"],"cyr_dbtool(8)":[365,1,1,"std-cyrusman-cyr_dbtool-8"],"cyr_deny(8)":[366,1,1,"std-cyrusman-cyr_deny-8"],"cyr_df(8)":[367,1,1,"std-cyrusman-cyr_df-8"],"cyr_expire(8)":[368,1,1,"std-cyrusman-cyr_expire-8"],"cyr_info(8)":[369,1,1,"std-cyrusman-cyr_info-8"],"cyr_ls(8)":[370,1,1,"std-cyrusman-cyr_ls-8"],"cyr_synclog(8)":[371,1,1,"std-cyrusman-cyr_synclog-8"],"cyr_userseen(8)":[372,1,1,"std-cyrusman-cyr_userseen-8"],"cyr_virusscan(8)":[373,1,1,"std-cyrusman-cyr_virusscan-8"],"cyradm(8)":[374,1,1,"std-cyrusman-cyradm-8"],"cyrdump(8)":[375,1,1,"std-cyrusman-cyrdump-8"],"dav_reconstruct(1)":[419,1,1,"std-cyrusman-dav_reconstruct-1"],"deliver(8)":[376,1,1,"std-cyrusman-deliver-8"],"fetchnews(8)":[377,1,1,"std-cyrusman-fetchnews-8"],"fud(8)":[378,1,1,"std-cyrusman-fud-8"],"httpd(8)":[379,1,1,"std-cyrusman-httpd-8"],"httptest(1)":[420,1,1,"std-cyrusman-httptest-1"],"idled(8)":[380,1,1,"std-cyrusman-idled-8"],"imapd(8)":[381,1,1,"std-cyrusman-imapd-8"],"imclient(3)":[68,1,1,"std-cyrusman-imclient-3"],"imtest(1)":[421,1,1,"std-cyrusman-imtest-1"],"installsieve(1)":[422,1,1,"std-cyrusman-installsieve-1"],"ipurge(8)":[382,1,1,"std-cyrusman-ipurge-8"],"lmtpd(8)":[383,1,1,"std-cyrusman-lmtpd-8"],"lmtpproxyd(8)":[384,1,1,"std-cyrusman-lmtpproxyd-8"],"lmtptest(1)":[423,1,1,"std-cyrusman-lmtptest-1"],"masssievec(8)":[385,1,1,"std-cyrusman-masssievec-8"],"master(8)":[386,1,1,"std-cyrusman-master-8"],"mbexamine(8)":[387,1,1,"std-cyrusman-mbexamine-8"],"mbpath(8)":[388,1,1,"std-cyrusman-mbpath-8"],"mbtool(8)":[389,1,1,"std-cyrusman-mbtool-8"],"mkimap(8)":[390,1,1,"std-cyrusman-mkimap-8"],"mknewsgroups(8)":[391,1,1,"std-cyrusman-mknewsgroups-8"],"mupdate(8)":[392,1,1,"std-cyrusman-mupdate-8"],"mupdatetest(1)":[424,1,1,"std-cyrusman-mupdatetest-1"],"nntpd(8)":[393,1,1,"std-cyrusman-nntpd-8"],"nntptest(1)":[425,1,1,"std-cyrusman-nntptest-1"],"notifyd(8)":[394,1,1,"std-cyrusman-notifyd-8"],"pop3d(8)":[395,1,1,"std-cyrusman-pop3d-8"],"pop3proxyd(8)":[396,1,1,"std-cyrusman-pop3proxyd-8"],"pop3test(1)":[426,1,1,"std-cyrusman-pop3test-1"],"promstatsd(8)":[397,1,1,"std-cyrusman-promstatsd-8"],"proxyd(8)":[398,1,1,"std-cyrusman-proxyd-8"],"ptdump(8)":[399,1,1,"std-cyrusman-ptdump-8"],"ptexpire(8)":[400,1,1,"std-cyrusman-ptexpire-8"],"ptloader(8)":[401,1,1,"std-cyrusman-ptloader-8"],"quota(8)":[402,1,1,"std-cyrusman-quota-8"],"reconstruct(8)":[403,1,1,"std-cyrusman-reconstruct-8"],"rehash(8)":[404,1,1,"std-cyrusman-rehash-8"],"relocate_by_id(8)":[405,1,1,"std-cyrusman-relocate_by_id-8"],"restore(8)":[406,1,1,"std-cyrusman-restore-8"],"sievec(8)":[407,1,1,"std-cyrusman-sievec-8"],"sieved(8)":[408,1,1,"std-cyrusman-sieved-8"],"sieveshell(1)":[427,1,1,"std-cyrusman-sieveshell-1"],"sivtest(1)":[428,1,1,"std-cyrusman-sivtest-1"],"smmapd(8)":[409,1,1,"std-cyrusman-smmapd-8"],"smtptest(1)":[429,1,1,"std-cyrusman-smtptest-1"],"squatter(8)":[410,1,1,"std-cyrusman-squatter-8"],"sync_client(8)":[411,1,1,"std-cyrusman-sync_client-8"],"sync_reset(8)":[412,1,1,"std-cyrusman-sync_reset-8"],"sync_server(8)":[413,1,1,"std-cyrusman-sync_server-8"],"synctest(1)":[430,1,1,"std-cyrusman-synctest-1"],"timsieved(8)":[414,1,1,"std-cyrusman-timsieved-8"],"tls_prune(8)":[415,1,1,"std-cyrusman-tls_prune-8"],"translatesieve(8)":[416,1,1,"std-cyrusman-translatesieve-8"],"unexpunge(8)":[417,1,1,"std-cyrusman-unexpunge-8"],conf:[369,0,1,"cmdoption-arg-conf"],dump:[363,0,1,"cmdoption-arg-dump"],json:[363,0,1,"cmdoption-arg-json"],list:[363,0,1,"cmdoption-arg-list"],proc:[369,0,1,"cmdoption-arg-proc"],show:[363,0,1,"cmdoption-arg-show"]},"**ctl_zoneinfo**":{"--rebuild":[360,0,1,"cmdoption-ctl_zoneinfo-r"],"--verbose":[360,0,1,"cmdoption-ctl_zoneinfo-v"],"--windows-zone-xml":[360,0,1,"cmdoption-ctl_zoneinfo-w"],"-C":[360,0,1,"cmdoption-ctl_zoneinfo-C"],"-r":[360,0,1,"cmdoption-ctl_zoneinfo-r"],"-v":[360,0,1,"cmdoption-ctl_zoneinfo-v"],"-w":[360,0,1,"cmdoption-ctl_zoneinfo-w"]},"masssievec.imapd":{conf:[385,0,1,"cmdoption-masssievec-arg-imapd.conf"]},"rehash.imapd":{conf:[404,0,1,"cmdoption-rehash-arg-imapd.conf"]},CMD:{"-C":[415,0,1,"cmdoption-CMD-C"]},arbitron:{"--date":[352,0,1,"cmdoption-arbitron-D"],"--days":[352,0,1,"cmdoption-arbitron-0"],"--detailed":[352,0,1,"cmdoption-arbitron-l"],"--include-userids":[352,0,1,"cmdoption-arbitron-u"],"--no-subscribers":[352,0,1,"cmdoption-arbitron-o"],"--prune-seen":[352,0,1,"cmdoption-arbitron-p"],"-C":[352,0,1,"cmdoption-arbitron-C"],"-D":[352,0,1,"cmdoption-arbitron-D"],"-d":[352,0,1,"cmdoption-arbitron-0"],"-l":[352,0,1,"cmdoption-arbitron-l"],"-o":[352,0,1,"cmdoption-arbitron-o"],"-p":[352,0,1,"cmdoption-arbitron-p"],"-u":[352,0,1,"cmdoption-arbitron-u"]},arbitronsort:{"pl(1)":[418,1,1,"std-cyrusman-arbitronsort.pl-1"]},backupd:{"-C":[353,0,1,"cmdoption-backupd-C"],"-D":[353,0,1,"cmdoption-backupd-D"],"-T":[353,0,1,"cmdoption-backupd-T"],"-U":[353,0,1,"cmdoption-backupd-U"],"-p":[353,0,1,"cmdoption-backupd-p"]},chk_cyrus:{"--mailbox":[354,0,1,"cmdoption-chk_cyrus-M"],"--partition":[354,0,1,"cmdoption-chk_cyrus-P"],"-C":[354,0,1,"cmdoption-chk_cyrus-C"],"-M":[354,0,1,"cmdoption-chk_cyrus-M"],"-P":[354,0,1,"cmdoption-chk_cyrus-P"]},ctl_backups:{"--all":[355,0,1,"cmdoption-ctl_backups-A"],"--create":[355,0,1,"cmdoption-ctl_backups-c"],"--domains":[355,0,1,"cmdoption-ctl_backups-D"],"--execute":[355,0,1,"cmdoption-ctl_backups-x"],"--filenames":[355,0,1,"cmdoption-ctl_backups-f"],"--force":[355,0,1,"cmdoption-ctl_backups-F"],"--json":[355,0,1,"cmdoption-ctl_backups-j"],"--mailboxes":[355,0,1,"cmdoption-ctl_backups-m"],"--no-verify":[355,0,1,"cmdoption-ctl_backups-V"],"--pause":[355,0,1,"cmdoption-ctl_backups-p"],"--prefixes":[355,0,1,"cmdoption-ctl_backups-P"],"--sqlite3":[355,0,1,"cmdoption-ctl_backups-s"],"--stale":[355,0,1,"cmdoption-ctl_backups-t"],"--stop-on-error":[355,0,1,"cmdoption-ctl_backups-S"],"--userids":[355,0,1,"cmdoption-ctl_backups-u"],"--verbose":[355,0,1,"cmdoption-ctl_backups-v"],"--wait-for-locks":[355,0,1,"cmdoption-ctl_backups-w"],"-A":[355,0,1,"cmdoption-ctl_backups-A"],"-C":[355,0,1,"cmdoption-ctl_backups-C"],"-D":[355,0,1,"cmdoption-ctl_backups-D"],"-F":[355,0,1,"cmdoption-ctl_backups-F"],"-P":[355,0,1,"cmdoption-ctl_backups-P"],"-S":[355,0,1,"cmdoption-ctl_backups-S"],"-V":[355,0,1,"cmdoption-ctl_backups-V"],"-c":[355,0,1,"cmdoption-ctl_backups-c"],"-f":[355,0,1,"cmdoption-ctl_backups-f"],"-j":[355,0,1,"cmdoption-ctl_backups-j"],"-m":[355,0,1,"cmdoption-ctl_backups-m"],"-p":[355,0,1,"cmdoption-ctl_backups-p"],"-s":[355,0,1,"cmdoption-ctl_backups-s"],"-t":[355,0,1,"cmdoption-ctl_backups-t"],"-u":[355,0,1,"cmdoption-ctl_backups-u"],"-v":[355,0,1,"cmdoption-ctl_backups-v"],"-w":[355,0,1,"cmdoption-ctl_backups-w"],"-x":[355,0,1,"cmdoption-ctl_backups-x"],compact:[355,0,1,"cmdoption-ctl_backups-arg-compact"],list:[355,0,1,"cmdoption-ctl_backups-arg-list"],lock:[355,0,1,"cmdoption-ctl_backups-arg-lock"],reindex:[355,0,1,"cmdoption-ctl_backups-arg-reindex"],stat:[355,0,1,"cmdoption-ctl_backups-arg-stat"],verify:[355,0,1,"cmdoption-ctl_backups-arg-verify"]},ctl_conversationsdb:{"--clear":[356,0,1,"cmdoption-ctl_conversationsdb-z"],"--dump":[356,0,1,"cmdoption-ctl_conversationsdb-d"],"--rebuild":[356,0,1,"cmdoption-ctl_conversationsdb-b"],"--recursive":[356,0,1,"cmdoption-ctl_conversationsdb-r"],"--split":[356,0,1,"cmdoption-ctl_conversationsdb-S"],"--undump":[356,0,1,"cmdoption-ctl_conversationsdb-u"],"--update-counts":[356,0,1,"cmdoption-ctl_conversationsdb-R"],"--verbose":[356,0,1,"cmdoption-ctl_conversationsdb-v"],"-C":[356,0,1,"cmdoption-ctl_conversationsdb-C"],"-R":[356,0,1,"cmdoption-ctl_conversationsdb-R"],"-S":[356,0,1,"cmdoption-ctl_conversationsdb-S"],"-b":[356,0,1,"cmdoption-ctl_conversationsdb-b"],"-d":[356,0,1,"cmdoption-ctl_conversationsdb-d"],"-r":[356,0,1,"cmdoption-ctl_conversationsdb-r"],"-u":[356,0,1,"cmdoption-ctl_conversationsdb-u"],"-v":[356,0,1,"cmdoption-ctl_conversationsdb-v"],"-z":[356,0,1,"cmdoption-ctl_conversationsdb-z"]},ctl_cyrusdb:{"--checkpoint":[357,0,1,"cmdoption-ctl_cyrusdb-c"],"--no-cleanup":[357,0,1,"cmdoption-ctl_cyrusdb-x"],"--recover":[357,0,1,"cmdoption-ctl_cyrusdb-r"],"-C":[357,0,1,"cmdoption-ctl_cyrusdb-C"],"-c":[357,0,1,"cmdoption-ctl_cyrusdb-c"],"-r":[357,0,1,"cmdoption-ctl_cyrusdb-r"],"-x":[357,0,1,"cmdoption-ctl_cyrusdb-x"]},ctl_deliver:{"--dump":[358,0,1,"cmdoption-ctl_deliver-d"],"--filename":[358,0,1,"cmdoption-ctl_deliver-f"],"-C":[358,0,1,"cmdoption-ctl_deliver-C"],"-d":[358,0,1,"cmdoption-ctl_deliver-d"],"-f":[358,0,1,"cmdoption-ctl_deliver-f"]},ctl_mboxlist:{"--authoritative":[359,0,1,"cmdoption-ctl_mboxlist-a"],"--dump":[359,0,1,"cmdoption-ctl_mboxlist-d"],"--filename":[359,0,1,"cmdoption-ctl_mboxlist-f"],"--include-intermediaries":[359,0,1,"cmdoption-ctl_mboxlist-y"],"--interactive":[359,0,1,"cmdoption-ctl_mboxlist-i"],"--legacy":[359,0,1,"cmdoption-ctl_mboxlist-L"],"--partition":[359,0,1,"cmdoption-ctl_mboxlist-p"],"--remove-dumped":[359,0,1,"cmdoption-ctl_mboxlist-x"],"--sync-mupdate":[359,0,1,"cmdoption-ctl_mboxlist-m"],"--undump":[359,0,1,"cmdoption-ctl_mboxlist-u"],"--verify":[359,0,1,"cmdoption-ctl_mboxlist-v"],"--warn-only":[359,0,1,"cmdoption-ctl_mboxlist-w"],"-C":[359,0,1,"cmdoption-ctl_mboxlist-C"],"-L":[359,0,1,"cmdoption-ctl_mboxlist-L"],"-a":[359,0,1,"cmdoption-ctl_mboxlist-a"],"-d":[359,0,1,"cmdoption-ctl_mboxlist-d"],"-f":[359,0,1,"cmdoption-ctl_mboxlist-f"],"-i":[359,0,1,"cmdoption-ctl_mboxlist-i"],"-m":[359,0,1,"cmdoption-ctl_mboxlist-m"],"-p":[359,0,1,"cmdoption-ctl_mboxlist-p"],"-u":[359,0,1,"cmdoption-ctl_mboxlist-u"],"-v":[359,0,1,"cmdoption-ctl_mboxlist-v"],"-w":[359,0,1,"cmdoption-ctl_mboxlist-w"],"-x":[359,0,1,"cmdoption-ctl_mboxlist-x"],"-y":[359,0,1,"cmdoption-ctl_mboxlist-y"]},cvt_cyrusdb:{"-C":[361,0,1,"cmdoption-cvt_cyrusdb-C"]},cvt_xlist_specialuse:{"--verbose":[362,0,1,"cmdoption-cvt_xlist_specialuse-v"],"-C":[362,0,1,"cmdoption-cvt_xlist_specialuse-C"],"-v":[362,0,1,"cmdoption-cvt_xlist_specialuse-v"]},cyr_backup:{"--filename":[363,0,1,"cmdoption-cyr_backup-f"],"--mailbox":[363,0,1,"cmdoption-cyr_backup-m"],"--userid":[363,0,1,"cmdoption-cyr_backup-u"],"--verbose":[363,0,1,"cmdoption-cyr_backup-v"],"-C":[363,0,1,"cmdoption-cyr_backup-C"],"-f":[363,0,1,"cmdoption-cyr_backup-f"],"-m":[363,0,1,"cmdoption-cyr_backup-m"],"-u":[363,0,1,"cmdoption-cyr_backup-u"],"-v":[363,0,1,"cmdoption-cyr_backup-v"]},cyr_buildinfo:{"-C":[364,0,1,"cmdoption-cyr_buildinfo-C"],format:[364,0,1,"cmdoption-cyr_buildinfo-arg-format"]},cyr_dbtool:{"--create":[365,0,1,"cmdoption-cyr_dbtool-n"],"--improved-mboxlist-sort":[365,0,1,"cmdoption-cyr_dbtool-M"],"--use-transaction":[365,0,1,"cmdoption-cyr_dbtool-T"],"-C":[365,0,1,"cmdoption-cyr_dbtool-C"],"-M":[365,0,1,"cmdoption-cyr_dbtool-M"],"-T":[365,0,1,"cmdoption-cyr_dbtool-T"],"-n":[365,0,1,"cmdoption-cyr_dbtool-n"]},cyr_deny:{"--allow":[366,0,1,"cmdoption-cyr_deny-a"],"--list":[366,0,1,"cmdoption-cyr_deny-l"],"--message":[366,0,1,"cmdoption-cyr_deny-m"],"--services":[366,0,1,"cmdoption-cyr_deny-s"],"-C":[366,0,1,"cmdoption-cyr_deny-C"],"-a":[366,0,1,"cmdoption-cyr_deny-a"],"-l":[366,0,1,"cmdoption-cyr_deny-l"],"-m":[366,0,1,"cmdoption-cyr_deny-m"],"-s":[366,0,1,"cmdoption-cyr_deny-s"]},cyr_df:{"--metadata":[367,0,1,"cmdoption-cyr_df-m"],"-C":[367,0,1,"cmdoption-cyr_df-C"],"-m":[367,0,1,"cmdoption-cyr_df-m"]},cyr_expire:{"--archive-duration":[368,0,1,"cmdoption-cyr_expire-A"],"--delete-duration":[368,0,1,"cmdoption-cyr_expire-D"],"--expire-duration":[368,0,1,"cmdoption-cyr_expire-E"],"--expunge-duration":[368,0,1,"cmdoption-cyr_expire-X"],"--ignore-annotations":[368,0,1,"cmdoption-cyr_expire-a"],"--no-conversations":[368,0,1,"cmdoption-cyr_expire-c"],"--no-expunge":[368,0,1,"cmdoption-cyr_expire-x"],"--prefix":[368,0,1,"cmdoption-cyr_expire-p"],"--prune-userflags":[368,0,1,"cmdoption-cyr_expire-t"],"--userid":[368,0,1,"cmdoption-cyr_expire-u"],"--verbose":[368,0,1,"cmdoption-cyr_expire-v"],"-A":[368,0,1,"cmdoption-cyr_expire-A"],"-C":[368,0,1,"cmdoption-cyr_expire-C"],"-D":[368,0,1,"cmdoption-cyr_expire-D"],"-E":[368,0,1,"cmdoption-cyr_expire-E"],"-X":[368,0,1,"cmdoption-cyr_expire-X"],"-a":[368,0,1,"cmdoption-cyr_expire-a"],"-c":[368,0,1,"cmdoption-cyr_expire-c"],"-p":[368,0,1,"cmdoption-cyr_expire-p"],"-t":[368,0,1,"cmdoption-cyr_expire-t"],"-u":[368,0,1,"cmdoption-cyr_expire-u"],"-v":[368,0,1,"cmdoption-cyr_expire-v"],"-x":[368,0,1,"cmdoption-cyr_expire-x"]},cyr_info:{"--service":[369,0,1,"cmdoption-cyr_info-n"],"--since":[369,0,1,"cmdoption-cyr_info-s"],"-C":[369,0,1,"cmdoption-cyr_info-C"],"-M":[369,0,1,"cmdoption-cyr_info-M"],"-n":[369,0,1,"cmdoption-cyr_info-n"],"-s":[369,0,1,"cmdoption-cyr_info-s"]},cyr_ls:{"--long":[370,0,1,"cmdoption-cyr_ls-l"],"--metadata":[370,0,1,"cmdoption-cyr_ls-m"],"--one-per-line":[370,0,1,"cmdoption-cyr_ls-1"],"--recursive":[370,0,1,"cmdoption-cyr_ls-R"],"-1":[370,0,1,"cmdoption-cyr_ls-1"],"-C":[370,0,1,"cmdoption-cyr_ls-C"],"-R":[370,0,1,"cmdoption-cyr_ls-R"],"-l":[370,0,1,"cmdoption-cyr_ls-l"],"-m":[370,0,1,"cmdoption-cyr_ls-m"]},cyr_synclog:{"--acl":[371,0,1,"cmdoption-cyr_synclog-c"],"--annotation":[371,0,1,"cmdoption-cyr_synclog-n"],"--append":[371,0,1,"cmdoption-cyr_synclog-a"],"--mailbox":[371,0,1,"cmdoption-cyr_synclog-m"],"--quota":[371,0,1,"cmdoption-cyr_synclog-q"],"--seen":[371,0,1,"cmdoption-cyr_synclog-s"],"--sieve":[371,0,1,"cmdoption-cyr_synclog-v"],"--subscription":[371,0,1,"cmdoption-cyr_synclog-b"],"--unmailbox":[371,0,1,"cmdoption-cyr_synclog-M"],"--unuser":[371,0,1,"cmdoption-cyr_synclog-U"],"--user":[371,0,1,"cmdoption-cyr_synclog-u"],"-C":[371,0,1,"cmdoption-cyr_synclog-C"],"-M":[371,0,1,"cmdoption-cyr_synclog-M"],"-U":[371,0,1,"cmdoption-cyr_synclog-U"],"-a":[371,0,1,"cmdoption-cyr_synclog-a"],"-b":[371,0,1,"cmdoption-cyr_synclog-b"],"-c":[371,0,1,"cmdoption-cyr_synclog-c"],"-m":[371,0,1,"cmdoption-cyr_synclog-m"],"-n":[371,0,1,"cmdoption-cyr_synclog-n"],"-q":[371,0,1,"cmdoption-cyr_synclog-q"],"-s":[371,0,1,"cmdoption-cyr_synclog-s"],"-u":[371,0,1,"cmdoption-cyr_synclog-u"],"-v":[371,0,1,"cmdoption-cyr_synclog-v"]},cyr_userseen:{"--delete":[372,0,1,"cmdoption-cyr_userseen-d"],"-C":[372,0,1,"cmdoption-cyr_userseen-C"],"-d":[372,0,1,"cmdoption-cyr_userseen-d"]},cyr_virusscan:{"--notify":[373,0,1,"cmdoption-cyr_virusscan-n"],"--remove-infected":[373,0,1,"cmdoption-cyr_virusscan-r"],"--search":[373,0,1,"cmdoption-cyr_virusscan-s"],"--verbose":[373,0,1,"cmdoption-cyr_virusscan-v"],"-C":[373,0,1,"cmdoption-cyr_virusscan-C"],"-n":[373,0,1,"cmdoption-cyr_virusscan-n"],"-r":[373,0,1,"cmdoption-cyr_virusscan-r"],"-s":[373,0,1,"cmdoption-cyr_virusscan-s"],"-v":[373,0,1,"cmdoption-cyr_virusscan-v"]},cyrdump:{"--verbose":[375,0,1,"cmdoption-cyrdump-v"],"-C":[375,0,1,"cmdoption-cyrdump-C"],"-v":[375,0,1,"cmdoption-cyrdump-v"]},cyrus:{"conf(5)":[348,1,1,"std-cyrusman-cyrus.conf-5"]},dav_reconstruct:{"--all":[419,0,1,"cmdoption-dav_reconstruct-a"],"--audit-tool":[419,0,1,"cmdoption-dav_reconstruct-A"],"-A":[419,0,1,"cmdoption-dav_reconstruct-A"],"-C":[419,0,1,"cmdoption-dav_reconstruct-C"],"-a":[419,0,1,"cmdoption-dav_reconstruct-a"],userid_list:[419,0,1,"cmdoption-dav_reconstruct-arg-userid_list"]},deliver:{"--auth-id":[376,0,1,"cmdoption-deliver-a"],"--ignore-quota":[376,0,1,"cmdoption-deliver-q"],"--lmtp":[376,0,1,"cmdoption-deliver-l"],"--mailbox":[376,0,1,"cmdoption-deliver-m"],"--return-path":[376,0,1,"cmdoption-deliver-r"],"-C":[376,0,1,"cmdoption-deliver-C"],"-a":[376,0,1,"cmdoption-deliver-a"],"-d":[376,0,1,"cmdoption-deliver-d"],"-f":[376,0,1,"cmdoption-deliver-f"],"-l":[376,0,1,"cmdoption-deliver-l"],"-m":[376,0,1,"cmdoption-deliver-m"],"-q":[376,0,1,"cmdoption-deliver-q"],"-r":[376,0,1,"cmdoption-deliver-r"]},fetchnews:{"--auth-id":[377,0,1,"cmdoption-fetchnews-a"],"--groups":[377,0,1,"cmdoption-fetchnews-w"],"--newsstamp-file":[377,0,1,"cmdoption-fetchnews-f"],"--no-newnews":[377,0,1,"cmdoption-fetchnews-n"],"--password":[377,0,1,"cmdoption-fetchnews-p"],"--server":[377,0,1,"cmdoption-fetchnews-s"],"--yyyy":[377,0,1,"cmdoption-fetchnews-y"],"-C":[377,0,1,"cmdoption-fetchnews-C"],"-a":[377,0,1,"cmdoption-fetchnews-a"],"-f":[377,0,1,"cmdoption-fetchnews-f"],"-n":[377,0,1,"cmdoption-fetchnews-n"],"-p":[377,0,1,"cmdoption-fetchnews-p"],"-s":[377,0,1,"cmdoption-fetchnews-s"],"-w":[377,0,1,"cmdoption-fetchnews-w"],"-y":[377,0,1,"cmdoption-fetchnews-y"]},fud:{"-C":[378,0,1,"cmdoption-fud-C"],"-D":[378,0,1,"cmdoption-fud-D"],"-T":[378,0,1,"cmdoption-fud-T"],"-U":[378,0,1,"cmdoption-fud-U"]},httpd:{"-C":[379,0,1,"cmdoption-httpd-C"],"-D":[379,0,1,"cmdoption-httpd-D"],"-T":[379,0,1,"cmdoption-httpd-T"],"-U":[379,0,1,"cmdoption-httpd-U"],"-p":[379,0,1,"cmdoption-httpd-p"],"-q":[379,0,1,"cmdoption-httpd-q"],"-s":[379,0,1,"cmdoption-httpd-s"]},idled:{"-C":[380,0,1,"cmdoption-idled-C"]},imapd:{"-C":[398,0,1,"cmdoption-imapd-C"],"-D":[398,0,1,"cmdoption-imapd-D"],"-N":[398,0,1,"cmdoption-imapd-N"],"-T":[398,0,1,"cmdoption-imapd-T"],"-U":[398,0,1,"cmdoption-imapd-U"],"-p":[398,0,1,"cmdoption-imapd-p"],"-s":[398,0,1,"cmdoption-imapd-s"],"conf(5)":[349,1,1,"std-cyrusman-imapd.conf-5"]},imtest:{"--authname":[430,0,1,"cmdoption-imtest-a"],"--do-challenge":[430,0,1,"cmdoption-imtest-c"],"--input-filename":[430,0,1,"cmdoption-imtest-f"],"--keyfile":[430,0,1,"cmdoption-imtest-t"],"--maxssf":[430,0,1,"cmdoption-imtest-l"],"--mechanism":[430,0,1,"cmdoption-imtest-m"],"--minssf":[430,0,1,"cmdoption-imtest-k"],"--no-initial-response":[430,0,1,"cmdoption-imtest-i"],"--output-socket":[430,0,1,"cmdoption-imtest-x"],"--password":[430,0,1,"cmdoption-imtest-w"],"--pidfile":[430,0,1,"cmdoption-imtest-I"],"--port":[430,0,1,"cmdoption-imtest-p"],"--realm":[430,0,1,"cmdoption-imtest-r"],"--reauth-attempts":[430,0,1,"cmdoption-imtest-n"],"--require-compression":[430,0,1,"cmdoption-imtest-q"],"--require-tls":[430,0,1,"cmdoption-imtest-s"],"--run-stress-test":[430,0,1,"cmdoption-imtest-z"],"--sasl-option":[430,0,1,"cmdoption-imtest-o"],"--username":[430,0,1,"cmdoption-imtest-u"],"--verbose":[430,0,1,"cmdoption-imtest-v"],"-I":[430,0,1,"cmdoption-imtest-I"],"-X":[430,0,1,"cmdoption-imtest-X"],"-a":[430,0,1,"cmdoption-imtest-a"],"-c":[430,0,1,"cmdoption-imtest-c"],"-f":[430,0,1,"cmdoption-imtest-f"],"-i":[430,0,1,"cmdoption-imtest-i"],"-k":[430,0,1,"cmdoption-imtest-k"],"-l":[430,0,1,"cmdoption-imtest-l"],"-m":[430,0,1,"cmdoption-imtest-m"],"-n":[430,0,1,"cmdoption-imtest-n"],"-o":[430,0,1,"cmdoption-imtest-o"],"-p":[430,0,1,"cmdoption-imtest-p"],"-q":[430,0,1,"cmdoption-imtest-q"],"-r":[430,0,1,"cmdoption-imtest-r"],"-s":[430,0,1,"cmdoption-imtest-s"],"-t":[430,0,1,"cmdoption-imtest-t"],"-u":[430,0,1,"cmdoption-imtest-u"],"-v":[430,0,1,"cmdoption-imtest-v"],"-w":[430,0,1,"cmdoption-imtest-w"],"-x":[430,0,1,"cmdoption-imtest-x"],"-z":[430,0,1,"cmdoption-imtest-z"]},installsieve:{"-a":[422,0,1,"cmdoption-installsieve-a"],"-d":[422,0,1,"cmdoption-installsieve-d"],"-g":[422,0,1,"cmdoption-installsieve-g"],"-i":[422,0,1,"cmdoption-installsieve-i"],"-l":[422,0,1,"cmdoption-installsieve-l"],"-m":[422,0,1,"cmdoption-installsieve-m"],"-p":[422,0,1,"cmdoption-installsieve-p"],"-u":[422,0,1,"cmdoption-installsieve-u"],"-v":[422,0,1,"cmdoption-installsieve-v"]},ipurge:{"--bytes":[382,0,1,"cmdoption-ipurge-b"],"--days":[382,0,1,"cmdoption-ipurge-d"],"--delivery-time":[382,0,1,"cmdoption-ipurge-X"],"--dry-run":[382,0,1,"cmdoption-ipurge-n"],"--exact-match":[382,0,1,"cmdoption-ipurge-x"],"--include-user-mailboxes":[382,0,1,"cmdoption-ipurge-f"],"--invert-match":[382,0,1,"cmdoption-ipurge-i"],"--kbytes":[382,0,1,"cmdoption-ipurge-k"],"--mbytes":[382,0,1,"cmdoption-ipurge-m"],"--only-deleted":[382,0,1,"cmdoption-ipurge-o"],"--skip-flagged":[382,0,1,"cmdoption-ipurge-s"],"--verbose":[382,0,1,"cmdoption-ipurge-v"],"-C":[382,0,1,"cmdoption-ipurge-C"],"-X":[382,0,1,"cmdoption-ipurge-X"],"-b":[382,0,1,"cmdoption-ipurge-b"],"-d":[382,0,1,"cmdoption-ipurge-d"],"-f":[382,0,1,"cmdoption-ipurge-f"],"-i":[382,0,1,"cmdoption-ipurge-i"],"-k":[382,0,1,"cmdoption-ipurge-k"],"-m":[382,0,1,"cmdoption-ipurge-m"],"-n":[382,0,1,"cmdoption-ipurge-n"],"-o":[382,0,1,"cmdoption-ipurge-o"],"-s":[382,0,1,"cmdoption-ipurge-s"],"-v":[382,0,1,"cmdoption-ipurge-v"],"-x":[382,0,1,"cmdoption-ipurge-x"]},krb:{"equiv(5)":[350,1,1,"std-cyrusman-krb.equiv-5"]},lmtpd:{"-C":[396,0,1,"cmdoption-lmtpd-C"],"-D":[396,0,1,"cmdoption-lmtpd-D"],"-T":[396,0,1,"cmdoption-lmtpd-T"],"-U":[396,0,1,"cmdoption-lmtpd-U"],"-a":[396,0,1,"cmdoption-lmtpd-a"]},master:{"-C":[386,0,1,"cmdoption-master-C"],"-D":[386,0,1,"cmdoption-master-D"],"-L":[386,0,1,"cmdoption-master-L"],"-M":[386,0,1,"cmdoption-master-M"],"-d":[386,0,1,"cmdoption-master-d"],"-j":[386,0,1,"cmdoption-master-j"],"-l":[386,0,1,"cmdoption-master-l"],"-p":[386,0,1,"cmdoption-master-p"]},mbexamine:{"--check-message-files":[387,0,1,"cmdoption-mbexamine-0"],"--check-quota":[387,0,1,"cmdoption-mbexamine-q"],"--seq":[387,0,1,"cmdoption-mbexamine-s"],"--uid":[387,0,1,"cmdoption-mbexamine-u"],"-C":[387,0,1,"cmdoption-mbexamine-C"],"-c":[387,0,1,"cmdoption-mbexamine-0"],"-q":[387,0,1,"cmdoption-mbexamine-q"],"-s":[387,0,1,"cmdoption-mbexamine-s"],"-u":[387,0,1,"cmdoption-mbexamine-u"]},mbpath:{"--all":[388,0,1,"cmdoption-mbpath-0"],"--archive":[388,0,1,"cmdoption-mbpath-A"],"--data":[388,0,1,"cmdoption-mbpath-D"],"--local-only":[388,0,1,"cmdoption-mbpath-l"],"--metadata":[388,0,1,"cmdoption-mbpath-M"],"--paths":[388,0,1,"cmdoption-mbpath-p"],"--quiet":[388,0,1,"cmdoption-mbpath-q"],"--sieve":[388,0,1,"cmdoption-mbpath-S"],"--stop":[388,0,1,"cmdoption-mbpath-s"],"--user-files":[388,0,1,"cmdoption-mbpath-U"],"--userids":[388,0,1,"cmdoption-mbpath-u"],"-A":[388,0,1,"cmdoption-mbpath-A"],"-C":[388,0,1,"cmdoption-mbpath-C"],"-D":[388,0,1,"cmdoption-mbpath-D"],"-M":[388,0,1,"cmdoption-mbpath-M"],"-S":[388,0,1,"cmdoption-mbpath-S"],"-U":[388,0,1,"cmdoption-mbpath-U"],"-a":[388,0,1,"cmdoption-mbpath-0"],"-l":[388,0,1,"cmdoption-mbpath-l"],"-m":[388,0,1,"cmdoption-mbpath-m"],"-p":[388,0,1,"cmdoption-mbpath-p"],"-q":[388,0,1,"cmdoption-mbpath-q"],"-s":[388,0,1,"cmdoption-mbpath-s"],"-u":[388,0,1,"cmdoption-mbpath-u"]},mbtool:{"--new-uniqueid":[389,0,1,"cmdoption-mbtool-r"],"--normalize-internaldate":[389,0,1,"cmdoption-mbtool-t"],"-C":[389,0,1,"cmdoption-mbtool-C"],"-r":[389,0,1,"cmdoption-mbtool-r"],"-t":[389,0,1,"cmdoption-mbtool-t"]},mkimap:{"config-file":[390,0,1,"cmdoption-mkimap-arg-config-file"]},mknewsgroups:{"-C":[391,0,1,"cmdoption-mknewsgroups-C"],"-a":[391,0,1,"cmdoption-mknewsgroups-a"],"-f":[391,0,1,"cmdoption-mknewsgroups-f"],"-h":[391,0,1,"cmdoption-mknewsgroups-h"],"-n":[391,0,1,"cmdoption-mknewsgroups-n"],"-p":[391,0,1,"cmdoption-mknewsgroups-p"],"-u":[391,0,1,"cmdoption-mknewsgroups-u"],"-w":[391,0,1,"cmdoption-mknewsgroups-w"]},mupdate:{"-C":[392,0,1,"cmdoption-mupdate-C"],"-a":[392,0,1,"cmdoption-mupdate-a"],"-m":[392,0,1,"cmdoption-mupdate-m"]},nntpd:{"-C":[393,0,1,"cmdoption-nntpd-C"],"-D":[393,0,1,"cmdoption-nntpd-D"],"-T":[393,0,1,"cmdoption-nntpd-T"],"-U":[393,0,1,"cmdoption-nntpd-U"],"-f":[393,0,1,"cmdoption-nntpd-f"],"-p":[393,0,1,"cmdoption-nntpd-p"],"-r":[393,0,1,"cmdoption-nntpd-r"],"-s":[393,0,1,"cmdoption-nntpd-s"]},notifyd:{"-C":[394,0,1,"cmdoption-notifyd-C"],"-D":[394,0,1,"cmdoption-notifyd-D"],"-T":[394,0,1,"cmdoption-notifyd-T"],"-U":[394,0,1,"cmdoption-notifyd-U"]},pop3d:{"-C":[395,0,1,"cmdoption-pop3d-C"],"-D":[395,0,1,"cmdoption-pop3d-D"],"-T":[395,0,1,"cmdoption-pop3d-T"],"-U":[395,0,1,"cmdoption-pop3d-U"],"-k":[395,0,1,"cmdoption-pop3d-k"],"-p":[395,0,1,"cmdoption-pop3d-p"],"-s":[395,0,1,"cmdoption-pop3d-s"]},promstatsd:{"-1":[397,0,1,"cmdoption-promstatsd-1"],"-C":[397,0,1,"cmdoption-promstatsd-C"],"-D":[397,0,1,"cmdoption-promstatsd-D"],"-c":[397,0,1,"cmdoption-promstatsd-0"],"-d":[397,0,1,"cmdoption-promstatsd-2"],"-f":[397,0,1,"cmdoption-promstatsd-f"],"-v":[397,0,1,"cmdoption-promstatsd-v"]},ptdump:{"-C":[399,0,1,"cmdoption-ptdump-C"]},ptexpire:{"--expire-duration":[400,0,1,"cmdoption-ptexpire-E"],"-C":[400,0,1,"cmdoption-ptexpire-C"],"-E":[400,0,1,"cmdoption-ptexpire-E"]},ptloader:{"-d":[401,0,1,"cmdoption-ptloader-d"]},quota:{"--domain":[402,0,1,"cmdoption-quota-d"],"--fix":[402,0,1,"cmdoption-quota-f"],"--json":[402,0,1,"cmdoption-quota-J"],"--quiet":[402,0,1,"cmdoption-quota-q"],"--report-only":[402,0,1,"cmdoption-quota-n"],"--userids":[402,0,1,"cmdoption-quota-u"],"-C":[402,0,1,"cmdoption-quota-C"],"-J":[402,0,1,"cmdoption-quota-J"],"-d":[402,0,1,"cmdoption-quota-d"],"-f":[402,0,1,"cmdoption-quota-f"],"-n":[402,0,1,"cmdoption-quota-n"],"-q":[402,0,1,"cmdoption-quota-q"],"-u":[402,0,1,"cmdoption-quota-u"],"mailbox-spec":[402,0,1,"cmdoption-quota-arg-mailbox-spec"]},reconstruct:{"--delete-odd-files":[403,0,1,"cmdoption-reconstruct-O"],"--dry-run":[403,0,1,"cmdoption-reconstruct-n"],"--force-reparse":[403,0,1,"cmdoption-reconstruct-G"],"--guid-mismatch-discard":[403,0,1,"cmdoption-reconstruct-U"],"--guid-mismatch-keep":[403,0,1,"cmdoption-reconstruct-R"],"--header-paths":[403,0,1,"cmdoption-reconstruct-P"],"--ignore-disk-metadata":[403,0,1,"cmdoption-reconstruct-x"],"--ignore-odd-files":[403,0,1,"cmdoption-reconstruct-o"],"--no-stat":[403,0,1,"cmdoption-reconstruct-s"],"--partition":[403,0,1,"cmdoption-reconstruct-p"],"--prefer-mboxlist":[403,0,1,"cmdoption-reconstruct-M"],"--quiet":[403,0,1,"cmdoption-reconstruct-q"],"--recursive":[403,0,1,"cmdoption-reconstruct-r"],"--scan-filesystem":[403,0,1,"cmdoption-reconstruct-f"],"--set-version":[403,0,1,"cmdoption-reconstruct-V"],"--update-uniqueids":[403,0,1,"cmdoption-reconstruct-I"],"--userids":[403,0,1,"cmdoption-reconstruct-0"],"-C":[403,0,1,"cmdoption-reconstruct-C"],"-G":[403,0,1,"cmdoption-reconstruct-G"],"-I":[403,0,1,"cmdoption-reconstruct-I"],"-M":[403,0,1,"cmdoption-reconstruct-M"],"-O":[403,0,1,"cmdoption-reconstruct-O"],"-P":[403,0,1,"cmdoption-reconstruct-P"],"-R":[403,0,1,"cmdoption-reconstruct-R"],"-U":[403,0,1,"cmdoption-reconstruct-U"],"-V":[403,0,1,"cmdoption-reconstruct-V"],"-f":[403,0,1,"cmdoption-reconstruct-f"],"-n":[403,0,1,"cmdoption-reconstruct-n"],"-o":[403,0,1,"cmdoption-reconstruct-o"],"-p":[403,0,1,"cmdoption-reconstruct-p"],"-q":[403,0,1,"cmdoption-reconstruct-q"],"-r":[403,0,1,"cmdoption-reconstruct-r"],"-s":[403,0,1,"cmdoption-reconstruct-s"],"-u":[403,0,1,"cmdoption-reconstruct-0"],"-x":[403,0,1,"cmdoption-reconstruct-x"]},rehash:{"-f":[404,0,1,"cmdoption-rehash-f"],"-i":[404,0,1,"cmdoption-rehash-i"],"-n":[404,0,1,"cmdoption-rehash-n"],"-v":[404,0,1,"cmdoption-rehash-v"]},relocate_by_id:{"--dry-run":[405,0,1,"cmdoption-relocate_by_id-n"],"--quiet":[405,0,1,"cmdoption-relocate_by_id-q"],"--userids":[405,0,1,"cmdoption-relocate_by_id-u"],"-C":[405,0,1,"cmdoption-relocate_by_id-C"],"-n":[405,0,1,"cmdoption-relocate_by_id-n"],"-q":[405,0,1,"cmdoption-relocate_by_id-q"],"-u":[405,0,1,"cmdoption-relocate_by_id-u"]},restore:{"--all-mailboxes":[406,0,1,"cmdoption-restore-0"],"--delayed-startup":[406,0,1,"cmdoption-restore-w"],"--dest-mailbox":[406,0,1,"cmdoption-restore-M"],"--dest-partition":[406,0,1,"cmdoption-restore-P"],"--dry-run":[406,0,1,"cmdoption-restore-n"],"--file":[406,0,1,"cmdoption-restore-2"],"--input-file":[406,0,1,"cmdoption-restore-F"],"--keep-deletedprefix":[406,0,1,"cmdoption-restore-D"],"--keep-uidvalidity":[406,0,1,"cmdoption-restore-U"],"--local-only":[406,0,1,"cmdoption-restore-L"],"--mailbox":[406,0,1,"cmdoption-restore-3"],"--only-expunged":[406,0,1,"cmdoption-restore-1"],"--override-acl":[406,0,1,"cmdoption-restore-A"],"--recursive":[406,0,1,"cmdoption-restore-r"],"--require-compression":[406,0,1,"cmdoption-restore-z"],"--skip-expunged":[406,0,1,"cmdoption-restore-X"],"--userid":[406,0,1,"cmdoption-restore-4"],"--verbose":[406,0,1,"cmdoption-restore-v"],"-A":[406,0,1,"cmdoption-restore-A"],"-C":[406,0,1,"cmdoption-restore-C"],"-D":[406,0,1,"cmdoption-restore-D"],"-F":[406,0,1,"cmdoption-restore-F"],"-L":[406,0,1,"cmdoption-restore-L"],"-M":[406,0,1,"cmdoption-restore-M"],"-P":[406,0,1,"cmdoption-restore-P"],"-U":[406,0,1,"cmdoption-restore-U"],"-X":[406,0,1,"cmdoption-restore-X"],"-a":[406,0,1,"cmdoption-restore-0"],"-f":[406,0,1,"cmdoption-restore-2"],"-m":[406,0,1,"cmdoption-restore-3"],"-n":[406,0,1,"cmdoption-restore-n"],"-r":[406,0,1,"cmdoption-restore-r"],"-u":[406,0,1,"cmdoption-restore-4"],"-v":[406,0,1,"cmdoption-restore-v"],"-w":[406,0,1,"cmdoption-restore-w"],"-x":[406,0,1,"cmdoption-restore-1"],"-z":[406,0,1,"cmdoption-restore-z"]},sievec:{"-C":[407,0,1,"cmdoption-sievec-C"]},sieved:{"--as-sieve":[408,0,1,"cmdoption-sieved-s"],"-s":[408,0,1,"cmdoption-sieved-s"]},smmapd:{"-C":[409,0,1,"cmdoption-smmapd-C"],"-D":[409,0,1,"cmdoption-smmapd-D"],"-T":[409,0,1,"cmdoption-smmapd-T"],"-U":[409,0,1,"cmdoption-smmapd-U"]},squatter:{"--allow-partials":[410,0,1,"cmdoption-squatter-p"],"--audit":[410,0,1,"cmdoption-squatter-A"],"--channel":[410,0,1,"cmdoption-squatter-1"],"--compact":[410,0,1,"cmdoption-squatter-z"],"--copydb":[410,0,1,"cmdoption-squatter-o"],"--filter":[410,0,1,"cmdoption-squatter-F"],"--help":[410,0,1,"cmdoption-squatter-h"],"--incremental":[410,0,1,"cmdoption-squatter-i"],"--internalindex":[410,0,1,"cmdoption-squatter-Z"],"--name":[410,0,1,"cmdoption-squatter-N"],"--nodaemon":[410,0,1,"cmdoption-squatter-d"],"--only-upgrade":[410,0,1,"cmdoption-squatter-U"],"--recursive":[410,0,1,"cmdoption-squatter-2"],"--reindex":[410,0,1,"cmdoption-squatter-X"],"--reindex-minlevel":[410,0,1,"cmdoption-squatter-L"],"--reindex-partials":[410,0,1,"cmdoption-squatter-P"],"--reindex-tier":[410,0,1,"cmdoption-squatter-T"],"--rolling":[410,0,1,"cmdoption-squatter-R"],"--skip-locked":[410,0,1,"cmdoption-squatter-B"],"--sleep":[410,0,1,"cmdoption-squatter-S"],"--squat-annot":[410,0,1,"cmdoption-squatter-a"],"--squat-skip":[410,0,1,"cmdoption-squatter-s"],"--srctier":[410,0,1,"cmdoption-squatter-3"],"--synclog":[410,0,1,"cmdoption-squatter-0"],"--user":[410,0,1,"cmdoption-squatter-u"],"--verbose":[410,0,1,"cmdoption-squatter-v"],"-A":[410,0,1,"cmdoption-squatter-A"],"-B":[410,0,1,"cmdoption-squatter-B"],"-C":[410,0,1,"cmdoption-squatter-C"],"-F":[410,0,1,"cmdoption-squatter-F"],"-L":[410,0,1,"cmdoption-squatter-L"],"-N":[410,0,1,"cmdoption-squatter-N"],"-P":[410,0,1,"cmdoption-squatter-P"],"-R":[410,0,1,"cmdoption-squatter-R"],"-S":[410,0,1,"cmdoption-squatter-S"],"-T":[410,0,1,"cmdoption-squatter-T"],"-U":[410,0,1,"cmdoption-squatter-U"],"-X":[410,0,1,"cmdoption-squatter-X"],"-Z":[410,0,1,"cmdoption-squatter-Z"],"-a":[410,0,1,"cmdoption-squatter-a"],"-d":[410,0,1,"cmdoption-squatter-d"],"-f":[410,0,1,"cmdoption-squatter-0"],"-h":[410,0,1,"cmdoption-squatter-h"],"-i":[410,0,1,"cmdoption-squatter-i"],"-n":[410,0,1,"cmdoption-squatter-1"],"-o":[410,0,1,"cmdoption-squatter-o"],"-p":[410,0,1,"cmdoption-squatter-p"],"-r":[410,0,1,"cmdoption-squatter-2"],"-s":[410,0,1,"cmdoption-squatter-s"],"-t":[410,0,1,"cmdoption-squatter-3"],"-u":[410,0,1,"cmdoption-squatter-u"],"-v":[410,0,1,"cmdoption-squatter-v"],"-z":[410,0,1,"cmdoption-squatter-z"]},sync_client:{"--all-users":[411,0,1,"cmdoption-sync_client-A"],"--channel":[411,0,1,"cmdoption-sync_client-n"],"--connect-once":[411,0,1,"cmdoption-sync_client-o"],"--delay":[411,0,1,"cmdoption-sync_client-d"],"--delayed-startup":[411,0,1,"cmdoption-sync_client-w"],"--dest-partition":[411,0,1,"cmdoption-sync_client-p"],"--foreground-rolling":[411,0,1,"cmdoption-sync_client-R"],"--input-file":[411,0,1,"cmdoption-sync_client-f"],"--local-only":[411,0,1,"cmdoption-sync_client-L"],"--mailboxes":[411,0,1,"cmdoption-sync_client-m"],"--no-copyback":[411,0,1,"cmdoption-sync_client-O"],"--require-compression":[411,0,1,"cmdoption-sync_client-z"],"--rolling":[411,0,1,"cmdoption-sync_client-r"],"--rolling-once":[411,0,1,"cmdoption-sync_client-1"],"--server":[411,0,1,"cmdoption-sync_client-S"],"--shutdown-file":[411,0,1,"cmdoption-sync_client-F"],"--sieve-mode":[411,0,1,"cmdoption-sync_client-s"],"--skip-locked":[411,0,1,"cmdoption-sync_client-N"],"--stage-to-archive":[411,0,1,"cmdoption-sync_client-a"],"--timeout":[411,0,1,"cmdoption-sync_client-t"],"--userids":[411,0,1,"cmdoption-sync_client-u"],"--verbose":[411,0,1,"cmdoption-sync_client-v"],"--verbose-logging":[411,0,1,"cmdoption-sync_client-l"],"-1":[411,0,1,"cmdoption-sync_client-1"],"-A":[411,0,1,"cmdoption-sync_client-A"],"-C":[411,0,1,"cmdoption-sync_client-C"],"-F":[411,0,1,"cmdoption-sync_client-F"],"-L":[411,0,1,"cmdoption-sync_client-L"],"-N":[411,0,1,"cmdoption-sync_client-N"],"-O":[411,0,1,"cmdoption-sync_client-O"],"-R":[411,0,1,"cmdoption-sync_client-R"],"-S":[411,0,1,"cmdoption-sync_client-S"],"-a":[411,0,1,"cmdoption-sync_client-a"],"-d":[411,0,1,"cmdoption-sync_client-d"],"-f":[411,0,1,"cmdoption-sync_client-f"],"-l":[411,0,1,"cmdoption-sync_client-l"],"-m":[411,0,1,"cmdoption-sync_client-m"],"-n":[411,0,1,"cmdoption-sync_client-n"],"-o":[411,0,1,"cmdoption-sync_client-o"],"-p":[411,0,1,"cmdoption-sync_client-p"],"-r":[411,0,1,"cmdoption-sync_client-r"],"-s":[411,0,1,"cmdoption-sync_client-s"],"-t":[411,0,1,"cmdoption-sync_client-t"],"-u":[411,0,1,"cmdoption-sync_client-u"],"-v":[411,0,1,"cmdoption-sync_client-v"],"-w":[411,0,1,"cmdoption-sync_client-w"],"-z":[411,0,1,"cmdoption-sync_client-z"]},sync_reset:{"--force":[412,0,1,"cmdoption-sync_reset-f"],"--verbose":[412,0,1,"cmdoption-sync_reset-v"],"-C":[412,0,1,"cmdoption-sync_reset-C"],"-f":[412,0,1,"cmdoption-sync_reset-f"],"-v":[412,0,1,"cmdoption-sync_reset-v"]},sync_server:{"-C":[413,0,1,"cmdoption-sync_server-C"],"-p":[413,0,1,"cmdoption-sync_server-p"]},timsieved:{"-C":[414,0,1,"cmdoption-timsieved-C"]},translatesieve:{"-C":[416,0,1,"cmdoption-translatesieve-C"],"-a":[416,0,1,"cmdoption-translatesieve-a"],"-f":[416,0,1,"cmdoption-translatesieve-f"],"-n":[416,0,1,"cmdoption-translatesieve-n"],"-u":[416,0,1,"cmdoption-translatesieve-u"],"-v":[416,0,1,"cmdoption-translatesieve-v"]},unexpunge:{"--all":[417,0,1,"cmdoption-unexpunge-a"],"--list":[417,0,1,"cmdoption-unexpunge-l"],"--set-flag":[417,0,1,"cmdoption-unexpunge-f"],"--uids":[417,0,1,"cmdoption-unexpunge-u"],"--unset-deleted":[417,0,1,"cmdoption-unexpunge-d"],"--verbose":[417,0,1,"cmdoption-unexpunge-v"],"--within-time-interval":[417,0,1,"cmdoption-unexpunge-t"],"-C":[417,0,1,"cmdoption-unexpunge-C"],"-a":[417,0,1,"cmdoption-unexpunge-a"],"-d":[417,0,1,"cmdoption-unexpunge-d"],"-f":[417,0,1,"cmdoption-unexpunge-f"],"-l":[417,0,1,"cmdoption-unexpunge-l"],"-t":[417,0,1,"cmdoption-unexpunge-t"],"-u":[417,0,1,"cmdoption-unexpunge-u"],"-v":[417,0,1,"cmdoption-unexpunge-v"]}},objnames:{"0":["std","cmdoption","program option"],"1":["std","cyrusman","cyrusman"]},objtypes:{"0":"std:cmdoption","1":"std:cyrusman"},terms:{"000":[82,83,84,86,87],"0000":[27,348,389,417],"00000000":[154,387,417],"000000000000000000000000":61,"00000001":[387,389],"00000002":[387,389],"00000004":387,"00000010":387,"00000011":387,"00000014":417,"00000022":387,"000001":[387,417],"001":27,"002":27,"00278862":417,"00278863":417,"008":27,"009112":65,"0101003f4c56b00545000000":61,"0101003f4c56b04b2900000d":61,"0101003f4c56b0514900001f":61,"0101003f4c56b07422000002":61,"0101003f4c56b07e56000023":61,"0101003f4c56b08328000016":61,"0101003f4c56b084d7000002":61,"0101003f4c56b087f3000001":61,"0101003f4c56b08c9d000026":61,"0117":410,"0200":27,"0300":[56,373],"03ff":56,"0400":[74,267,275,348,355,387],"04012015":352,"0403":15,"04152015":352,"0430":[160,267],"0445":267,"04482782":358,"0500":[387,389],"077":349,"0800":309,"097":27,"0977":431,"0cee599b1573110fee428f8323690cbcb9589661":74,"0x0":80,"0x4066cc":80,"0x406806":80,"0x40c059":80,"0x4399d8":80,"0x44a0ca":80,"0x44a2f8":80,"0x4c2815c":80,"0x61b32a9":80,"0x61b36ed":80,"0x61b3827":80,"0x72d7748e":80,"100":[9,11,30,46,87,276,288,344,348,349,355,379,381,383,384,392,395,396,398,409,413,414],"1000":[30,238,241,242,349,411],"10000":386,"1000gb":276,"1000gib":[9,276],"100gb":276,"100gib":9,"100mb":46,"101":[190,206],"1011":100,"1012":100,"1013":100,"1015":100,"10167054345787041319":27,"1024":[15,154,266,275,349,374],"1024b":349,"1024k":349,"1024kib":349,"1024mib":349,"10330":358,"1036":431,"1048576":[28,402],"1051":373,"1062919294":64,"1062945305":61,"1062968731":61,"1062971802":61,"10646":56,"1079745":80,"109":161,"1090":[164,200],"10m":349,"10s":[284,349],"10t16":27,"110":[30,96,267,294,312,432,445],"1100":374,"1109":[96,267,294,445],"110gib":9,"112":64,"11277155374959916506":27,"11356":[165,190],"11422":304,"1143":302,"11438":304,"1147":267,"115":98,"116":[146,161],"117":161,"1172":373,"1176":431,"118":161,"11813528620713894618":27,"119":[96,267,292,294,349,445],"1191":99,"120":161,"1200":309,"1228":143,"123":74,"1234":55,"12345":[335,340],"123456789":27,"1234abcd":18,"125":387,"1252":[219,221,222],"1256":99,"1267":99,"127":[267,302,348],"128":[300,349,387],"128k":349,"12a62f123451395dc7d52518ae8e8c75571c9876":387,"1338":105,"134":[80,318],"1342":[97,431],"13460832":367,"13590468293654033744":27,"136":318,"1361966400":387,"1361982429":387,"1361982447":387,"137":318,"1375":274,"1377864000":387,"1377891971":387,"1399062365":312,"1404761793":387,"1404765874":387,"14068443041501787710":27,"1411487714":27,"1413804854":27,"142":162,"14230":[210,211,212,213,214,215,216,217,219,220,221,222],"1424683682":27,"1424683683":27,"1424683684":27,"1424690388":27,"1424699256":27,"1424699421":27,"1424699443":27,"1424699488":27,"1424699561":27,"1424699624":27,"1424699642":27,"1424699720":27,"1424699757":27,"1424699807":27,"1424699879":27,"1424699917":27,"1424699989":27,"1424713022":27,"1424713039":27,"1425726000":417,"1425728572":417,"1425728573":417,"1425912731":417,"1425912743":417,"1426000420":27,"1426000578":27,"143":[18,27,96,267,294,302,349,432,445],"1433511915":358,"1433518227":358,"1433633682":358,"1434":[164,200],"1437":200,"1437709276":74,"1437709300":74,"1437709355":74,"1437709425":74,"1437709508":74,"144":80,"1440":[267,348],"1443":387,"1446179047":74,"145":27,"149":318,"150":318,"151":[88,318],"152":318,"15213":81,"152f59c":200,"153":318,"155":318,"156":161,"157":318,"159":318,"161":318,"162":318,"163":161,"165":[161,318],"1652":431,"167":318,"168":[40,312,365],"169":318,"169791":402,"17185":373,"1719":74,"17203":373,"1730":431,"1731":49,"17338":373,"17373":373,"1742":163,"17426":373,"1752":163,"1763345":369,"1768":163,"1769":49,"1771":387,"179":[169,318],"1796640":369,"1796653":369,"1796663":369,"180":[44,309,410],"1800":309,"1801":138,"183":[27,170],"18345110432907898457":27,"18418688457439930663":312,"185395":373,"1869":431,"1870":431,"1872":[64,163,189],"1875":189,"18928":[192,216,217,219,220,221,222],"190":365,"1901":199,"19011213t204552z":349,"1909":199,"1914":199,"1915":189,"192":[40,300,312,365],"19205":309,"19238":373,"1926":189,"1926722702":80,"19268":373,"1927":189,"1931":[163,199],"1933":199,"1939":[8,431],"1944":199,"1948":199,"1951":431,"1952":431,"19610300":367,"1964":[164,199],"1967":[147,164,199],"1970":387,"1977":74,"19783":[166,193,217,219,220,221,222],"1990":442,"1993":[199,435],"1994":[81,268,440,444],"1995000":64,"1998":[268,440],"1c7cca361502dfed2d918da97e506f1c1e97dfb":74,"1gib":349,"1h30m":349,"1kib":349,"1mib":349,"1st":56,"1tb":339,"200":[9,18,30,276,349],"2000":[30,300],"20000":[238,241,242],"2000gib":[9,276],"2001":[403,427,440],"2002":[79,80,268,403,440],"2003":[60,96,267,294,403,445],"2004":[96,100,267,294,403,445],"2005":[96,267,294,309,349,387,403,445],"2006":[11,403],"2007":403,"2008":403,"2009":403,"200gib":[9,276],"201":349,"2010":[55,80,403],"2011":[111,139,304,372,374,403],"2012":[372,403],"2013":[161,373,389,403],"201308131519":373,"2014":[27,65,304,372,387,389],"2015":[27,174,352,417],"20150307114247":417,"20150307114251":417,"20151119t063000z":27,"20151119t073000z":27,"20151119t083000z":27,"2016":387,"2017":[81,210,211,212,213,214,215,216,217,219,220,221,222],"2018":[44,288],"2019":[165,166,190,192,193,216,217,219,220,221,222],"202":369,"2020a":[88,360],"2021":[196,231,232,243,244],"2022":[56,97,223],"2026":205,"203":171,"2030":27,"2033":[68,431],"2034":431,"20380119t031407z":349,"2045":[56,431],"2046":[349,431],"2047":[56,97,321,349,376,431],"206":[27,369],"2060":[68,431],"2061":431,"207":172,"2076":200,"20799488":64,"2080":200,"2086":[14,270,274,349,431],"2087":[374,431,441],"2088":431,"2090":201,"2091":201,"2097152":306,"20m":349,"20s":349,"20t11":27,"20t13":27,"211":369,"212":369,"2129":74,"2132":201,"21427":387,"2159":74,"216":174,"2177":[12,164,203,349,431],"218":27,"2185":164,"2191":202,"2192":[202,431],"2193":[286,431],"2195":431,"2197":203,"2199":[150,164,202],"220":267,"2201":202,"2216":202,"2221":[164,431],"2222":164,"224":64,"2240":203,"2244":56,"2246":431,"2253":[164,203],"2259":417,"2260":417,"227":175,"2275":154,"2282":205,"228429":402,"2295":431,"2298":431,"2300":304,"2301":203,"2303":203,"2312":56,"2317":203,"232":64,"2340":27,"2342":[33,431],"23450":387,"2346":204,"2348":204,"2350":204,"2355":205,"2359":[97,348,431],"236":80,"2362":205,"2369":431,"2378":164,"2383":[193,197,233,245],"2392":349,"23t14":27,"23t18":27,"240":309,"2413":205,"2425":431,"2426":431,"2444":431,"2449":[97,206,431],"2457":205,"2466":205,"2470":223,"24h":[349,417],"250":[267,308,341,353,378,379,381,383,384,393,394,395,396,398,409],"2518":431,"2521":206,"2524":206,"2534":206,"2545":417,"2548":417,"255":[27,349],"255f37ffc2e7":27,"256":[56,82,83,84,86,87,93,348,349],"2566":206,"2595":431,"2597":206,"2598":[238,240,241,242],"2609":206,"2617":431,"2620":226,"2621":190,"2625":206,"2643":206,"2663":206,"2678":190,"2679":190,"268":81,"2685":[141,142],"2712":190,"2717":145,"2727":109,"2728":138,"2729":190,"2741":192,"274250":417,"274251":417,"2746":74,"2772":139,"2774":288,"2777":191,"278786":417,"278787":417,"278788":417,"2795":191,"2806700531460584176":27,"2808":192,"2817":[191,431],"2818":431,"2821":[343,349,431],"2822":431,"283":80,"2831":[191,431],"2832":191,"2839":[215,216,217,219,220,221,222],"2843":228,"2848":192,"286":417,"2877":192,"288":417,"2882":231,"2890":74,"2893":192,"2896189896878960640":27,"2904":192,"2913":[166,193],"2914":193,"2920":[193,194,431],"2931":193,"2971":431,"2980":431,"2992":27,"2999":80,"2c_thoma":27,"2gb":[189,193],"2ghz":339,"2nd":56,"300":[11,267,309,349],"3003":27,"3004":27,"3028":[99,300,349,431],"3029":226,"3035":223,"3036":223,"3038":223,"3039":223,"3043":138,"3046":223,"3049":223,"3057":226,"3060":226,"3073":227,"308":431,"3097981731339369225":27,"30gb":276,"30gib":9,"30m":349,"30s":[349,386],"3102":227,"3103":156,"3115":227,"3116":[194,227],"3120":228,"3123":[150,167,194,227],"3128":229,"3143":[168,195,227],"3150":140,"3152":227,"3153":228,"3154":228,"3157":228,"3158":138,"3159":110,"3163":228,"3164225":27,"3169":[158,228],"3172":229,"3174":228,"3178":138,"3179":138,"3180":229,"3183":228,"3188":158,"3191":[168,195,228],"32056":[231,243],"3206":431,"3207":431,"3208":[111,139],"3209":228,"3210":228,"3212":228,"3214":229,"3223":138,"3225":231,"3229":431,"323":80,"3235":230,"3239":229,"3240":[225,247],"3253":431,"3260":229,"32625b552aa1":66,"3265":229,"3272":229,"3273":138,"3275":229,"3281":229,"3287":[195,229],"32bit":58,"32k":349,"32m":349,"3300":139,"3303":158,"3307":156,"3312":[151,168,195,230],"3313":155,"3318":246,"3320":[168,195,230],"3325":[251,252,253,254,255,256],"3339":[154,431],"3342":154,"3344":154,"3345":154,"3347":154,"3348":431,"3349":154,"3351":154,"3352":154,"3353":154,"3355":[154,155],"3356":[154,155],"3357":[155,156],"3358":154,"33582":[196,232,244],"3360":155,"336053":109,"3361":155,"3362":155,"3364":157,"3369":155,"3370":155,"3381":142,"3382":156,"3383":156,"3385":156,"3388":157,"3389":156,"3390":157,"3391":156,"3392":156,"3394":156,"3397":74,"3399":156,"3400":156,"3402":138,"3404":[156,157],"3405":142,"3406":157,"3410":157,"3415":[146,157],"3417":156,"3420":156,"3421":[251,252,253,254,255,256],"3423":156,"3426":156,"3428":157,"3429":157,"3430":158,"3431":[158,431],"3433":157,"3437":158,"3438":158,"3439":139,"344":27,"3440":157,"3442":158,"3443":158,"3444":158,"3446":158,"3448":158,"3451":139,"3453":158,"3456":[158,196,231,243],"3457":158,"3462":243,"3463":[139,431],"3464":158,"3465":[113,158],"3466":158,"3467":158,"3468":243,"3470":158,"3477":158,"3482":138,"3484":145,"3485":142,"3488":244,"3489":139,"3491":139,"3492":139,"3495":139,"3497":139,"3498":139,"3499":139,"3501":[52,122,140,311,349,431,442],"3502":[140,431],"3503":139,"3504":138,"3505":139,"3506":139,"3507":139,"3516":431,"352":80,"3527":244,"3528":244,"3533":140,"3545":140,"3547":140,"3550":140,"3553":140,"3554":140,"3556":140,"3558":140,"3559":140,"3564":141,"3565":[140,141],"3566":141,"3582":142,"3586":141,"3588":141,"3589":74,"3591":141,"3593":141,"3594":141,"3595":141,"35955":387,"3597":[233,245],"3598":[142,431],"360":309,"3602":141,"3603":141,"3604":141,"3605":[233,245],"3608":141,"3609":141,"3610":141,"3611":141,"3613":143,"3615":141,"3621":143,"3623":142,"3626":142,"3627":143,"3628":142,"3634":142,"3635":142,"3636":142,"3637":142,"3638":142,"3640":[113,142],"3642":142,"3645":142,"3649":142,"3650":142,"3651":[143,144],"3656":[36,286,290,431],"3661":143,"3664":[143,233,245],"3665":143,"3667":143,"368":163,"369":417,"3691":[145,431],"3696":145,"3697":61,"370":417,"3715":145,"3718":145,"3719":145,"3725":145,"3729":145,"3733":145,"3735":145,"3737":145,"3742":145,"3744":431,"3750":245,"3754":145,"3757":146,"3765":175,"3769":[233,245],"3771":262,"3784":146,"3792":127,"3829c6087dac":417,"3834":431,"3839":[233,245],"3843":[233,245],"3848":[146,431],"3853":146,"3854":245,"3856":146,"3862":[147,175],"3866":174,"3890":81,"3894":[300,431],"3896":[251,254,255,256],"3905":[87,96,174,267,288,294,349,445],"3907":174,"3908":174,"3909":162,"3917":[225,247],"3919":61,"3927":175,"3937":61,"3938":176,"3941":246,"3977":[6,91,431],"3981462903180119079":27,"39gmt":44,"3ab4f8d5512e33b1":387,"3d9f02135bf964ff0b6a917921b862c3420e48f0":74,"3rd":[56,349],"400":30,"4002":198,"400gb":276,"400gib":9,"4035":[251,254,255,256],"404":349,"4066":61,"4089":61,"4091":66,"4096":349,"4097":387,"4100":[224,246],"4109":[225,247],"4118":61,"412":81,"4123":246,"4131":61,"4136":61,"4137":402,"4140":61,"4151":61,"4154":247,"4156":61,"4162":[225,247],"4187":262,"4189":[225,247],"4190":[96,267,294,300,445],"4199":[225,247],"41d7":358,"41z":27,"4201":378,"4216":[198,225,247],"423":58,"4257":247,"4285":[225,247],"4287":431,"4314":[14,103,121,270,271,274,431],"4315":[330,431],"4331":431,"4346":431,"4380":[198,225,247,257,262],"4383":262,"4387":81,"4422":431,"443":349,"4466":431,"4467":431,"4469":431,"4489":66,"448944":402,"4505":431,"451":267,"452":41,"4550":431,"4551":431,"4559":431,"458":74,"45m":349,"4616":431,"4642":431,"4643":431,"4644":431,"46461":27,"466":27,"46908":417,"473":80,"4731":431,"474":80,"47481":358,"47489":358,"47513":358,"476":27,"4791":431,"482":27,"4863":27,"489":80,"4918":431,"4954":[349,431],"4959":431,"4978":431,"49ba20f5":27,"4aa62f540d81395dc7d52518ae8e8c75571c8f11":387,"4d5c6b7a":304,"4d88af31":304,"4d88af34":304,"4d88af35":304,"4d9618acd0aea6b33683766358351459":27,"4gb":339,"4ghz":339,"4mb":[251,252,253,254,255,256],"4rev1":431,"4xx":349,"500":[28,30],"5000":[81,349,369],"50000":40,"500gib":9,"503":349,"5032":431,"5034":431,"5051":349,"509":267,"5092":431,"512":[313,378],"512d":349,"5153412":367,"5161":431,"5162":431,"5173":[300,431],"5182":[262,431],"5183":431,"5228":[300,431],"5229":[178,185,186,187,188,300,431],"5230":[300,431],"5231":[300,431],"5232":[300,431],"5233":[300,431],"5235":431,"524":349,"5255":431,"5256":[431,441],"5257":[14,270,274,349,431,441],"5258":431,"5259":431,"5260":[300,431],"5267":[235,236,238,239,240,241,242,431],"5287":358,"529":[268,440],"5293":[235,236,238,239,240,241,242,300,431],"530":444,"5321":[349,431],"5322":[93,169,431],"5335":349,"5397":431,"53c4137":200,"5400":400,"5423":[27,277,349,431],"5429":[300,431],"5435":[300,431],"5436":431,"5437":431,"5463":[300,431],"5464":[14,270,274,326,349,431],"5465":[27,277,431],"5466":431,"5490":[178,180,181,182,183,184,185,186,187,188,300,431],"550":[267,349],"552":41,"5524":431,"5536":431,"5537":431,"5545":431,"5546":431,"5550":[262,431],"5571a7bc1bc865":358,"559":444,"5593":431,"562":27,"5623":387,"563":[96,267,294,445],"5689":431,"5703":431,"5789330":373,"5804":[300,427,431],"581":80,"5819":[431,441],"5842":431,"585":[268,440],"587":349,"5957":[431,441],"5995":431,"5a6":97,"5d9e4f44":66,"5edadcf":200,"5meg":442,"600":[18,30,411,445],"6000":292,"6009":431,"600gb":276,"600gib":9,"6047":[251,252,253,254,255,256,349,431],"60m":349,"60s":[251,252,253,254,255,256,349],"6101":431,"6131":[300,431],"6134":[300,431],"6154":[208,209,210,211,212,213,214,215,216,217,219,220,221,222,349,362,431,441],"616":27,"6203":[349,431],"621":27,"631":80,"6321":431,"635":365,"6350":431,"6352":431,"6376":431,"640":27,"640e232e3877":66,"6455":431,"6468":431,"64b":349,"64bit":[142,199],"6558":431,"6570":349,"6578":431,"6585":431,"6609":[300,431],"6638":431,"672":64,"676":27,"6762":387,"6764":431,"6785":431,"6797":431,"6836d0110252d08a0656c14c2d2d314124755491":74,"6851":[330,431],"6855":431,"6901":431,"6964":387,"69bdb40dac9de4d17057a5245c34544f2d6849db":387,"6aa93fd583f143dde555184d508ab0916e06b026":387,"6b98205c796c6c61":61,"700":30,"700gib":[9,276],"70gb":276,"70gib":9,"7149274646509524617":27,"715":80,"7162":431,"717":27,"7230":431,"7231":431,"7232":431,"7233":431,"7234":431,"7235":431,"7238":431,"7239":431,"7240":431,"7265":431,"7352":[300,431],"736":27,"7377":[262,431],"739232245980a3efe3df490841221a4b7bac4f27":387,"7395":81,"7444588115769591371":27,"750":[267,445],"7519":[251,252,253,254,255,256,349],"7529":431,"7540":431,"755":267,"7615":431,"7616":431,"7617":431,"7629":27,"763":80,"7649":27,"7685":27,"7692":431,"7694":431,"7721":27,"7725":431,"7786":304,"7804":431,"7808":[88,431],"7809":[27,88,431],"7813":27,"7888":[235,236,238,239,240,241,242,349,431],"7889":431,"789":88,"7932":431,"7953":431,"7986":431,"7b64ec321457715ee61fe238f178f5d72adaef64":74,"7bit":[27,267,417],"7c76ec2b":66,"7df9":66,"7f6f384c3f5ba99a":61,"8008":87,"8026":27,"8048":27,"8051832424702584527":27,"8070":27,"8077":174,"8078":174,"8080":[267,349,379,381,383,384,392,395,396,398,409,413,414],"80gib":9,"80k":339,"80s":440,"8107":27,"8140":27,"8144":431,"816":365,"8192":[65,283,309,349],"8210":27,"822":[34,41,97,299,321,322,431],"8246":431,"8288":431,"8297":431,"8437":431,"8438":431,"8439907626481649843":27,"8440":431,"8441":431,"8443":87,"8470":431,"8474":431,"8479002111695998134":27,"8508":431,"8514":431,"8579":[300,431],"858":27,"8580":431,"8607":431,"8620":[90,217,219,220,221,222,251,252,253,254,255,256,431],"8621":[90,217,219,220,221,222,431],"885":150,"8859":[27,56,97,219,221,222],"8878":431,"8887":[90,431],"8970":[251,252,253,254,255,256,431],"8bit":[27,138,267,349,431],"8bitmim":98,"8gb":339,"8th":97,"900":30,"9007":90,"900gib":[9,276],"9088":402,"909":[318,417],"90d":349,"90d104346ef3cba9e419461dd26045035f4cba02":74,"90m":349,"931":318,"9459":402,"9494635035963533515":27,"95349cd5d1cf21b55e6e0930b2ee5754f977ba8c":417,"9634":403,"9635":403,"9642":403,"966":27,"9701853636551497828":27,"976":27,"977":377,"993":[96,267,294,445],"995":[96,267,294,445],"999":[267,445],"9bd8":66,"\u00f8yvind":443,"\u0434\u0438\u043b\u044f\u043d":[163,190,191,192,193,196,198,199,206,216,217,219,220,221,222,223,225,228,230,231,233,245,247,251,252,253,254,255,256],"\u043f\u0430\u043b\u0430\u0443\u0437\u043e\u0432":[163,190,191,192,193,196,198,199,206,216,217,219,220,221,222,223,225,228,230,231,233,245,247,251,252,253,254,255,256],"abstract":[44,55],"boolean":[68,326,349],"break":[40,44,45,59,74,80,97,140,141,143,144,158,164,174,175,190,207,209,210,211,212,213,214,215,216,217,234,235,236,248,249,258,259,263,264,265,275,300,323,349,359],"byte":[6,46,52,56,58,59,62,74,75,80,97,100,113,142,154,156,277,349,382,387,403],"case":[0,4,5,7,11,15,25,26,33,38,41,44,45,47,48,51,52,55,56,57,58,62,68,72,74,75,80,97,98,99,104,140,141,145,152,156,200,233,236,238,239,240,241,242,245,267,269,274,278,279,282,286,288,290,297,302,304,315,317,320,328,330,331,340,343,348,349,374,386,392,406,410,417,432,442,447],"catch":[36,74,97,434],"char":[46,47,55,56,68,74,80,304],"class":[41,56,80,262,266,267,278,286,299,349,440,448],"const":[46,47,55,56,68,80],"default":[4,5,6,9,11,14,18,19,20,22,24,25,30,31,33,40,44,51,56,65,74,76,80,82,83,84,86,87,88,89,90,91,92,93,97,99,100,107,117,122,136,141,146,156,161,166,173,174,180,181,193,200,206,243,266,267,268,269,270,273,274,275,276,277,278,280,284,286,288,292,295,297,300,302,304,308,309,310,313,314,316,321,326,329,330,341,348,349,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,376,377,378,379,380,381,382,383,384,386,387,388,389,390,392,393,394,395,396,397,398,399,400,402,403,405,406,407,408,409,410,411,412,413,414,415,416,417,420,421,422,423,424,426,427,428,429,430,445,447],"enum":[75,80],"export":[41,65,98,131,267,292,318,431],"final":[3,6,11,15,25,41,47,51,56,58,62,75,80,104,122,145,154,158,266,267,274,300,319,328,349,440,442,448],"float":[349,368],"function":[7,11,12,18,19,36,40,44,45,47,50,52,56,58,60,68,71,75,79,80,81,87,88,89,92,93,97,98,99,100,102,133,139,206,217,219,220,221,222,227,267,284,286,290,296,300,314,349,359,442,447,448],"go\u0142\u0119biowski":206,"goto":[55,56,76],"h\u00e5vard":349,"import":[3,11,74,77,78,91,97,98,100,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,178,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,251,252,253,254,255,256,266,267,275,286,309,348,349,359,403,432,442,448],"int":[46,47,55,56,59,68,74,80,97,127,130,349],"jes\u00fa":158,"kundr\u00e1t":154,"long":[9,30,33,36,41,47,55,68,74,80,97,106,138,149,154,156,160,164,200,203,228,231,238,241,242,243,251,252,253,254,255,256,262,266,275,276,309,315,321,330,341,348,349,352,370,374,378,380,386,411,435,447],"new":[1,4,7,9,11,13,19,27,28,30,36,40,42,44,45,47,49,50,51,52,53,56,57,58,59,61,64,68,71,72,74,75,76,77,78,82,83,84,85,86,87,88,89,97,99,100,102,104,107,108,109,118,119,121,136,137,143,147,152,154,161,163,178,179,180,181,182,183,184,185,186,187,188,191,196,198,212,213,214,215,216,217,219,220,221,222,225,232,235,236,238,239,240,241,242,244,247,251,252,253,254,255,256,257,261,262,267,271,274,275,276,278,279,280,282,286,288,289,294,302,304,307,308,309,310,311,320,326,339,340,341,344,349,353,361,374,377,378,379,381,383,384,386,389,390,391,393,394,395,396,397,398,403,404,406,409,410,411,416,431,432,435,437,439,443,445,446,447,448],"null":[3,6,11,18,33,41,44,45,46,47,55,59,60,62,66,68,74,75,79,97,98,113,142,162,178,180,181,182,183,184,185,186,187,188,267,273,280,296,343,349,394],"ond\u0159ej":[174,443],"public":[41,48,56,72,88,89,92,315,349,420,421,423,424,426,428,429,430,447],"return":[5,27,41,44,45,46,47,52,55,56,59,60,61,63,68,74,75,76,79,80,88,89,92,97,98,99,109,132,133,139,140,143,161,163,164,206,215,216,217,219,220,221,222,223,226,251,252,253,254,255,256,267,274,286,288,290,296,297,349,374,376,419,431,448],"short":[7,11,44,52,57,97,100,109,126,136,145,163,271,274,276,290,339,341,345,349,352,371,447],"static":[3,36,44,68,80,93,97,98,349],"super":[35,55,58,152,266,442],"sur\u00fd":[174,443],"switch":[11,41,51,56,68,97,98,99,100,145,161,214,215,216,217,219,220,221,222,251,254,255,256,266,268,286,288,292,301,307,309,348,349,387,403,410,440,448],"true":[7,18,40,44,45,47,66,75,87,97,205,267,271,309,326,335,344,349,374,397,410],"try":[40,44,47,55,56,59,64,72,74,97,160,207,209,210,211,212,213,214,215,216,217,219,220,221,222,234,235,236,248,249,258,259,263,264,265,267,275,286,288,300,309,312,315,318,322,338,339,341,348,349,406,411,412,432,442,447],"var":[1,11,28,40,51,54,65,74,77,87,97,266,267,278,279,280,282,283,288,292,295,297,309,310,312,313,332,338,340,348,361,365,367,369,379,381,383,384,386,387,388,390,392,395,396,398,409,413,414,445,447],"void":[35,55,56,60,68,80,296],"while":[5,9,10,11,19,27,28,33,36,40,41,44,45,47,49,52,55,56,57,58,59,60,66,68,70,72,74,84,99,109,160,191,266,267,274,275,277,278,280,286,288,290,296,302,310,311,313,314,320,330,332,334,339,341,348,349,355,362,374,397,410],AFS:[41,97,99,152,273,286,349,401],AMS:[268,440,442,444],AND:[72,81],Added:[97,99,100,102,104,105,106,107,109,110,114,115,117,120,121,122,124,125,126,129,130,131,132,133,134,136,152,156,178,180,181,182,183,184,185,186,187,188,192,194,229,251,252,253,254,255,256,310,349],Adding:[1,447],Age:382,And:[0,1,9,15,48,51,71,72,74,97,266,276,334,335,341,349,447],Are:[1,447],Bos:443,Bus:[3,11],But:[9,27,30,33,47,96,97,266,267,277],CAs:267,CVS:137,DBs:280,DES:97,DNS:[40,349],DOS:99,DOs:287,DoS:137,Doing:266,ECE:350,FOR:[55,81,339],For:[5,9,11,12,15,19,30,31,33,36,40,41,46,47,48,51,52,55,56,57,66,72,74,75,76,80,81,84,88,89,92,95,96,97,160,266,267,268,271,272,273,274,275,276,278,279,280,282,283,284,286,288,290,292,294,295,297,298,300,304,307,309,312,313,314,321,330,332,333,348,349,359,369,374,393,404,410,420,421,423,424,426,428,429,430,431,442,445,447,448],GFS:11,Has:[6,52,447],IDs:[6,40,349,352],INTO:18,Its:[6,44,58,93,267,290,443],JFS:339,JWS:349,NAS:11,NIS:40,NOT:[6,18,33,44,45,55,58,69,72,79,80,87,93,97,100,179,180,181,182,183,184,185,186,187,188,274,287,300,309,343,349,361,365,369,405,410],Near:447,Not:[44,74,97,324,349,381,398],One:[6,11,49,56,286,288,309,310,330,342,343,359,373,374,431,442],PTS:[4,41,266,273,280,349,399,447],QoS:[136,349],SAS:11,SRS:[49,349],SYS:[312,431],Such:[41,274,308],THE:[44,55,80,81,339],THEN:74,THESE:267,TLS:[4,5,41,55,68,82,83,84,86,87,93,96,97,98,99,105,108,114,120,146,156,160,161,168,173,174,195,203,227,228,266,280,292,294,349,415,420,421,423,424,426,428,429,430,431,445,447],That:[40,45,46,49,51,57,276,286,288,290,292,314,321,339,349,355],The:[0,1,2,3,4,5,6,8,9,10,11,12,13,15,18,19,23,24,25,27,30,31,33,35,36,38,40,45,47,48,49,51,52,53,55,56,58,59,60,61,62,65,66,68,69,71,72,74,75,76,77,79,81,82,83,85,86,87,88,89,90,91,92,93,97,98,99,100,102,104,106,141,160,163,164,178,179,180,181,182,183,184,185,186,187,188,196,197,203,205,206,207,208,209,210,211,212,213,214,215,216,217,219,220,221,222,223,232,233,234,235,236,238,239,240,241,242,244,245,248,251,252,253,254,255,256,258,261,262,263,266,267,268,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,292,294,295,297,299,300,304,305,307,308,309,310,311,312,313,314,315,316,317,318,321,326,327,330,333,335,336,338,339,340,343,344,345,347,348,349,350,352,353,354,355,356,357,358,359,360,362,363,364,365,366,368,369,373,374,378,379,381,382,383,384,386,388,389,390,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,409,410,411,412,415,417,420,421,422,423,424,426,427,428,429,430,431,432,433,435,437,438,440,442,443,444,445,447,448],Their:[53,178,181,182,183,184,185,186,187,188],Then:[9,30,41,59,65,72,74,80,267,276,286,288,309,328],There:[5,33,36,40,41,44,45,47,49,58,70,71,72,75,80,81,88,89,96,97,100,266,267,273,275,276,278,280,282,286,288,289,290,292,300,314,315,324,336,339,341,349,363,368,375,378,406,439,442,443,447],These:[1,5,6,19,33,40,41,47,48,49,52,55,56,58,59,60,62,63,68,72,75,80,81,97,107,174,223,226,235,236,238,239,240,241,242,243,262,266,267,272,275,277,280,283,286,290,292,296,299,328,340,348,349,368,406,410,443],ToS:349,UPS:11,USE:[18,81,142,161,359],Use:[2,11,40,47,53,55,60,71,72,91,97,106,109,173,262,266,267,274,287,288,292,296,300,307,309,312,325,333,338,348,349,352,353,354,355,356,357,358,359,360,361,362,363,365,366,367,368,369,370,371,372,373,374,376,377,378,379,380,381,382,383,384,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,402,403,404,405,406,407,409,410,411,412,413,414,415,416,417,427,431,445,447],Used:[44,45,49,56,58,64,70,288,349,357,367,402,411,447,448],Useful:[275,355,373,403,410,411,447],Uses:[365,447],Using:[1,18,33,36,41,53,75,266,269,273,276,286,288,301,336,349,373,419,431,447],WILL:[292,349],WITH:[81,267,359],Was:97,Wes:[104,117,439,443],Will:[44,45],With:[9,11,24,30,33,41,58,80,160,161,174,251,252,253,254,255,256,265,266,269,273,304,309,313,330,349,355,369,373,374,408,447],Yes:55,__attribute__:229,_abort:74,_admin:41,_config:80,_cyrusv2_qgrp:267,_d9aa3c2dd73a9166113254d4ebe07bc8:27,_def_cyrusv2_mailer_flag:267,_defifnot:267,_end:74,_hash:80,_initi:80,_js:49,_mech:349,_min:80,_name_:55,_part:80,_registri:80,_start:74,_sync_authnam:275,_sync_host:275,_sync_password:275,_sync_port:275,_sync_repeat_interv:275,_tls_:100,_userid:80,_usermbox:80,_xxxxxx:74,a001:286,a002:286,a01:[82,83,84,86,87],a0e716087dac:417,a4bf5bbb9feaa271:27,a5677cfa1f5f7b627763652f4bb9b99f5970748c:74,a665:66,a777:274,a8486f5db6ec207de9b9f069850546e:27,aaa:80,abandon:100,abbrevi:374,abc:[52,267],abil:[7,11,19,35,38,40,41,93,97,98,99,142,166,193,262,285,286,288,292,314,338,349],abl:[3,11,18,19,33,36,40,44,47,52,74,80,82,83,84,86,87,88,110,132,262,266,267,274,286,288,304,309,330,349,386],abnf:431,abnorm:328,abomin:44,abort:[44,45,74,97,98,108,223,286,328,349,406,410,411],about:[0,1,3,5,6,7,11,15,36,40,41,46,48,49,51,61,64,68,70,71,72,79,80,97,98,108,138,140,156,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,209,210,211,212,213,214,215,216,217,219,220,221,222,233,245,251,252,253,254,255,256,267,276,277,282,286,288,289,292,297,315,321,339,342,343,349,355,363,370,374,378,403,406,433,435,447,449],abov:[15,18,40,41,47,51,56,58,74,75,77,81,84,87,92,156,160,161,215,216,217,219,220,221,222,267,276,278,279,280,282,286,288,292,300,304,307,339,348,359,373,374,417,445,448],absenc:[266,439],absolut:[9,28,30,55,72,74,88,100,160,276,280,284,297,349],abus:41,acap:[68,98,286,290,431],acapmbox:98,acapsiev:98,accent:56,accept:[11,44,45,66,74,97,98,99,100,122,133,134,142,161,163,178,180,181,182,183,184,185,186,187,188,203,209,210,211,212,213,214,215,216,217,219,220,221,222,225,235,236,238,239,240,241,242,247,251,252,253,254,255,256,261,262,266,267,286,290,292,300,309,321,349,353,364,374,376,379,381,383,384,392,393,394,395,396,398,401,409,410,414,431,439,442,445],access:[3,4,5,7,9,11,13,22,25,27,28,30,35,36,38,40,44,45,46,47,51,53,55,58,81,87,91,93,96,97,98,102,110,128,160,178,180,181,182,183,184,185,186,187,188,203,208,209,210,211,212,213,214,215,216,217,223,231,235,236,243,244,249,259,264,267,268,269,276,280,286,292,294,295,300,310,312,313,314,316,329,336,339,340,344,349,365,366,374,378,431,435,437,440,442,445,447],accid:412,accident:[24,25,330,339,406,417],accommod:[251,252,253,254,255,256,266,286],accompani:[15,279],accomplish:[41,152,268,278,286,292,339,343,440],accord:[9,30,74,91,219,220,221,222,275,276,278,283,288,336,349,355,363,373,406,439],accordingli:[74,100,292,349],account:[10,11,18,19,27,35,40,41,51,61,64,66,71,97,100,166,193,247,267,272,273,275,292,300,349,386,411,412,445,447],accountid:[27,66],accur:[11,47,160],achaemenid:51,achiev:[11,28,266,293,309,339,349,410],aci:[14,269,270,271,274,447],ack:341,acknowledg:[58,81],acl:[6,27,36,47,49,58,61,74,76,82,83,84,86,87,88,91,97,98,99,100,103,108,121,125,140,154,161,164,166,178,180,181,182,183,184,185,186,187,188,193,199,219,220,221,222,244,266,273,274,286,290,292,304,315,326,349,371,374,376,378,387,391,403,406,431,447],acl_admin_implies_writ:349,aclright:27,aclsubject:27,acm:349,acquir:[88,97,122],across:[8,11,12,13,36,41,44,51,55,57,59,74,98,100,106,152,164,199,205,266,272,275,285,286,288,290,314,339,349,442],act:[41,44,93,160,273,286,309,349,372,392,442],actdiag:52,action:[19,27,33,41,44,45,56,58,75,76,81,96,97,99,160,226,251,252,253,254,255,256,262,266,274,277,286,300,309,314,349,365,374,389,394,406,410,411,447],activ:[6,11,18,33,41,44,56,60,61,74,79,81,86,99,175,179,180,181,182,183,184,185,186,187,188,199,275,286,288,296,300,309,319,349,386,391,410,422,427,435],actual:[3,5,7,9,11,15,19,26,28,30,33,41,44,47,56,58,62,72,74,75,80,97,106,141,156,158,160,178,182,183,184,185,186,187,188,215,216,217,219,220,221,222,267,274,275,278,280,284,286,287,288,290,294,300,314,330,335,339,349,359,372,374,387,402,410,420,423,424,425,426,428,429,432,445],adam:206,adapt:[3,11,96],add:[18,40,44,45,48,49,51,57,58,60,65,66,68,72,74,79,80,87,88,96,97,99,100,105,108,131,138,140,157,160,161,191,212,213,214,215,216,217,219,220,221,222,229,235,236,238,239,240,241,242,251,252,253,254,255,256,262,275,277,279,282,284,286,288,289,292,294,296,300,302,304,307,309,314,318,336,349,356,371,378,403,431,442,445,447,448],added:[6,9,27,30,44,48,51,59,68,74,76,80,88,93,96,97,98,99,108,119,137,147,154,155,160,178,179,180,181,182,183,184,185,186,187,188,267,276,303,309,310,317,335,338,349,369,374,386,403,410,411,441,442],addflag:[75,266],adding:[18,19,40,53,65,68,78,80,104,132,152,160,174,275,276,283,288,300,309,336,349,355,366,403],addit:[3,5,6,7,9,11,12,19,31,36,41,52,53,55,56,57,59,74,75,81,90,96,98,109,160,178,179,180,181,182,183,184,185,186,187,188,194,266,267,272,274,275,277,278,279,280,281,283,286,290,292,299,306,307,336,338,339,343,349,374,386,394,403,406,410,431,440,442,447,448],addition:[41,81,99,231,243,274,282,286,288,319,349],addr:75,address:[3,4,5,6,11,18,19,22,33,36,41,53,56,59,69,71,72,75,93,97,98,99,100,102,160,245,251,252,253,254,255,256,267,274,290,292,300,315,317,321,326,335,339,348,349,365,374,376,393,406,411,431,447],addressbook:[22,93,125,127,130,132,208,244,267,349],addressbookprefix:349,addseen:229,addsub:108,addus:51,adher:[335,343],adjac:[56,74,349],adjust:[11,41,88,280,304,309,341,349,403,445],adkin:[98,342],adkinss:[98,342],admin:[7,33,40,41,87,88,93,98,99,100,104,110,133,160,161,190,193,194,200,216,217,219,220,221,222,236,238,239,240,241,242,262,266,267,271,272,275,284,288,300,309,314,315,326,349,374,406,414,447],administ:[33,35,40,41,271,272,274,374],administr:[3,7,9,11,13,15,24,25,34,36,49,81,82,83,84,86,87,93,96,97,100,160,166,174,180,181,193,208,231,243,266,270,271,274,278,284,285,286,292,293,297,301,314,321,326,330,339,349,355,356,357,358,359,360,362,373,374,435,436,442,447],admiss:349,admit:274,adopt:[19,444],adr:[251,252,253,254,255,256],adrian:223,adv:304,advanc:[9,30,276,307,440],advantag:[6,7,10,13,96,98,99,262,284,286,349,410,442],advers:74,advertis:[88,93,97,156,262,266,286,349,431],advis:[41,52,403],aea7:27,aege:141,aes256:[82,83,84,86,87],af11:349,af12:349,af13:349,af21:349,af22:349,af23:349,af31:349,af32:349,af33:349,af41:349,af42:349,af43:349,afek:443,affect:[19,33,46,49,53,72,74,97,98,152,191,200,219,220,221,222,251,252,253,254,255,256,266,275,309,317,324,337,339,341,347,349,356,373,403,410],aforement:[7,8,11,36,160],afs:[97,401],afskrb:349,afspt:[100,349],afspts_localrealm:349,afspts_mycel:349,after:[3,8,9,11,15,19,24,26,30,33,41,44,45,47,49,55,56,57,60,66,68,72,74,77,80,96,97,105,107,108,109,117,139,151,152,154,160,162,168,176,195,225,226,230,245,247,251,253,254,255,256,262,266,267,274,275,276,286,287,288,290,292,296,300,304,307,308,313,326,329,330,339,348,349,355,356,357,369,374,397,403,410,411,420,421,423,424,426,428,429,430,440,444],afterward:[44,45],again:[11,36,41,44,45,47,48,58,61,72,74,79,87,97,98,99,100,104,141,145,158,178,179,180,181,182,183,184,185,186,187,188,197,199,219,220,221,222,233,238,240,241,242,245,266,267,275,279,282,283,285,289,309,344,349,366,404,410,442,445],against:[5,11,41,52,56,64,70,72,74,76,82,83,84,86,87,97,115,139,160,174,227,245,246,267,277,286,290,299,300,320,330,342,349],age:[278,349,368,382,440],agent:[3,41,76,128,267,286,314,335,442],agentx:98,aggreg:[4,11,13,19,98,99,286,288,290,314,392,435,437,445,446,447],aggress:161,agnost:[11,44,45,66,90],ago:[154,304,330],agre:[55,267],agreement:321,ahead:[11,47,72,79,290,349],ahh:74,ahv:266,aid:[4,56,96,98,108,288,354,362,390,397],aim:[55,66,90,160],aix:339,aka:[160,275],akio:[139,140,223,228],akschu:227,ala:74,alain:98,alarm:[27,178,179,180,181,182,183,184,185,186,187,188,189,277,349],alarmrecipi:27,alarmtim:27,albert:100,alec:140,alert:[41,97,100,326,349,374,381,398],alexei:[439,443],alg:349,algorithm:[56,74,97,104,196,232,244,281,349],alia:[5,6,219,221,222,350,374],alias:[5,6,40,146,267,349,374],align:[55,58,75,97,104,122],alik:11,aliv:[6,74,129,341,349,431,434],all:[0,3,5,6,7,8,9,11,12,13,18,19,24,25,27,30,31,33,35,36,38,40,41,44,45,46,47,49,51,52,55,56,57,58,61,62,68,71,72,74,75,80,81,82,83,84,86,87,88,91,93,96,97,99,100,102,108,109,131,136,137,138,142,152,154,160,173,174,191,200,205,206,215,216,217,219,220,221,222,235,236,238,239,240,241,242,251,252,253,254,255,256,261,262,266,267,270,272,273,274,275,276,277,278,282,286,288,290,292,300,303,304,308,309,310,311,313,314,315,318,320,321,326,327,329,330,335,338,339,340,342,344,348,349,355,356,357,362,363,365,366,368,369,372,373,374,378,379,381,382,386,388,389,393,395,397,398,402,403,405,406,410,411,417,419,420,421,422,423,424,426,427,428,429,430,432,433,434,439,440,441,442,445,447,448],allberi:[98,374],alldai:27,alloc:[11,44,56,80,98,267,445,447],allof:100,allow:[3,5,7,8,9,11,13,15,18,19,24,25,27,30,33,34,35,36,40,41,44,45,46,47,49,55,56,58,60,62,68,69,74,75,88,89,90,91,92,93,97,98,99,100,102,104,105,106,108,109,110,114,122,131,133,139,141,146,152,156,157,158,161,172,174,175,178,180,181,182,183,184,185,186,187,188,196,198,205,216,217,219,220,221,222,228,229,231,232,236,238,239,240,241,242,243,244,262,266,267,268,271,273,274,275,277,278,282,283,284,286,287,288,290,292,296,297,300,309,312,313,314,317,320,321,324,326,329,330,333,341,348,349,356,359,366,368,374,386,393,410,414,420,421,422,423,424,425,426,427,428,429,430,432,439,440,442,445],allowallsubscrib:[7,274,288,349],allowanonymouslogin:[41,349],allowapop:[337,349],allowdelet:[216,217,219,220,221,222,349],allownewnew:[292,349,393],allowplaintext:[41,122,267,349],allowsetacl:349,allowusermov:[74,100,349],allprop:131,almost:[48,99,266,267,307,339,349,403],alon:[7,11,120,244,276,279,339,445],along:[41,66,71,74,133,266,268,274,286,348,440],alongsid:[6,275],alpha0:[248,258,260,263,265,435,447],alpha:72,alphabet:[12,55,278,286,348],alphanumer:[18,278,282,290,349],alpin:106,alreadi:[5,11,12,18,19,26,38,41,44,45,46,47,49,51,53,57,59,71,74,80,88,90,93,96,97,99,160,193,229,251,252,253,254,255,256,266,267,275,286,288,297,349,355,356,365,374,406,410,416,422,442,445],also:[3,5,6,7,9,11,15,18,19,25,27,28,30,31,33,36,40,41,44,45,46,48,49,50,51,52,53,55,56,58,59,65,69,71,72,74,80,87,88,89,93,97,98,99,100,102,137,145,152,154,158,160,163,164,196,229,232,244,251,252,253,254,255,256,262,266,267,272,273,274,275,276,277,278,281,282,283,286,288,290,292,296,298,300,309,312,313,314,317,330,331,339,340,343,432,439,440,442,443,444,445,447,448],alt:[292,349,391,448],alt_config:[44,45,74,419],altconfig:[361,407],alter:[18,74,88,309,314,335,348,368,372,406],altern:[9,11,56,58,66,74,80,88,90,98,137,266,267,269,286,288,289,292,295,301,318,330,337,338,349,373,375,385,386,411,419,447,448],although:[5,11,286,349,376],altnamespac:[41,87,98,99,100,155,178,182,183,184,185,186,187,188,247,266,273,300,347,349,416,432],altogeth:19,altprefix:349,alwai:[11,33,41,44,45,47,51,55,56,57,58,59,69,74,80,97,99,100,108,109,130,141,153,154,161,226,229,236,238,239,240,241,242,251,252,253,254,255,256,266,267,272,281,288,297,309,314,320,348,349,404,411],alwaystru:267,amalgam:72,amavisd:27,ambigu:274,amend:18,american:352,amo:[98,99],among:[3,9,30,97,160,286,353,390],amongst:444,amount:[9,11,18,24,25,27,28,30,34,58,75,97,98,100,102,106,122,160,235,236,238,239,240,241,242,266,276,286,289,297,315,336,341,349,410,441,447],amssync:97,analysi:285,anatoli:[227,228,229],ancestor:[235,236,238,239,240,241,242],ancient:[42,72,268,440,447],andi:[228,229,243,350],andjelkov:98,andrew:[68,81,97,141,268,286,288,304,442,444],andrewmailsystem:440,andrewproject:440,andrzej:267,anew:403,angular:349,ani:[3,5,7,11,12,15,25,27,33,35,40,41,44,45,46,47,48,52,53,55,56,57,58,59,60,61,62,66,68,72,74,76,80,81,82,83,84,86,87,88,93,95,96,97,98,99,100,102,109,114,166,178,180,181,182,183,184,185,186,187,188,193,219,220,221,222,235,236,238,239,240,241,242,244,251,252,253,254,255,256,267,271,272,273,276,277,278,279,280,282,283,286,287,288,290,294,295,296,298,300,304,307,309,314,319,321,328,329,330,333,338,343,344,345,348,349,353,355,357,359,361,365,366,368,369,371,372,373,374,376,378,379,381,386,387,388,393,395,398,402,403,404,405,406,410,411,413,417,419,420,421,423,424,426,428,429,430,432,435,443,445,446,447],ann:275,annatotor:349,annoi:[11,97,98,381,398],annot:[4,13,31,41,44,48,57,61,72,74,80,88,99,100,102,104,108,110,117,122,128,133,141,142,150,152,155,161,162,175,196,209,210,211,212,213,214,215,216,217,219,220,221,222,231,236,238,239,240,241,242,243,262,266,271,274,275,278,280,282,283,292,299,315,349,362,368,371,374,402,410,431,441,447],annotatemor:[82,83,84,86,87,99,100,160,175],annotatemsg:41,annotation_allow_undefin:[160,349],annotation_callout:[160,349],annotation_callout_disable_append:349,annotation_db:[44,45,160,349],annotation_db_path:[280,349],annotation_definit:[110,236,238,239,240,241,242,349],annotation_enable_legacy_command:[214,215,216,217,219,220,221,222,349],annotations_definit:349,announc:[33,48,72,175,431,433],annoy:56,anonym:[61,98,125,266,271,272,292,300,349,376,378,431,447],anonymis:74,anoth:[0,5,11,33,36,38,40,47,55,56,58,74,80,87,99,160,251,253,254,255,256,262,266,267,277,286,300,309,315,321,339,342,349,352,374,397,410,447],ansi:97,answer:[7,58,61,267,345,349,387,443],anthoni:[193,206],anticipatori:11,antiqu:55,antispam:435,antiviru:[178,179,180,181,182,183,184,185,186,187,188,373,435],anybodi:[58,72,97],anymor:[288,349],anyof:100,anyon:[5,19,35,88,97,138,288,292,330,349,391,439,442,443,447],anyoneuseracl:349,anysievefold:[166,193,349],anyth:[11,47,48,51,70,72,74,97,197,233,245,266,271,307,348,368,369,374,381,398],anywai:[44,74,97,275,349,411],anywher:[44,45,58,349],apach:93,apart:109,api:[1,6,55,58,60,62,66,74,79,90,98,125,136,140,191,199,320,349,435,447],apop:[337,349],app:55,appar:[56,191,286,381,398],appear:[9,11,22,30,33,48,56,58,66,75,76,91,97,99,134,267,274,275,276,286,288,292,309,315,319,324,335,343,348,349,373,406,411,417,447],append:[3,24,33,41,51,57,58,74,78,88,89,92,97,98,99,100,108,117,118,138,145,147,156,157,204,274,286,309,326,349,371,373,374,379,387,403,406,410],append_addseen:97,append_check:335,appendd:58,appendic:285,appendlimit:431,appl:[27,88,178,180,181,182,183,184,185,186,187,188,251,252,253,254,255,256,269,349,447],applepushservic:[277,349],appli:[11,19,27,28,33,35,41,50,51,52,53,55,59,66,72,74,109,174,251,252,253,254,255,256,273,274,276,286,298,300,304,307,308,309,310,314,321,330,334,349,355,356,368,406,448],applianc:11,applic:[3,5,8,27,36,55,60,66,80,97,98,100,160,268,269,288,293,296,303,309,330,337,342,343,357,431,432,435,442,447,448],appoint:11,apprais:[99,286],appreci:[11,141,220,221,222,275,432,443],approach:[11,55,59,267,286,309,339,448],appropri:[9,11,18,36,41,47,48,52,55,58,72,74,80,97,106,131,267,275,277,286,309,320,329,343,349,378,380,411,416,439,445],approv:[71,286,439],approxim:[41,74,355,410],april:352,aps_top:349,aps_topic_caldav:349,aps_topic_carddav:349,apsaccountid:27,apsdevicetoken:27,apssubtop:27,apsvers:27,apt:[49,51,80,83,87,266,267],aptli:310,arbit:36,arbitrari:[41,44,56,172,200,216,217,219,220,221,222,286,309],arbitrarili:97,arbitron:[52,58,97,99,100,114,351,418,447],arbitronsort:[351,447],architect:339,architectur:[7,36,109,266,285,301,349,431,435,436,447],archiv:[11,13,24,27,28,52,99,178,179,180,181,182,183,184,185,186,187,188,206,228,262,269,275,292,300,306,313,326,339,349,352,357,368,369,372,388,402,403,411,433,441,447],archive_:[178,179,180,181,182,183,184,185,186,187,188],archive_aft:[15,349],archive_dai:[15,349],archive_en:[15,279,349,411],archive_keepflag:[15,349],archive_maxs:[15,262,349],archivecach:[278,282,349],archivepartit:[15,194,227,278,279,349,368,369],area:[11,41,53,74,75,97,349],aren:[47,56,58,74,98,154,266,267,286,300,333],arg1:55,arg2:55,arg3:55,arg4:55,arg:[79,80,97,333],arguabl:[44,271],argument:[11,41,44,48,49,52,55,68,72,74,75,80,97,106,147,157,160,166,173,175,193,197,199,203,219,220,221,222,225,233,235,236,238,239,240,241,242,245,247,251,252,253,254,255,256,261,262,266,275,286,289,297,309,332,333,341,343,348,349,372,397,402,403,406,410,411,447],argv:74,aris:[11,24,81],around:[11,44,51,55,58,71,72,74,80,97,274,275,300,333,339,341,348,374,378,403,435],arpa:431,arrai:[11,27,28,56,68,75,266,349],arrang:[80,267,275],arrayu64:200,arriv:[19,25,74,178,179,180,181,182,183,184,185,186,187,188,289,349,356,378],arround:97,arrow:422,articl:[6,11,97,100,330,349,377,393,431],articul:11,artifact:[49,51],artifici:97,ascii:[27,33,41,56,97,349,356,376,417,431],asid:[11,33,35,160,330,448],ask:[58,61,97,267,314,338,349,359,420,421,423,424,426,428,429,430,435,436,447],asn1:6,aspect:[5,7,12,41,278,286,433],ass:339,assert:[44,45,59,80,100,162,176,206,243,246],asset:[11,90],assign:[5,11,19,96,192,274,275,297,349,356,374],assist:[58,330],associ:[5,6,9,11,19,30,40,41,58,60,133,160,273,276,283,286,288,292,296,326,349,356,357,374,448],associateddomain:349,assort:[99,100],assum:[15,18,19,33,40,44,48,49,51,53,56,70,72,74,90,93,100,163,223,262,266,267,275,277,284,286,292,297,300,304,330,348,349,359,373,376,403,416,420,421,423,424,426,428,429,430],assumpt:97,assur:[0,26,80],astr:68,asynchron:[64,348],atim:318,atom:[11,44,68,78,97,100,131,155,199,278,431],attach:[11,20,27,58,72,74,88,142,199,223,290,300,349,353,379,381,383,384,392,393,395,396,398,406,409,410,411,414,431],attack:[41,99],attempt:[5,26,36,41,44,45,47,49,55,58,59,60,96,97,98,100,155,191,203,274,275,286,288,296,300,314,321,328,349,361,365,376,403,410,411,420,421,423,424,426,427,428,429,430,440],attend:11,attende:[88,447],attendeeemail:27,attendeenam:27,attendeestatu:27,attent:[96,266,448],attract:443,attrib:349,attribut:[5,22,35,44,88,161,208,209,210,211,212,213,214,215,216,217,219,220,221,222,277,349,374],auction:156,audio:442,audit:[99,410,419],auditlog:[142,147,199,349],aug:[373,389],augment:[41,273,442],australia:27,auth:[6,18,41,66,82,83,84,86,87,97,98,99,107,108,130,168,195,205,230,231,267,273,288,290,309,349,374,376,377,383,384,396,431,445],auth_:[41,273],auth_krb_pt:[97,349],auth_mech:[349,401],auth_newst:97,auth_pt:[149,164,200],auth_setid:97,auth_stat:61,auth_unix:[97,349],auth_xxx:97,authent:[3,4,6,7,36,53,61,63,66,68,70,76,82,83,84,86,87,88,89,91,92,97,98,100,105,112,117,120,125,129,140,156,158,160,173,192,200,219,226,231,243,251,252,253,254,255,256,271,273,275,284,288,292,300,309,312,314,326,336,337,349,353,365,377,379,381,391,392,393,395,398,406,414,420,421,422,423,424,425,426,427,428,429,430,431,435,437,443,446,447],authenticata:192,authid:374,authnam:[288,377,420,421,422,423,424,426,427,428,429,430],author:[3,4,6,33,52,80,81,88,97,99,130,154,156,160,228,267,274,286,292,295,300,344,349,352,365,376,399,401,414,420,421,423,424,426,428,429,430,431,435,446,447],authorit:[11,40,286,288,290,359],authstat:46,authz:374,authzid:374,auto:[88,98,107,108,132,343],autoconf:[12,49,97,99,100,162,266],autocr:[49,51,172,349,441,447],autocreate_:160,autocreate_acl:[219,220,221,222,349],autocreate_inbox_fold:[19,160,219,220,221,222,349],autocreate_post:[19,160,297,349],autocreate_quota:[19,160,171,262,297,349],autocreate_quota_messag:[19,160,171,297,349],autocreate_siev:174,autocreate_sieve_compiled_script:[160,349],autocreate_sieve_compiledscript:[19,349],autocreate_sieve_fold:[19,160,349],autocreate_sieve_script:[19,160,349],autocreate_sieve_script_compil:[19,160,349],autocreate_subscribe_fold:[19,160,349],autocreate_subscribe_sharedfold:[19,160,349],autocreate_subscribe_sharedfolders_al:[19,160,349],autocreate_us:[19,160,349],autocreateinboxfold:[19,160,349],autocreatequota:[97,160,262,349],autocreatequotamsg:349,autoexpung:349,autof:339,autolearn:27,autologout:349,autom:[11,28,98,309,402,447],automak:[12,49,80,100,140,266],automat:[6,9,11,13,20,24,30,36,41,44,50,68,75,80,87,88,89,92,93,95,97,98,99,105,136,160,178,185,186,187,188,266,267,274,275,276,280,287,288,292,298,300,311,313,328,340,342,343,348,349,355,357,373,374,378,431,447],automount:339,autonom:330,autoreconf:[48,49,51,72,164,199,227],autorepeat:412,autorepli:300,autorespond:343,autoselect:392,autosiev:441,autosievefold:[160,349],autosubscribe_all_sharedfold:[160,349],autosubscribeinboxfold:[160,349],autosubscribesharedfold:[160,349],autotool:266,autovivif:275,auxprop:[87,267,349],avail:[3,4,5,7,15,19,24,25,35,36,41,49,52,56,59,72,74,80,81,87,88,89,91,92,96,97,99,109,147,160,178,180,181,182,183,184,185,186,187,188,189,223,226,243,272,273,274,275,285,286,288,290,304,308,311,313,314,315,330,337,348,349,355,361,365,367,369,374,403,410,411,416,417,422,431,442,445,447],available_selection_modes_on_backend:9,available_selection_modes_on_frontend:9,availmech:68,avatar:[251,252,253,254,255,256],avenu:[11,81],averag:[348,410],avoid:[26,33,44,46,47,55,58,59,74,75,97,99,100,107,108,109,138,141,145,153,161,173,262,267,314,337,349,369,406,411],awai:[80,97,98,339,342,374],await:[23,26],awaken:226,awar:[3,33,36,40,41,267,277],awesom:98,awri:97,ayland:140,b8b3:66,babysit:348,bacchella:[164,203],back:[7,11,14,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,34,35,36,37,38,39,41,44,45,47,53,55,58,59,61,64,72,74,96,147,152,157,192,266,270,275,278,280,284,286,293,297,300,304,309,313,314,338,339,349,356,408],backend1:[9,36,288],backend2:[9,36],backend3:9,backend:[3,4,6,7,11,12,41,49,61,62,80,87,88,90,98,99,100,102,107,114,116,120,132,133,137,138,140,141,146,147,150,151,154,162,164,167,168,174,175,176,178,180,181,182,183,184,185,186,187,188,194,195,197,198,212,213,214,215,216,217,219,220,221,222,225,227,230,233,238,241,242,245,247,257,262,266,273,287,289,297,309,313,314,315,324,336,339,344,349,356,359,361,365,378,401,411,445,447],backend_timeout:79,backend_vers:[198,225,247,257],background:[58,66,96,348,374,386,397,410,411],backlog:[74,386],backoff:[251,252,253,254,255,256,349],backport:[49,140,141,147,175,203,441],backscatt:[138,349],backslash:[106,304,349,374],backtrac:[328,432],backup1:[64,338],backup2:[64,338],backup:[1,4,11,24,25,41,51,58,73,97,99,160,178,180,181,182,183,184,185,186,187,188,192,193,194,200,235,236,238,239,240,241,242,269,278,280,286,287,309,314,330,338,349,353,354,355,357,363,389,403,406,435,441,446,447],backup_compact_maxs:[262,275,349,355],backup_compact_mins:[262,275,349,355],backup_compact_work_threshold:[275,349,355],backup_data_path:74,backup_db:[74,275,349,355,363,406],backup_db_path:[74,275,280,349,355,363,406],backup_filenam:74,backup_index_abort:74,backup_index_end:74,backup_index_start:74,backup_keep_previ:[349,355],backup_max_chunk_dur:74,backup_max_chunk_s:74,backup_min_chunk_dur:74,backup_min_chunk_s:74,backup_retent:349,backup_retention_dai:[74,275,349,355],backup_staging_path:[74,275,349],backup_sync:74,backup_sync_authnam:74,backup_sync_host:74,backup_sync_password:74,backup_sync_port:74,backup_sync_repeat_interv:74,backup_sync_shutdown_fil:74,backupd:[275,351,447],backuppartit:[74,275,349,353],backward:[15,19,72,74,141,152,235,236,238,239,240,241,242,266,274,284,297,349,384,396,431,442],bad:[44,45,46,57,58,68,85,97,117,141,156,161,163,164,193,223,227,228,339,359,442,443],badlogin:365,badurl:143,badus:365,bail:[74,122,161,251,253,254,255,256,412],balanc:[7,9,11,30,36,276,410],balden:97,band:[286,339],bandaid:158,bandwidth:[11,58,309,314],bank:[154,373,443],banner:[80,106,117,152,164,349],bar:[40,44,55,72,74,286,288,387,410,448],bare:[315,447],base64:[51,56,290,349],base:[5,11,13,15,18,36,40,47,48,49,51,56,58,61,62,65,66,68,72,74,75,76,80,86,87,90,91,93,97,100,102,104,106,110,117,125,131,132,136,152,162,192,229,235,236,238,239,240,241,242,251,252,253,254,255,256,266,267,268,275,276,277,278,280,286,295,297,300,304,313,317,326,333,345,349,355,360,378,382,385,386,390,397,404,417,431,440,442,444],basedir:51,bash:[80,168,195,227,266,267,310,312,445],bashrc:267,basi:[5,15,36,41,44,45,62,104,117,160,309,311,317,349,362,410,445],basic:[40,44,45,47,48,49,51,52,56,58,66,71,75,93,94,154,178,179,180,181,182,183,184,185,186,187,188,267,292,373,375,431,441,445,447],bastion01:417,batch:[44,66,309,349,417],batten:[147,175],batteri:[11,313],bba47b13e4839f49ab1c8047ee7b4fdb:27,bboard:440,bc_action_emit:75,bc_action_gener:75,bc_emit:75,bc_eval:75,bc_gener:75,bc_stringlist_gener:75,bc_test_gener:75,bcc:[58,304,349,417],bce8:358,bcederli:27,bcopi:97,bcyru:288,bdb:[99,122,156],bdystr:417,be1:30,be2:30,be3:30,beamnet:110,bear:[11,271,303],bearer:[205,251,252,253,254,255,256,349],beast:344,becam:440,becaus:[3,6,7,11,18,19,28,33,40,41,44,45,46,47,48,49,57,58,70,72,74,80,97,160,267,274,286,287,288,304,307,320,332,339,342,343,349,373,376,378,442,443],becom:[3,5,11,19,24,25,40,44,45,51,66,74,160,275,276,286,288,289,290,302,304,320,330,349,355,442],beef:97,been:[0,5,6,9,11,19,25,27,30,33,44,45,47,49,50,55,56,58,60,61,71,72,74,75,79,80,91,95,96,97,98,99,100,102,142,154,156,158,160,162,174,176,178,181,182,183,184,185,186,187,188,196,197,203,206,209,210,211,212,213,214,215,216,217,219,220,221,222,223,232,233,236,238,239,240,241,242,244,245,251,252,253,254,255,256,262,266,268,274,275,284,286,288,289,290,292,296,303,304,307,308,309,314,330,333,339,348,349,355,362,368,369,373,374,386,389,397,403,406,410,417,435,439,440,442],beer:11,befor:[7,41,44,45,47,48,49,53,55,56,58,59,72,74,77,78,80,97,99,100,108,109,141,146,160,163,164,174,223,236,238,239,240,241,242,266,267,275,286,288,290,292,309,318,333,340,341,348,349,353,359,369,374,378,379,381,383,384,386,393,394,395,396,397,398,402,406,409,410,411,431,445,448],begin:[44,58,68,75,82,83,84,86,87,97,266,288,290,314,348,349,379,403,406,410,439,440],behalf:[394,442],behav:[44,98,160,274,288,314,368],behavior:[25,55,69,88,97,269,277,281,288,330,348,349,447],behaviour:[31,41,49,80,152,161,191,201,219,220,221,222,235,236,238,239,240,241,242,251,252,253,254,255,256,261,262,267,275,282,288,349,355,369],behind:[9,30,61,75,102,152,175,226,251,252,253,254,255,256,276,288,309,339,349,431],beholden:74,being:[7,9,11,18,19,24,25,26,27,30,33,35,41,44,46,56,58,59,69,74,75,78,80,84,93,97,98,99,105,109,122,133,154,158,160,178,181,182,183,184,185,186,187,188,191,195,219,220,221,222,251,252,253,254,255,256,266,267,268,273,274,275,276,285,286,288,290,292,304,309,310,313,315,330,338,342,349,355,366,374,386,406,410,431,440,447],belief:[3,11],believ:[11,56,80,160,309,342],belong:[40,55,74,201,267,349,355,368,403],below:[18,27,41,45,47,55,57,58,68,74,84,87,88,93,96,156,251,252,253,254,255,256,266,267,273,287,289,292,299,304,307,309,310,312,334,348,349,355,356,363,373,382,397,406,410,431,433],benchmark:286,benefit:[15,80,214,215,216,217,219,220,221,222,278,279,314,336,349],benn:[439,443],berdmann:323,berkelei:[44,45,98,99,100,113,116,145,178,179,180,181,182,183,184,185,186,187,188,266,267,342,361],berkeley_caches:100,berkeley_hash:[100,114],berkeley_hash_nosync:[100,114],berkeley_locks_max:100,berkeley_txns_max:100,berklei:[99,100,342],bernard:[150,164,203],bernhard:323,bernstein:[189,443],best:[25,40,52,71,74,84,215,216,217,219,220,221,222,266,267,268,286,314,319,332,349,411,432,440],beta10:[87,123],beta11:123,beta1:[52,81,123,127,177,237,250,260,265,435,445],beta2:[123,128,177,237,250],beta3:[123,129,177,218,237,250],beta4:[123,130,177,218],beta5:[123,131,177],beta6:[123,132,177],beta7:[123,133],beta8:[123,134],beta9:[87,123],beta:[72,97,160,220,221,222,379],bethani:275,better:[9,11,18,26,30,44,59,74,96,97,98,99,100,102,114,117,121,129,130,133,136,139,145,150,160,163,171,175,196,232,244,262,266,275,286,288,348,349,411,439,441,442,444],betti:373,bettysu:369,between:[3,5,9,11,15,25,26,30,36,38,41,44,45,48,58,69,72,74,77,79,93,96,97,99,100,107,108,132,133,150,156,167,174,175,189,194,207,209,210,211,212,213,214,215,216,217,224,227,229,234,235,236,246,248,249,258,259,263,264,265,267,268,270,273,275,276,279,282,286,290,297,304,309,313,314,324,339,341,348,349,353,360,361,368,411,431,442,445,447],bewar:[44,45],beyond:[7,9,11,30,40,94,276,286,292,339,349,440],bidirect:[56,74],big:[74,138,139,158,191,199,217,219,220,221,222,223,275,288],bigbuff:296,bigdisk:314,bigger:[0,286],biggest:[9,30,276],bill:35,bin:[49,51,61,65,80,87,97,154,191,210,211,212,213,214,227,266,267,288,309,310,320,323,349,355,357,359,361,374,376,378,380,410,411,445],binari:[2,44,49,51,58,72,81,82,83,84,86,87,97,99,100,117,136,145,160,178,179,180,181,182,183,184,185,186,187,188,191,215,216,217,219,220,221,222,225,247,286,292,304,308,316,349,384,396,431,435,445,447],bind:[5,88,219,220,221,222,339,348,349,386,431],bindir:[178,179,180,181,182,183,184,185,186,187,188],binhex:80,binsymlink:[51,267],bird:314,birger:98,bison:[49,97,141,266],bit32:58,bit:[11,44,47,49,56,58,62,64,74,80,82,83,84,86,87,97,99,102,104,107,109,120,122,143,144,158,160,191,223,229,267,286,290,315,318,349,376,378,447],bitmask:[6,58,68],bitvector:80,bitwis:55,blah:349,blank:[44,72,348,349,350],bleed:[207,209,210,211,212,213,214,215,216,217,234,235,236,248,249,258,259,263,264,265],blob:[90,226,235,236,238,239,240,241,242,251,252,253,254,255,256,267,290,349],blobid:[251,252,253,254,255,256,349],block:[11,47,55,59,74,75,80,105,160,219,220,221,222,251,253,254,255,256,275,304,348,355,367,410,411,439],blockdiag:52,blocker:439,blow:285,blurdybloop:349,bmp:56,board:[13,19,349,438,442,447],bob:[91,297],bodi:[46,55,56,58,88,97,100,102,130,178,183,184,185,186,187,188,223,244,251,252,253,254,255,256,277,300,349,374,410,417,431],bodystructur:[27,58,122,277,349],bogu:[44,45,99,153,288],bold:52,bonu:109,book:[22,36,93,448],books_test:448,boost:96,boot:[11,82,83,84,86,87],bootstrap:431,born:[268,440],both:[3,5,6,7,11,18,19,25,36,40,41,44,56,58,61,62,68,74,80,81,88,93,96,99,100,102,108,122,175,251,252,253,254,255,256,266,267,268,273,274,275,276,286,288,292,293,309,313,314,326,327,348,349,355,374,402,403,406,410,411,416,431,434,439],bother:[48,72,130],bottleneck:286,bottom:55,bounc:[267,335,349],bound:[100,279,349],boundari:[27,58,66,75,97,99,154,160,194,219,220,221,222,349],boundary_limit:349,bovik:[41,97,160,273,286,298,372,373],box:[137,352,448],boyer:97,brace:[55,80,290],bracket:[71,348,349],brain:[58,97,136],braindead:44,branch:[48,53,71,72,153,203,207,208,209,210,211,212,213,214,215,216,217,234,235,236,248,249,258,259,263,264,265,266,379,410,432,435],brand:[44,51,74],brandon:[98,374],brashear:443,breakpoint:80,breyha:[140,146,147,162,163,164,175,202,203],brick:11,bridg:11,brief:[56,96,316,431],briefli:[7,289],brilliant:71,bring:[7,81,288,290],britnei:55,broad:49,broadest:74,broke:[97,141],broken:[59,74,116,121,138,145,152,174,201,223,225,236,238,239,240,241,242,244,247,262,410],bron:[44,74,154,439,443],brong:[46,47,59,74,160,371],brong_:74,brontool:44,brotli:[49,431],brought:275,brown:349,brownfox:349,brows:[72,433],browser:[88,89,231],bruce:97,brutish:59,bsd:[236,238,239,240,241,242],bsearch_mem:97,btree:116,bucket:[196,232,244],buczek:158,budget:11,buf:[47,55,56,58,80,154],buffer:[55,56,58,60,80,97,98,99,100,108,109,111,133,139,149,165,190,200,296],bufsz:56,bug:[0,11,44,50,52,53,71,74,80,97,98,99,100,104,105,106,107,108,109,110,113,114,117,120,121,122,127,128,132,133,134,137,138,139,140,141,142,143,144,145,146,147,153,154,155,156,157,158,160,209,210,211,212,213,214,215,216,217,219,220,221,222,266,267,274,275,309,333,339,411,435,439,445,447,449],bugfix:[80,98,99,100,152],buggi:[51,57,97,98,155,158,174],bugzilla:[11,160,162,176,178,181,182,183,184,185,186,187,188],bui:[11,286],build:[1,2,4,11,19,42,44,50,51,56,65,66,68,72,80,83,88,97,98,99,100,103,104,105,106,107,114,117,120,121,122,127,137,140,141,148,150,152,162,164,175,176,178,181,182,183,184,185,186,187,188,190,191,199,203,251,254,255,256,266,276,279,280,282,283,288,292,309,320,333,342,364,378,398,432,435,447],built:[13,19,22,44,45,47,49,52,56,70,72,74,80,81,97,99,174,189,206,284,288,292,318,349,445],builtin:[349,374],bulk:[44,109,356,417,433],bulletin:[13,19,349,442],bump:[44,74],bunch:[72,74,97,145,146,147,251,252,253,254,255,256,275],bundl:96,burden:88,burdensom:74,bushi:[267,281,349],busi:[11,26,74,88,110,125,126,196,232,244,313,327],busytim:447,busytime_query_loc:447,busytime_query_remot:447,button:[53,330,448],bwlimit:410,byacc:97,bye:[18,82,83,84,86,87,97,349],bylaw:[435,438,447],bymonthdai:349,bynari:99,bypass:[6,97,166,193,231,243,286,381,398],bytcodefil:408,bytecod:[1,19,73,74,100,178,185,186,187,188,251,252,253,254,255,256,266,300,349,407,408,447],bytecode_input_t:75,bytecode_t:75,bytecodefil:408,byteord:80,bytes:262,c01:[82,83,84,86,87],c38962096a47:358,c_include_path:318,cabinet:309,cabl:11,cacertdir:374,cacertdirectori:173,cacertfil:[173,374],cach:[4,11,25,41,57,59,74,78,97,98,99,100,102,106,108,109,131,153,157,160,163,178,183,184,185,186,187,188,192,226,231,236,238,239,240,241,242,251,252,253,254,255,256,267,278,280,282,283,288,299,307,310,311,313,349,356,370,387,399,400,431,435,446,447],cachdr:417,cache_crc:58,cache_envelop:47,cache_offset:58,cache_vers:58,cacheabl:192,cacheid:97,cacheitem_bas:47,cacheitem_buf:47,cacheitem_s:47,cachev:[387,417],cadir:[173,174],cafil:[68,173,374],cage:40,cal:419,calalarmd:[49,51,178,179,180,181,182,183,184,185,186,187,188,277],calconnect:88,calcul:[9,11,58,74,80,97,108,109,126,189,266,406,447],caldav:[1,4,13,22,23,70,73,87,93,163,169,175,176,178,179,180,181,182,183,184,185,186,187,188,189,209,210,211,212,213,214,215,216,217,219,220,221,222,233,245,262,265,286,349,379,419,431,435,441,446,447],caldav_accept_invalid_rrul:[251,252,253,254,255,256,349],caldav_allowattach:349,caldav_allowcalendaradmin:[208,349],caldav_allowschedul:349,caldav_create_attach:[88,349],caldav_create_default:[88,349],caldav_create_sch:[88,349],caldav_delete_sch:447,caldav_historical_ag:349,caldav_maxdatetim:[126,349],caldav_mindatetim:[126,349],caldav_post:447,caldav_put:447,caldav_realm:349,caldavtalk:51,caldavtest:[70,131,132],caldavzap:133,calendar:[6,11,22,23,27,36,40,49,66,89,90,92,93,125,127,131,132,134,169,198,204,208,217,219,220,221,222,223,225,226,243,244,245,247,251,252,253,254,255,256,262,267,277,349,431,435,437,441,447],calendar_component_set:349,calendar_default_displaynam:349,calendar_minimum_alarm_interv:349,calendar_user_address_set:349,calendarev:[223,262,266],calendarnam:27,calendarprefix:[22,349],calendarserv:[70,88,349],call:[3,11,38,44,45,46,47,48,55,56,59,60,68,72,74,79,80,82,83,84,86,87,91,97,98,99,141,155,156,160,174,190,199,228,262,266,267,274,275,278,286,292,296,313,314,330,340,349,365,410,439,445],callahan:98,callback:[44,45,60,68,79,97,296,420,421,423,424,426,428,429,430],callback_cap:68,callback_noliter:68,calle:44,caller:[44,58],callout:349,calscal:76,cam:[100,141],cambridg:[61,100],came:[56,74],campu:442,can:[0,3,5,6,7,9,10,11,12,18,24,26,28,33,35,36,39,40,41,44,45,47,48,49,51,52,53,55,56,57,58,59,61,62,65,66,68,69,70,71,72,74,75,77,79,80,87,88,89,91,92,93,95,96,97,98,99,100,102,104,108,109,120,125,129,139,145,147,152,161,163,164,174,178,179,180,181,182,183,184,185,186,187,188,189,190,192,193,198,201,205,206,208,209,210,211,212,213,214,215,216,217,219,220,221,222,225,233,235,236,238,239,240,241,242,245,246,247,251,252,253,254,255,256,257,262,266,267,271,272,273,274,275,276,277,278,282,283,286,287,288,289,290,292,298,299,300,302,304,305,306,307,308,309,311,312,313,314,315,317,318,319,320,321,323,324,326,328,330,331,332,335,337,338,339,341,344,348,349,354,355,356,359,363,365,368,371,373,374,376,386,387,389,393,394,397,400,403,404,406,410,411,416,419,420,421,422,423,424,426,427,428,429,430,431,432,433,435,442,445,447,448],cancel:[97,223,228,290,292,349,447],canist:11,cannot:[7,27,40,41,44,49,52,80,84,88,97,99,196,203,232,244,251,252,253,254,255,256,267,272,281,286,287,343,349,385,386,403,432],canon:[11,47,349,445,447],canonic:[6,41,56,97,99,100,273,349],canonif:[3,5,19,49],canonifi:[5,205,349],capa:349,capability_str:68,capabl:[11,18,41,49,52,68,82,83,84,86,87,97,105,106,107,108,117,141,155,160,203,262,266,275,286,309,349,406,420,421,423,424,426,428,429,430,431],capac:[4,7,9,276,286,313,314,447],capath:[68,174,374],capit:55,capo:[150,176],captur:[36,80,267],carbon:431,card:419,carddav:[4,13,22,70,93,124,162,178,179,180,181,182,183,184,185,186,187,188,209,210,211,212,213,214,215,216,217,219,220,221,222,266,286,349,419,431,435,441,446,447],carddav_allowaddmemb:349,carddav_allowaddressbookadmin:[208,349],carddav_realm:349,carddav_repair_vcard:349,carddavtalk:51,care:[40,44,51,55,74,97,100,275,276,286,288,349,359],career:339,carefulli:[7,11,56,275,339],caringo:[178,180,181,182,183,184,185,186,187,188,349],caringo_:[178,180,181,182,183,184,185,186,187,188],caringo_hostnam:349,caringo_port:349,carlo:[162,173,229],carnegi:[81,160,268,435,440,442,443,444],carsten:[98,160],carter:[100,102,104,105,106,109,122,139,141,154],cascad:[91,97],cass:51,cassandan:[48,50,70,72,197,225,233,245,246,247,267,275,333,441,447],castagnoli:227,castorsdk:349,cat:[267,445,448],categori:[56,189,286,431],caten:[82,83,84,86,87,102,117,143,349,431],caught:145,caus:[6,11,30,33,41,44,49,58,59,80,97,98,100,102,109,122,138,153,156,160,164,196,246,251,252,253,254,255,256,266,267,273,274,275,280,286,288,290,292,297,308,309,321,322,324,332,335,342,348,349,359,403,410,411,419,420,421,423,424,426,428,429,430,445,448],caution:[51,307,349,427],cave:140,cb44:27,cdt:389,cell:[11,349],center:11,cento:[2,12,81,85,447],centr:314,central:[3,36,56,442],centric:[22,314],centuri:[268,440],ceph:11,cephf:11,cert:[49,98,109,223,267,445],cert_fil:68,certain:[5,11,49,56,58,59,60,80,97,164,196,203,231,232,243,244,271,275,296,332,339,344,348,349,420,421,423,424,426,428,429,430,448],certainli:[44,48,160],certif:[4,5,28,49,68,82,83,84,86,87,105,160,173,196,216,217,219,220,221,222,349,445,447],cetera:339,cflag:[49,51],cgi:[93,210,211,212,213,214,349],chain:[87,160,161,267,275,314,349],challeng:[11,24,80,97,349,420,421,423,424,426,428,429,430,431],chan1:309,chan2:309,chan3:309,chanc:[9,24,30,58,98,276,288,308,330,349],chang:[6,7,11,18,19,27,33,36,40,44,45,46,47,48,50,51,52,53,56,57,58,61,64,68,69,70,72,74,75,76,79,80,82,83,84,86,87,88,89,90,91,92,93,96,97,98,99,100,102,103,104,105,106,107,108,109,110,111,114,116,117,118,119,120,121,122,124,125,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,147,148,152,153,154,155,156,157,158,207,234,248,258,263,265,267,273,276,277,281,286,287,300,301,308,309,313,314,328,342,347,349,352,355,356,357,359,369,372,374,376,380,400,402,403,404,405,410,411,416,431,438,445,447,448],changeabl:18,changes_epoch:[235,236,238,239,240,241,242],channel1:309,channel:[3,11,65,74,86,152,160,219,220,221,222,236,238,239,240,241,242,275,286,301,349,410,411,443],chapter:[7,8,10,276,304,311],charact:[1,3,18,33,41,44,49,54,55,62,69,74,97,99,106,109,120,121,138,142,156,160,163,190,267,279,282,290,300,309,312,315,332,348,349,350,365,374,376,406,410,416,447],characterist:7,chardet:226,charg:[41,270,299],charset:[27,80,97,136,146,157,219,221,222,251,252,253,254,255,256,321,417],charset_compilepat:56,charset_convert:56,charset_decode_mimebodi:56,charset_decode_mimehead:56,charset_extractfil:56,charset_freepat:56,charset_index:56,charset_lookupnam:56,charset_max_transl:56,charset_searchfil:56,charset_searchstr:56,charset_unknown_charset:56,chartables_long_transl:56,chaskiel:443,chassi:[11,309],chat:[267,447],chatti:349,chattr:313,chattrsync:313,chdir:[51,266],cheap:[11,28,46,74,286,313],cheaper:[11,15,278,313,349],cheapli:74,check:[9,11,18,24,25,30,44,45,47,48,51,53,58,61,64,70,71,72,74,76,80,87,88,90,95,96,97,98,100,112,115,121,122,131,136,140,142,143,146,147,166,173,174,178,180,181,182,183,184,185,186,187,188,193,203,219,220,221,222,223,227,235,236,238,239,240,241,242,243,251,252,253,254,255,256,261,262,266,268,276,286,288,290,292,294,300,309,320,326,340,349,354,355,357,365,373,381,387,392,398,402,403,404,411,431,435,445,446,447,448],checkapop:337,checkbox:72,checkdeliv:97,checklist:7,checkout:[51,72],checkpass:365,checkperiod:326,checkpoint:[44,45,139,267,275,348,349,355,357,434],checksum:[58,74,136,275,355],cherri:[48,72],child:[88,89,92,96,137,235,236,238,239,240,241,242,292,348,349,374,386,431,447],children:[44,82,83,84,86,87,98,158,349,368,386,410],chin:100,china:100,chines:66,chk_cyru:[99,100,351,447],chkconfig:[82,83,84,86],chmod:[18,267,445],choeger:98,choic:[9,11,30,44,45,87,88,98,238,241,242,276,280,286,339,410,445],choke:[175,225,229,247],chomp:[58,378],choos:[5,7,11,33,74,88,175,278,280,282,286,297,320,330,349,404,448],chose:[244,318,349],chosen:[11,196,232,244,343,349,410,420,421,422,423,424,426,428,429,430],chown:[267,312,340,445],chri:[97,172,321,443],christian:[100,150,225,247],christoph:191,chroot:[63,87],chunk:[11,74,90,131,133,275,349,355,363],chunk_id:74,churn:137,cid:[206,277,349,417],cipher:[82,83,84,86,87,99,146,160,349],circuit:[44,100,126],circumst:[11,31,33,80,282,330,448],citadel:88,citizen:343,cjk:[65,66,189],claim:[5,97,315,349,447],clamav:[49,164,178,179,180,181,182,183,184,185,186,187,188,190,206,320,373],clarifi:[41,97,273,304,330],clash:[74,96,203,403],classifi:439,cld2:[49,227],clean:[11,25,28,41,44,45,48,51,52,55,57,59,72,74,76,80,96,98,99,100,140,160,173,195,200,223,266,284,349,357,368,397,410,411,447],clean_compon:447,cleanli:[44,97,98,164,192,202,251,252,253,254,255,256,290],cleans:368,cleanup:[44,47,55,58,74,80,96,97,99,140,141,145,146,160,168,178,180,181,182,183,184,185,186,187,188,195,226,230,348,349,357,386],clear:[5,27,41,55,68,71,80,286,288,349,356,372,374,403,417,440],clearli:[11,55],clearo:81,cleartext:[93,349],cli:266,cli_fat:55,click:[72,448],client:[3,4,7,8,10,11,12,22,25,33,36,41,47,56,58,59,61,68,69,74,87,88,89,91,92,93,97,98,100,102,104,105,107,108,109,118,119,130,133,134,139,151,154,156,158,160,163,168,175,189,195,200,204,208,209,210,211,212,213,214,215,216,217,219,220,221,222,230,233,235,236,238,239,240,241,242,245,266,267,268,271,274,275,287,288,290,300,303,304,307,309,311,314,326,340,341,348,349,353,359,374,379,380,381,383,384,386,392,393,395,396,398,406,409,411,414,420,421,423,424,426,428,429,430,431,442,445,447],client_bind:349,client_bind_nam:349,client_id:200,client_timeout:[100,349],clientaddress:[227,277,349],clientid:[277,349],clientip:27,clientport:27,clock:[79,349],clone:[53,65,71,76,81,178,181,182,183,184,185,186,187,188],close:[7,8,9,25,30,41,44,45,55,57,58,62,68,74,80,82,83,84,86,87,88,97,99,100,102,146,154,276,279,286,290,312,330,339,340,348,349,374,386,420,421,423,424,426,428,429,430,447,448],closedir:110,closer:[80,288,349],closest:[41,272,339,349],cluster:[11,36,64,87,156,288,339,344,349,359,392],clusterlvm:11,clutter:97,cmd:[15,65,74,87,139,267,275,288,289,292,300,302,304,309,348,349,353,355,357,359,378,379,380,381,383,384,392,395,396,397,398,409,410,411,413,414,415],cmd_renam:142,cmdloop:74,cmu:[27,68,81,97,98,99,102,104,117,128,141,251,252,253,254,255,256,268,271,274,277,286,288,292,304,326,349,350,358,368,374,410,414,440,444],cmuloc:[48,97],cname:[97,286],code:[0,1,44,46,49,53,58,59,68,72,74,75,80,81,88,97,98,99,100,102,103,105,106,107,110,118,119,136,139,142,160,162,175,196,215,216,217,219,220,221,222,267,277,288,292,297,300,319,327,349,374,431,435,439,441,443,447,448],codebas:[44,53],codepath:44,coexist:275,coher:[11,207,209,210,211,212,213,214,215,216,217,234,235,236,248,249,258,259,263,264,265],coi:33,cold:278,collabor:[70,160],collaps:56,collat:[44,174,284,349,397],colleagu:160,collect:[6,11,23,71,88,89,92,93,97,131,286,339,349,352,406,431,435,437,447],collectnew:97,collis:359,colon:[88,349,352,360],coloo:[113,139,146,158,160],color:431,colour:52,columbia:102,column:[18,80,355],com:[3,5,28,33,40,41,53,65,72,74,87,97,98,99,100,110,117,136,140,141,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,238,239,240,241,242,243,244,245,246,247,251,252,253,254,255,256,257,261,262,267,273,275,284,288,300,307,349,358,368,373,387,410,427,448],com_err:[97,100,206],combat:344,combin:[5,11,14,41,56,58,71,74,80,231,243,266,269,270,274,275,290,300,309,339,349,356,373,374,403,411,447,448],combinatori:349,come:[11,41,49,52,55,65,74,80,82,83,84,86,87,92,266,267,268,273,274,290,311,313,314,330,349,383,384,396,442],comerr:266,comfort:[11,266],comma:[6,9,30,349,352,366,391,410],command:[11,18,27,33,36,40,41,46,47,48,52,55,56,58,59,61,65,66,68,72,75,80,82,83,84,86,87,93,97,98,99,100,104,106,109,121,137,143,154,156,158,160,161,164,198,200,208,209,210,211,212,213,214,215,216,217,219,220,221,222,225,233,245,247,251,252,253,254,255,256,262,266,267,271,274,275,278,285,286,288,292,297,298,300,304,305,307,309,310,311,313,314,326,328,329,330,333,342,343,348,349,353,355,356,359,360,361,363,365,366,368,369,371,372,375,377,379,381,383,384,390,391,392,393,395,396,398,400,403,404,406,409,410,412,414,417,419,420,421,422,423,424,425,426,427,428,429,430,431,435,436,445,447,448],commandcrew:33,commandlist_t:75,commandmintim:349,commenc:348,comment:[55,56,71,87,326,338,359,374,431],commerci:319,commit:[41,44,45,46,48,50,52,55,71,72,74,97,98,137,200,286,352,357,439],committ:439,commod:11,common:[5,7,8,11,12,15,33,36,44,45,49,60,74,87,97,267,278,287,296,314,324,331,374,431,435,436,447],commonli:[3,8,11,36,41,87,273,317,342,353,357,359,379,380,381,383,384,392,395,396,398,409,413,414],commun:[11,12,36,40,41,49,70,97,132,268,277,286,288,293,300,309,314,376,411,435,439,440,442,444,447],comp:[292,349],comp_flag:[6,266],comp_pat:56,comp_typ:6,compact:[44,49,56,65,71,262,275,330,349,355,410,447],compar:[5,10,11,36,72,76,80,99,106,163,233,245,286,288,330,344,349,387,410,419],comparis:109,comparison:[41,76,80,99,161],compat:[15,19,41,44,66,90,97,99,100,107,119,121,141,152,160,161,178,180,181,182,183,184,185,186,187,188,194,202,214,215,216,217,219,220,221,222,227,235,236,238,239,240,241,242,266,273,274,284,297,300,320,349,364,374,376,384,396,403,431,442],compel:6,compens:74,compil:[6,19,41,42,48,51,68,70,71,72,74,75,80,88,90,93,95,97,98,99,100,106,110,136,139,141,145,146,154,157,158,160,161,172,175,178,180,181,182,183,184,185,186,187,188,193,196,199,201,203,246,251,252,253,254,255,256,266,267,269,273,275,280,300,315,337,342,349,364,385,386,407,432,435,445,446,447],complain:[74,80,97,178,180,181,182,183,184,185,186,187,188,219,220,221,222,318,403],complaint:98,complet:[3,11,12,18,41,47,49,58,61,64,68,72,74,75,76,82,83,84,85,86,87,91,97,100,131,143,147,174,191,267,274,275,286,290,301,302,303,309,311,313,314,348,349,355,386,435,440,441,443,446,447],complex:[11,59,65,74,80,97,160,349],compli:[24,274],complianc:[25,70,274,441],compliant:[14,27,97,99,100,125,270,277,335,349,377,381,398,440,444],complic:[55,56,74,75,80,275,289],compon:[3,4,7,11,13,36,41,51,53,88,126,132,192,225,247,275,290,292,293,315,319,320,349,431,435,443,446,447],compos:[3,5,9,66,276],comprehens:445,compress:[49,74,82,83,84,86,87,109,110,146,160,174,267,275,349,355,365,406,411,420,421,423,424,426,428,429,430,431],compris:[3,439],compromis:[286,288,349],comput:[3,4,10,11,30,53,81,276,286,309,313,442,447],computation:75,con:289,concaten:41,conced:99,concept:[35,47,55,267,269,276,285,288,300,435,437,447],concern:[9,11,30,276,309,313,334,440],conclud:[303,349],concurr:[13,41,47,98,267,286,442],cond:55,condit:[9,19,55,58,59,75,80,81,97,98,100,147,154,155,161,166,193,267,276,313,349,431],condition:97,condstor:[47,58,82,83,84,86,87,105,108,109,117,154,326,431],conf:[2,6,9,15,18,19,22,24,25,28,30,33,40,41,44,45,49,52,58,65,66,72,74,87,88,89,90,91,92,93,95,97,98,99,100,102,104,106,107,110,121,147,158,174,175,178,179,180,181,182,183,184,185,186,187,188,189,200,201,203,205,206,216,217,219,220,221,222,223,226,235,236,238,239,240,241,242,243,251,252,253,254,255,256,261,262,266,267,270,272,274,275,276,277,278,279,280,281,282,283,284,286,287,288,289,292,294,295,297,300,302,303,304,308,309,310,311,312,316,323,326,330,332,335,337,338,339,340,341,347,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,409,410,411,412,413,414,415,416,417,445,447],confer:41,confid:11,confidenti:340,config:[18,33,49,52,74,80,97,98,137,141,156,157,158,164,192,288,289,292,314,321,348,349,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,402,403,404,405,406,407,409,410,411,412,413,414,415,416,417,419,435,441,446,447],config_annotation_db:[44,45],config_dir:97,config_fil:18,config_getstr:[44,45],config_virtdomain:80,configdirectori:[6,40,41,59,74,88,156,219,220,221,222,266,275,280,284,288,295,297,309,312,315,328,338,340,349,350,353,356,357,358,359,360,366,370,371,377,379,381,387,388,390,392,393,395,398,405,447],configfil:52,configur:[1,2,3,5,6,7,9,10,11,12,15,19,28,30,33,35,48,49,52,58,66,69,72,74,82,83,84,86,87,97,98,99,100,102,107,108,110,140,149,152,158,163,164,179,180,181,191,192,193,199,223,226,229,243,244,246,267,269,271,272,273,274,275,276,278,281,282,283,286,289,296,297,303,304,308,310,313,314,315,318,330,337,343,348,349,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,376,377,378,379,380,381,382,383,384,387,388,389,390,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,409,410,411,412,413,414,415,416,417,431,432,435,436,437,440,441,446,447,448],configurationdir:356,confirm:[26,50,72,288,439],conflat:74,conflict:[107,152,286,287,288,290,320,359,374],conflocal_mail:267,conform:[52,97,132,277],confus:[33,55,64,80,97,100,160,233,245,267,349],conjunct:[88,274],connect:[3,6,7,11,13,18,36,41,47,55,68,74,81,82,83,84,86,87,93,97,98,99,100,105,122,129,130,138,147,152,160,161,163,164,168,174,192,195,204,205,223,227,251,252,253,254,255,256,267,286,287,288,290,300,308,309,312,315,340,348,349,353,369,374,377,378,379,381,383,384,386,392,393,394,395,396,398,406,409,411,413,414,420,421,422,423,424,426,428,429,430,431,432,442,445,447,448],connor:[195,229],conrad:443,consecut:349,consensu:[431,439],consequ:[7,11,406,410,448],consequenti:81,conserv:[41,238,241,242,275,299],consid:[3,7,9,11,12,30,33,40,41,44,45,49,56,59,80,87,93,96,97,160,207,209,210,211,212,213,214,215,216,217,234,235,236,248,249,251,252,253,254,255,256,258,259,263,264,265,266,267,274,276,285,286,288,309,311,314,321,349,368,378,386,410,411,431,447],consider:[4,5,28,56,71,96,274,301,368,435,446,447],consist:[3,7,11,19,36,40,41,42,44,45,46,47,56,57,58,74,96,99,100,108,122,136,163,169,173,275,286,288,290,292,297,310,313,348,349,350,352,354,355,359,365,447],consolid:88,consort:51,constant:[44,47,97,139],constantli:[97,339],constitut:[26,84,406,445],constrain:[11,372],constraint:344,construct:[56,100,292,393],consult:[11,41,87,91,94,96,97,174,251,254,255,256,266,267,278,279,282,286,292,294,365,401,410],consum:[11,109,309,313,397],consumpt:7,contact:[12,33,47,66,71,81,89,90,93,97,152,189,217,219,220,221,222,223,228,251,252,253,254,255,256,266,285,286,292,339,349,435,437,441,442,447],contain:[3,6,11,14,18,19,24,28,33,40,41,44,47,48,50,55,56,58,62,72,74,75,76,80,81,88,91,93,97,100,122,142,143,164,166,175,178,179,180,181,182,183,184,185,186,187,188,189,191,193,199,206,210,211,212,213,214,215,216,217,219,220,221,222,235,236,238,239,240,241,242,262,266,267,273,275,277,278,283,286,290,313,314,328,333,340,348,349,350,352,353,355,359,360,363,365,373,374,376,381,387,398,403,406,410,420,421,423,424,426,428,429,430],contemporari:48,content:[1,6,11,26,27,36,41,44,57,58,61,64,66,74,88,91,93,97,122,131,132,160,251,252,253,254,255,256,266,267,271,272,274,277,278,286,288,290,304,306,311,313,326,340,349,350,356,358,359,363,370,406,431,447,448],content_lin:58,context:[36,44,235,236,238,239,240,241,242,318,330,431,448],continu:[3,7,11,19,26,33,36,40,44,45,47,56,66,80,82,83,84,86,87,97,99,106,160,266,286,288,309,330,341,344,348,349,355,410,444],contract:[11,81],contrari:[3,11,268],contrast:97,contraven:349,contrib:[79,97,174],contribut:[0,1,52,53,70,98,117,160,161,174,203,267,349,435,439,443,447],contributor:[0,434,438,441,447],control:[3,5,7,9,11,13,33,36,52,53,55,80,93,97,98,100,102,104,106,120,131,160,192,196,226,232,244,251,252,253,254,255,256,267,269,271,276,277,278,281,288,308,309,313,314,326,331,341,349,368,374,386,410,431,435,437,441,442,445,447],conundrum:11,conveni:[44,51,80,160,274,317,365,406,411],convent:[1,33,41,55,69,97,178,179,180,181,182,183,184,185,186,187,188,275,300,416,435,447],converg:[4,30,276,447],convers:[4,44,56,57,66,74,90,97,99,178,179,180,181,182,183,184,185,186,187,188,190,203,205,214,215,216,217,219,220,221,222,235,236,238,239,240,241,242,251,252,253,254,255,256,266,349,356,357,368,441,447],conversations_counted_flag:349,conversations_db:[66,90,349],conversations_expire_aft:349,conversations_expire_dai:[349,368],conversations_keep_exist:349,conversations_max_guidexist:349,conversations_max_guidinfold:349,conversations_max_guidrecord:349,conversations_max_thread:349,conversationsdb:[57,206],convert:[6,44,51,56,58,59,62,74,88,97,99,100,136,138,199,251,252,253,254,255,256,266,267,269,274,304,349,357,361,362,416,431,447],convexist:[277,349],convunseen:[277,349],cool:[51,91,286],cooper:373,coordin:11,cope:33,copi:[3,5,11,24,38,39,41,44,46,47,48,49,51,53,56,58,61,65,72,74,76,88,97,102,108,119,121,122,133,139,223,267,268,272,274,275,287,289,290,299,300,314,317,330,338,349,357,359,374,375,384,396,410,411,420,424,425,426,428,429,431,435,445,446,447,448],copyback:411,copydb:410,copyright:[80,81],cor:349,core:[51,66,90,96,98,136,217,219,220,221,222,315,349,431,432,438,442,447],core_uses_pid:328,corneliu:[112,140],correct:[3,7,18,40,41,44,45,55,61,72,74,80,93,97,98,99,100,108,138,139,146,160,164,202,205,206,266,267,286,287,292,313,321,349,387,403,404,419,420,421,423,424,426,428,429,430],correctli:[47,48,55,56,72,74,97,98,99,100,109,138,150,152,161,162,163,164,167,174,189,190,191,192,194,198,199,202,203,205,206,223,225,226,227,228,235,236,238,239,240,241,242,245,247,251,254,255,256,266,267,286,288,302,349,445],correspond:[6,10,15,25,55,56,58,72,74,76,97,160,223,228,274,275,278,279,282,292,326,349,350,356,368,370,374,375,393,406],corrupt:[6,11,41,44,45,47,58,88,97,109,137,139,145,152,154,155,171,205,275,288,307,313,324,338,339,349,355,403,419,447],cost:[4,15,286,309,313,349,447],costli:[28,75],could:[3,5,7,10,11,15,18,19,28,33,36,38,41,49,51,55,58,59,74,75,77,84,97,99,100,108,128,140,155,156,160,166,174,193,196,200,231,232,243,244,251,252,253,254,255,256,271,273,274,275,286,288,290,309,313,330,349,411,417,432],couldn:[68,166,193,339],count:[6,9,11,30,35,41,47,58,109,147,160,164,199,212,213,214,215,216,217,219,220,221,222,227,274,276,290,299,306,315,330,339,349,352,356,397,447],counter:[4,27,59,277,349,447],countri:19,coupl:[11,27,44,49,98,277],courier:[178,180,181,182,183,184,185,186,187,188,268,349,440],cours:[3,9,11,30,275,276,343],courtesi:[104,105,106,107,110,121,122,136],cover:[44,71,81,94,139,296],coverag:[49,80],cpan:[49,51],cpu:[36,196,232,244,309,339,349],crack:74,craft:[74,200,339],craig:[104,117,439,443],cram:[5,41],crap:97,crash:[51,58,59,96,98,99,100,107,109,115,139,141,145,146,147,149,152,154,155,156,157,158,161,162,163,164,168,169,170,174,175,176,189,191,192,193,195,196,199,200,202,203,204,206,223,226,227,228,251,254,255,256,286,288,309,432],crashi:205,crawl:[39,74],crc32:[51,58,80,178,180,181,182,183,184,185,186,187,188,227,235,236,238,239,240,241,242],crc32_iovec:80,crc32_map:[58,80],crc32c:199,crc:[58,136,161,411],crc_iovec:80,creat:[3,5,6,7,9,10,11,19,22,24,30,33,36,40,44,45,46,48,51,55,57,58,59,61,66,71,72,74,78,80,88,89,90,91,92,97,98,99,109,110,122,127,137,152,153,156,160,161,163,166,192,193,217,219,220,221,222,235,236,238,239,240,241,242,251,252,253,254,255,256,262,266,274,275,276,282,283,286,287,288,289,292,297,298,300,306,310,311,312,313,314,327,329,340,344,349,353,355,356,357,359,365,373,374,378,379,381,386,389,390,391,392,393,395,398,403,406,410,435,445,446,447],createabl:286,createdir:267,createdmodseq:[6,213,214,215,216,217,219,220,221,222],createmailbox:[161,267,306],createonpost:[160,349],creation:[4,7,13,30,58,59,108,160,172,267,276,286,292,349,404,410,435,445,446,447],creationd:6,crec:47,credenti:[5,130,275,288,309,314,349,406,420,421,423,424,426,428,429,430],crept:157,cridland:109,crispin:97,crit:[41,339],criteria:[11,15,226,278,326,373],critic:[28,41,44,72,98,309,339],crlf:[41,58,142,290,323],cron:[15,41,74,95,275,309,314,348,373],crontab:[95,373,410],cross:[42,74,96,106,130,178,180,181,182,183,184,185,186,187,188,194,286,349,411,441,447],crossdomain:[178,180,181,182,183,184,185,186,187,188,349],crossdomains_onlyoth:[178,180,181,182,183,184,185,186,187,188,349],crow:286,cruft:136,crypt:18,cs0:349,cs1:349,cs2:349,cs3:349,cs4:349,cs5:349,cs6:349,cs7:349,csync:[74,96,267,275,294,309,349,353,406,413,445],ctag:431,ctl_:96,ctl_backup:[193,199,349,351,447],ctl_backups_lock_data_fnam:355,ctl_backups_lock_index_fnam:355,ctl_conversationsdb:[44,66,90,214,215,216,217,219,220,221,222,266,349,351,447],ctl_cyrusdb:[45,99,136,147,175,224,243,246,251,252,253,254,255,256,266,267,275,288,348,349,351,355,447],ctl_deliv:[98,100,348,351,447],ctl_mboxlist:[36,44,77,98,99,100,107,117,122,142,155,169,174,251,254,255,256,262,280,287,288,304,309,338,349,351,447],ctl_zoneinfo:[88,133,228,349,351,447],ctrl:[312,365,448],cu_:80,cu_assert_equ:80,cu_run_all_test:80,culprit:11,cumbersom:11,cunit:[49,72,80,199,223,226,227],cunit_test:80,curl:[66,266,267],curli:80,current:[5,6,11,15,19,27,33,36,40,41,44,45,47,48,49,52,53,55,56,58,60,64,66,68,71,72,74,82,83,86,87,88,93,95,97,99,107,108,125,189,236,238,239,240,241,242,251,253,254,255,256,262,266,267,274,275,276,285,286,287,288,289,290,292,296,299,300,309,314,316,319,336,338,339,349,352,355,365,369,370,373,374,389,391,399,401,410,411,419,420,421,422,423,424,426,427,428,429,430,431,434,439,447,448],curv:[146,160,349],custom:[11,28,44,66,91,93,166,178,179,180,181,182,183,184,185,186,187,188,193,201,216,217,219,220,221,222,262,275,319,355,373,432],customer1:3,customis:373,cut:[11,440],cutoff:374,cve:[111,139,165,166,174,190,192,193,196,210,211,212,213,214,215,216,217,219,220,221,222,231,232,243,244],cvenam:[210,211,212,213,214],cvt_cyrusdb:[99,100,266,297,312,351,357,447],cvt_xlist_specialus:[266,351,447],cycl:[24,25,36,44,46,59,84,97,160,265,308,309,330,348,411,432],cyr_:96,cyr_backup:[351,406,447],cyr_buildinfo:[351,447],cyr_dbtool:[77,121,175,275,312,349,351,447],cyr_deni:[312,351,365,447],cyr_df:[109,351,447],cyr_expir:[15,24,25,44,58,100,102,104,107,110,122,142,152,157,158,160,195,205,236,238,239,240,241,242,262,267,292,304,314,330,348,349,351,447],cyr_info:[194,219,220,221,222,227,235,236,238,239,240,241,242,251,252,253,254,255,256,261,262,266,351,441,447],cyr_l:[251,252,253,254,255,256,266,351,447],cyr_qsort_r:228,cyr_synclog:[104,108,173,309,351,447],cyr_userseen:[351,447],cyr_virusscan:[49,95,164,216,217,219,220,221,222,333,349,351,447],cyradm:[18,22,28,40,41,49,68,88,97,98,99,100,114,140,156,174,198,206,226,267,288,300,304,305,306,307,310,314,325,326,347,349,351,368,391,447],cyradmin:97,cyradmn:305,cyrdeliv:334,cyrdump:[137,200,205,351,447],cyril:110,cyrsudb_db3:98,cyru:[0,2,3,4,5,9,10,11,13,14,15,19,22,26,27,28,31,33,34,35,38,39,40,42,44,45,46,47,53,54,68,69,71,73,74,80,82,83,84,85,86,87,88,89,90,91,92,93,95,265,269,270,271,273,274,276,278,279,280,281,282,283,284,293,297,298,299,301,304,307,309,310,311,312,315,316,317,318,319,320,324,326,327,328,330,331,332,335,336,339,340,341,342,346,349,351,353,354,355,356,357,359,361,362,363,364,365,366,367,368,369,370,373,374,377,378,379,380,381,383,384,386,387,388,390,392,394,395,396,397,398,401,403,404,406,409,410,411,413,414,416,417,419,427,432,433,437,446,447],cyrudb:100,cyrunit:80,cyrus24:51,cyrus25:51,cyrus2v:267,cyrus_conf:[267,445],cyrus_confdir:313,cyrus_db:74,cyrus_don:[44,45,55],cyrus_group:[206,349],cyrus_imap_murd:7,cyrus_init:[44,45,55],cyrus_path:349,cyrus_prefix:[98,158],cyrus_sendmail_auth_id:349,cyrus_syslog_prefix:349,cyrus_us:[206,349],cyrus_verbos:386,cyrus_vers:137,cyrusarch:279,cyrusdb:[1,6,43,55,74,88,90,98,99,100,107,114,199,215,216,217,219,220,221,222,297,349,361,365,447],cyrusdb_again:[44,45],cyrusdb_backend:44,cyrusdb_convert:44,cyrusdb_db3_nosync:98,cyrusdb_exist:[44,45],cyrusdb_fetchnext:44,cyrusdb_flat:[44,45],cyrusdb_ioerror:[44,45],cyrusdb_lock:[44,45],cyrusdb_lockopen:44,cyrusdb_mboxsort:[44,45],cyrusdb_nam:45,cyrusdb_nocompact:44,cyrusdb_notfound:[44,45],cyrusdb_ok:44,cyrusdb_quotalegaci:[44,107],cyrusdb_skiplist:[44,99],cyrusdb_sql:44,cyrusdb_twoskip:44,cyrushost:365,cyrusid:410,cyrusimap:[48,53,65,72,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,238,239,240,241,242,243,244,245,246,247,251,252,253,254,255,256,257,261,262,265,266,288,349,435],cyrusisgreat:40,cyruslib:[65,189,204],cyruslibs_dir:65,cyrusman:[160,447],cyrusmeta:[282,283],cyrusmurd:[290,344],cyrussiev:[315,447],cyrusv2:40,cyrusv2_mailer_arg:267,cyrusv2_mailer_flag:267,cyrusv2_mailer_qgrp:267,d5ec35c1414a:[82,83,84,86],d_1:88,da39a3ee5e6b4b0d3255bfef95601890afd80709:74,dacl_invit:76,dacl_repli:76,dacl_schedfb:76,daemon:[11,19,41,64,65,87,96,97,98,99,174,178,179,180,181,182,183,184,185,186,187,188,201,203,266,267,275,280,284,288,295,300,314,340,349,378,380,386,394,397,409,410,411,420,421,423,424,426,428,429,430,445],dai:[7,11,15,28,41,44,49,52,58,109,158,160,266,267,268,275,277,292,304,313,326,330,348,349,352,368,374,382,389,417,440],daili:[11,109,311,410,433],dam:374,damag:[41,61,81,309,431],damn:74,dan:443,danger:412,daniel:[195,229],dark:[268,440],darrow:98,darth:[314,340],dashboard:50,data:[3,4,6,7,15,25,30,31,36,41,47,49,51,55,58,60,62,66,68,81,88,90,93,97,106,109,131,133,139,142,155,160,161,169,176,178,180,181,182,183,184,185,186,187,188,192,196,215,216,217,219,220,221,222,232,244,267,274,275,277,278,280,282,285,286,288,296,307,309,310,311,312,313,314,331,336,337,338,339,340,344,349,355,356,359,360,363,365,375,379,381,388,393,395,398,403,431,435,446,447,448],data_sha1:74,databas:[1,4,5,7,11,12,13,33,36,41,44,45,57,65,77,87,88,90,96,97,98,99,100,106,109,121,122,136,147,156,158,171,175,176,178,179,180,181,182,183,184,185,186,187,188,214,215,216,217,219,220,221,222,246,262,267,269,273,274,275,283,285,292,304,310,312,314,315,317,331,338,348,349,355,356,357,358,359,360,361,363,365,366,368,399,400,403,406,410,415,419,435,442,445,446,447],datagram:[378,380],dataless:286,dataset:[286,309],datasourc:44,datastor:[44,314,354],datastructur:[60,296],datatyp:[109,158],datauuid:51,date:[27,41,58,60,79,80,81,88,97,137,154,178,185,186,187,188,223,227,243,262,267,275,276,286,288,290,300,314,344,349,352,373,374,382,387,389,411,431,440],datestamp:52,dav:[4,44,49,51,66,88,89,92,93,125,127,164,192,208,227,232,235,236,238,239,240,241,242,244,266,267,278,280,282,349,379,419,431,435,437,447],dav_lock_timeout:349,dav_realm:349,dav_reconstruct:[44,160,164,266,349,351,447],davdriveprefix:349,dave:[109,154,439],davfilenam:[277,349],davi:443,david:[98,100,102,104,105,106,109,122,139,141,154,246],davnotificationsprefix:349,davtalk:51,davuid:[277,349],daylight:[109,349],db3:[98,99,100,342],db4:[99,100,109,342],db_mail:18,db_mail_password:18,db_mail_us:18,db_passwd:18,db_recov:[100,338],db_user:18,dba:6,dbdir:99,dberror:[99,109],dbm:97,dbs:100,dc814658a4d676789578bff3de35b45914abd774:387,ddmmyyyi:352,deactiv:[9,30,276,286,427],dead:[98,348,349],deadlock:[44,45,97,98,262,332],deal:[55,56,74,87,97,98,99,288,290,337,339],deanna:350,debconf:266,debhelp:266,debian:[2,12,49,70,80,81,87,99,100,137,229,266,267,288,292,309,445,447],debug:[1,6,18,44,45,97,98,99,108,141,267,328,333,348,349,355,386,397,401,410,411,447],debug_command:[99,349,353,378,379,381,383,384,393,394,395,396,397,398,409],debug_log_sync_partition_choic:349,debug_writefail_guid:349,debugg:[74,99,333,353,378,379,381,383,384,393,394,395,396,397,398,406,409,411],decemb:440,decent:75,decid:[11,36,44,45,74,87,97,277,286,292],decim:[56,62,68,406],declar:[80,97,223,278,349,431],declarar:97,declin:447,decod:[56,97,349],decode_st:56,decompil:[300,408],decompos:56,decomposit:56,decoupl:205,decreas:[97,341],decrement:59,dedic:[7,275,309,353,443],dedupl:196,deem:11,deep:[275,349,355],deeper:349,deepli:66,def:267,defaultacl:[41,272,349],defaultdomain:[40,178,180,181,182,183,184,185,186,187,188,245,267,349],defaultpart:[278,282,349],defaultpartit:[9,28,30,41,65,267,276,278,279,282,283,349],defaultsearchti:[65,278,283,349],defaultserv:[9,30,109,276,349],defeat:99,defect:97,defer:287,defici:44,defin:[19,24,31,33,34,40,41,44,52,56,60,61,64,68,74,80,97,100,229,267,269,271,273,274,275,278,279,282,283,288,290,295,296,299,314,326,348,349,374,410,420,421,422,423,424,426,428,429,430,447],definit:[11,18,44,47,55,80,81,88,219,220,221,222,267,269,278,283,293,301,349,447],deflat:[49,82,83,84,86,87,411,431],deflatepend:[227,228],defn:267,degener:97,degrad:[97,324],degre:41,dekker:154,delai:[11,13,41,58,74,97,102,104,105,108,109,139,141,160,178,180,181,182,183,184,185,186,187,188,191,274,275,299,304,311,330,337,349,368,406,411,417,447],delaycompress:267,delayed_expung:152,deleg:271,delet:[8,11,13,25,27,36,41,44,45,48,57,58,59,72,74,88,89,97,98,99,103,104,105,108,109,121,122,134,138,139,140,141,142,152,153,154,157,160,161,178,180,181,182,183,184,185,186,187,188,189,191,194,205,216,217,219,220,221,222,235,236,238,239,240,241,242,266,267,268,269,272,274,275,286,287,288,298,299,300,301,314,315,326,344,349,357,359,365,368,372,373,374,382,386,387,400,403,404,406,417,422,427,445,447],delete_mod:[24,41,104,141,178,180,181,182,183,184,185,186,187,188,299,304,330,349,406],delete_unsubscrib:349,deleteacl:[274,374],deleteaclmailbox:41,deletedmessag:304,deletedprefix:[24,74,104,304,349,406],deletembox:41,deletemsg:41,deleteprun:[160,267],deleteright:[274,349],delight:432,delimit:[24,52,74,88,89,92,97,335,349,352,365,373],deliv:[4,11,19,26,41,49,58,64,88,96,97,98,99,100,114,147,158,160,161,266,267,268,274,280,289,292,295,300,314,315,317,326,335,349,351,358,374,383,384,396,406,410,431,440,442,447],deliver:[100,267,435],deliver_merge_pollstatu:447,deliver_merge_repli:447,deliver_merge_request:447,deliver_merge_vpoll_repli:447,deliverbi:349,deliverdb:[97,358],deliveri:[4,13,19,47,58,63,74,76,87,97,98,99,102,104,113,118,138,145,189,229,244,266,269,271,274,280,285,287,292,297,300,302,304,315,326,343,344,349,358,368,373,376,382,431,435,437,442,447],delprun:[267,304,348],delsub:108,delta:[9,30,251,252,253,254,255,256,276,288,349,410,431],delteacl:374,demand:[62,125,309,327],demi:275,demonstr:61,demot:313,deni:[6,98,110,267,274,288,290,312,349,365,366,381,398],denial:[6,99,290,365],denot:[56,323,349,448],dens:364,depart:442,depend:[7,9,11,30,36,41,44,45,51,52,58,66,70,72,74,78,80,87,90,93,96,99,100,193,200,226,227,266,267,271,273,275,276,287,288,289,292,300,304,309,319,330,333,349,376,386,406,410,435,446,447,448],depfil:80,depict:11,deploi:[4,15,84,274,339,410,440],deploy:[4,5,8,11,12,36,40,41,266,309,310,313,349,362,435,446,447],deployment_guid:9,deprec:[6,41,47,56,100,136,160,178,181,182,183,184,185,186,187,188,209,210,211,212,213,214,215,216,217,219,220,221,222,223,251,252,253,254,255,256,262,266,274,309,349,362,403,422,431,442],depth:[138,267],dereferenc:349,deriv:[41,81,288,309,332,403,410],derrick:443,describ:[3,7,8,12,18,27,41,44,45,56,58,68,72,97,162,251,254,255,256,267,274,279,286,300,309,311,314,348,349,350,360,373,408,435,440],descript:[27,52,56,72,88,94,96,98,300,326,431,445,447],descriptor:[44,45,55,68,97,100,131,178,180,181,182,183,184,185,186,187,188,348,349,353,379,381,383,384,392,393,395,396,398,409,414,420,421,423,424,426,428,429,430],deserv:5,design:[0,5,6,11,13,41,69,75,80,88,97,275,290,314,349,392,442,447],desir:[5,11,56,60,74,97,107,267,288,290,296,309,349,373,386,440,445],desktop1:448,desktop:[300,448],desno:443,despatch:[268,440],desper:300,despit:[55,71,267,280,290,318],desruisseaux:431,dest:[406,411],destdir:51,destin:[3,74,88,100,102,152,163,197,233,245,266,267,275,286,343,349,363,374,406,410,411,442],destroi:[48,72,96,349,412],desttier:410,desyncronis:200,detail:[1,6,11,12,18,41,47,49,55,64,66,68,72,74,79,80,81,87,94,96,97,100,102,107,108,110,121,122,156,160,227,267,269,275,276,277,278,279,282,283,285,286,292,294,309,310,314,339,348,349,352,355,356,363,365,373,386,410,416,447,448],detect:[26,44,45,49,58,74,80,95,98,100,109,110,132,152,153,156,160,161,164,175,178,185,186,187,188,191,199,203,205,223,229,245,262,266,307,308,349,387,402,431],detector:[49,80],determin:[3,5,6,15,28,36,40,41,58,74,80,93,97,102,266,273,275,276,286,289,301,314,317,326,343,349,355,356,357,358,359,390,410,415],determinist:364,detritu:44,dev:[10,11,49,65,72,80,207,265,266,267,275,337,349,435,439,447],devel:[11,33,44,49,55,288,318],develop:[2,6,12,27,33,44,81,87,88,102,137,174,179,180,181,182,183,184,185,186,187,188,207,208,209,210,211,212,213,214,215,216,217,234,235,236,248,249,258,259,263,264,266,267,268,277,309,316,318,339,349,420,421,423,424,426,428,429,430,432,433,435,438,440,443,444,447],development:265,devic:[3,4,11,27,52,276,447],devrandom:337,dfuch:98,dhave:80,dhe:[82,83,84,86,87],diacrit:[56,349],diagnos:[44,49,97],diagnost:363,diagram:[1,11,292],dialog:[267,448],dictat:[11,15,41,87,273],did:[19,38,48,72,76,80,97,157,168,195,223,231,243,267,297,300,349,432],didn:[44,51,74,80,97,156,164,266],die:[324,378],died:288,dies:[348,386],diesel:11,diff:267,differ:[7,9,11,13,18,19,30,33,36,41,44,45,46,49,55,56,58,59,69,70,71,72,74,80,88,96,97,99,100,130,137,139,141,156,157,161,169,229,233,245,266,267,274,276,278,279,282,283,285,286,288,295,297,300,302,304,309,310,313,314,320,336,343,348,349,359,361,370,374,387,388,406,411,417,442],differenti:349,difficult:[80,266,286,319],difficulti:49,digest:[5,41,49,93,99,130,349,373,374,420,421,423,424,426,428,429,430,431],digit:[41,56,74,97,156,332,349,352,377],dilail:442,dilyan:[139,141,267],dilyanpalauzov:205,dimens:349,diminish:[9,30,276],dir:[12,80,88,97,164,179,180,181,182,183,184,267,448],direct:[7,11,15,41,46,52,58,72,74,93,97,166,193,196,232,244,266,278,279,282,286,292,294,314,347,349,410,439],directli:[11,22,41,44,46,49,52,63,75,81,88,100,137,140,160,267,286,288,319,330,349,355,357,442,445],director:286,directori:[1,10,11,15,24,30,35,44,48,49,51,52,54,56,57,58,59,63,68,72,74,80,88,93,96,97,98,99,100,121,142,160,163,173,189,195,203,219,220,221,222,228,229,251,252,253,254,255,256,266,269,275,279,283,284,288,292,295,297,300,301,310,313,318,327,336,340,349,353,354,359,360,369,370,374,379,381,385,387,390,392,393,395,397,398,403,404,405,410,431,435,437,443,445,447,448],dirhash:[143,144],dirsrv:11,disabl:[11,12,18,19,24,25,33,41,49,74,77,80,87,88,89,93,97,98,99,100,102,104,110,113,122,139,141,146,158,160,173,174,192,193,208,209,210,211,212,213,214,215,216,217,219,220,221,222,245,266,267,277,286,292,297,300,328,337,349,353,357,368,378,379,381,383,384,393,394,395,396,398,409],disable_shared_namespac:[33,349],disable_user_namespac:[33,270,349],disadvantag:[7,349],disallow:[41,97,326,349,374],disappear:[25,47,58,59,74,324,330,349],disast:[11,267,356,445],disastr:64,disavow:97,disc:374,discard:[74,75,403],disclaim:81,disclos:[173,349],disconnect:[97,163,189,251,252,253,254,255,256,288,326,349,386,442],disconnect_on_vanished_mailbox:[110,146,349],discov:[74,80,154,196,232,244,266,307],discoveri:11,discreet:349,discret:[4,71,102,175,288,439,447],discretionari:[33,269,447],discuss:[15,40,41,56,65,88,191,267,273,275,277,278,288,296,304,336,339,343,433,439,448],disjunct:226,disk:[3,6,9,10,15,28,30,34,35,39,41,44,45,47,51,57,58,74,78,100,102,109,139,160,191,219,220,221,222,251,252,253,254,255,256,266,275,276,278,280,286,299,313,314,339,340,349,355,357,363,367,370,387,388,403,405,422],diskquota:27,diskus:[27,277,349],dispatch:96,displai:[6,8,33,56,87,98,106,118,119,138,267,326,349,355,361,365,367,369,370,372,374,381,388,391,398,410,427,431,441,448],displaynam:[227,349],disposit:[97,235,236,238,239,240,241,242,431],disrupt:96,dissappear:160,dist:[48,72,98],distanc:[71,268,440],distcheck:[48,72,192],distclean:97,distinct:[15,36,66,74,96,276,287,332,348,349,352,373],distinguish:[5,33,41,150,167,194,227,273,313,448],distribut:[2,4,6,11,12,13,19,28,36,41,44,48,49,68,72,74,84,85,90,93,96,97,99,178,180,181,182,183,184,185,186,187,188,189,199,267,269,275,278,279,280,282,286,290,292,300,309,319,320,342,349,353,365,431,432,435,442,445,446,447],distributor:19,distro:[49,266,267,288,309,445],ditto:286,divers:[431,443],divert:267,divid:[3,11,28,93,97,147,278,313,348],divis:58,dkim:[88,349,431,435],dlist:[6,74,80,199,447],dmarc:435,dmz:286,dnf:84,dnl:267,dns:324,do_stuff:[46,47,59],doc:[1,48,49,52,87,96,178,180,181,182,183,184,185,186,187,188,189,198,201,225,247,267,365,435,445,447],docbook:448,docker:50,docsrc:[48,52,72],document:[0,1,11,13,15,18,19,27,40,41,44,45,46,47,48,49,51,53,55,58,63,66,72,75,80,81,85,87,91,94,96,97,98,99,100,141,143,145,152,155,163,171,178,180,181,182,183,184,185,186,187,188,189,191,192,199,205,209,210,211,212,213,214,215,216,217,219,220,221,222,265,266,267,273,274,275,278,280,282,286,287,288,289,290,292,302,309,330,348,349,371,404,410,435,440,441,445,447],doe:[3,5,7,8,11,13,19,27,33,35,36,40,41,44,46,47,51,56,58,60,66,69,72,74,75,82,83,84,86,87,88,89,92,93,95,97,98,99,100,199,202,244,266,267,272,273,274,275,276,277,286,288,289,290,292,296,304,306,309,310,311,314,315,318,323,330,333,335,336,337,339,347,348,349,356,363,368,372,373,374,376,378,401,403,406,410,411,419,431,432,442,447],doesn:[0,18,19,33,41,44,45,47,48,51,55,56,58,59,61,72,74,76,80,88,97,98,99,104,110,140,142,147,150,162,164,167,194,197,227,233,245,251,252,253,254,255,256,267,274,277,286,304,312,321,339,348,349,365,411],doesnt:338,dohash:97,doing:[44,48,71,72,74,88,89,92,97,155,160,197,233,245,262,275,292,309,310,314,349,381,398,406,411],domain1:267,domain:[3,7,13,18,33,41,50,74,96,97,98,99,100,120,146,158,161,164,178,180,181,182,183,184,185,186,187,188,189,205,236,238,239,240,241,242,267,272,273,280,288,293,294,295,300,334,335,348,349,355,374,394,402,445,447,448],domainkei:[93,267,349,431],domainrelatedobject:349,don:[0,3,18,44,45,47,48,49,52,53,55,56,58,71,72,74,88,97,98,99,100,130,142,143,146,156,157,163,170,172,174,175,189,194,199,225,229,233,244,245,247,266,267,275,277,285,286,287,288,300,318,319,337,339,340,349,355,359,377,386,391,402,403,406,410,411,414,420,421,423,424,426,428,429,430,433],donald:158,done:[15,25,40,41,47,51,53,55,56,57,58,61,75,76,80,88,90,93,97,100,108,125,266,267,275,281,286,288,292,300,307,309,312,317,349,359,372,374,390,427,445],dopenssl_no_krb5:318,dormant:352,dot:[3,33,41,69,99,143,163,189,266,349],doubl:[55,56,100,138,226,290,348],doubt:[72,138],dovecot:[51,154,178,180,181,182,183,184,185,186,187,188,349],down:[36,44,56,74,80,96,97,99,156,160,251,252,253,254,255,256,267,275,280,286,288,341,349,353,378,379,381,383,384,393,394,395,396,398,404,406,409,411,435,446,447],downcas:[56,335],downconvert:321,downgrad:[147,262,266,403],download:[48,49,51,66,72,80,81,88,89,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,208,209,210,211,212,213,214,215,216,217,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,235,236,238,239,240,241,242,243,244,245,246,247,249,251,252,253,254,255,256,257,259,261,262,264,266,303,431,435,442,445,447,448],downloadurl:199,downtim:[288,313,442],dozen:36,dpc22:[61,141],dperl_pollut:98,dpkg:[267,432],drac:[209,210,211,212,213,214,215,216,217,219,220,221,222],drac_auth:79,drac_p:79,draft:[33,41,90,97,99,100,102,125,160,235,236,238,239,240,241,242,251,252,253,254,255,256,262,300,304,307,326,343,349,369,372,387,403,448],dragonfli:139,drastic:[122,344],draw:448,drawback:[286,440],drbd:[11,349],dread:[97,98],drive:[11,92,93,278,349],driver:11,drop:[45,64,72,97,160,178,179,180,181,182,183,184,185,186,187,188,204,290,445],drop_cr:323,dropcr:323,dropoff:97,drwxr:64,dry:[176,288,382,403,405,406,416],dsn:[97,349],dtend:[6,76],dtstamp:76,dtstart:[6,76],duck:[48,72],due:[41,58,59,66,74,75,93,98,107,126,152,160,161,200,223,251,252,253,254,255,256,266,267,275,315,349,406,447],dumb:44,dummi:349,dump:[44,45,51,74,77,97,99,100,117,143,251,254,255,256,275,280,287,290,315,349,356,358,359,363,375,387,399,432,441,447],dump_deliverdb:97,dump_opt:74,dupelim:97,duplic:[4,13,58,62,74,80,90,97,98,99,100,104,139,246,266,267,280,286,292,300,304,315,326,331,349,358,368,431,447],duplicate_check:141,duplicate_db:[10,160,349],duplicate_db_path:[10,96,267,280,349],duplicate_mailbox_mod:369,duplicatedb:98,duplicatedeliv:[104,326],duplicatesuppress:[41,98,100,349],durat:[11,15,44,45,58,74,76,99,216,217,219,220,221,222,349,368,400],dure:[11,12,19,24,36,41,44,45,47,55,56,57,58,59,80,84,97,98,99,100,122,138,147,155,168,175,178,180,181,182,183,184,185,186,187,188,191,193,195,196,204,217,219,220,221,222,227,230,232,235,236,238,239,240,241,242,244,251,252,253,254,255,256,261,262,266,267,273,275,276,277,286,288,289,313,339,349,356,364,374,406,432],duse_setproctitl:174,dynam:[56,91,349],e503646e389f507777fb75eeacc2da0d2156016a:417,each:[3,6,7,9,11,13,15,19,27,28,30,31,33,36,38,40,41,44,45,46,55,56,58,59,60,61,64,66,68,72,74,75,77,80,88,90,100,109,139,140,152,160,178,179,180,181,182,183,184,185,186,187,188,196,215,216,217,219,220,221,222,232,244,251,252,253,254,255,256,266,267,268,270,273,275,276,278,282,283,286,287,288,289,290,292,296,298,299,304,309,310,314,316,320,324,332,340,348,349,350,352,355,356,363,365,373,376,377,381,389,392,398,404,410,411,440,445,447,448],eachoth:3,eager:98,earli:[206,225,247,349,431,440,442],earlier:[18,48,72,97,147,153,154,164,191,199,200,251,252,253,254,255,256,266,267,286,300,349,447],earliest:[330,349],earmark:12,easi:[41,47,74,80,286,288,289,304,308,316,319,333,435],easier:[0,18,35,44,56,62,74,80,97,99,160,161,271,315,369,417,447,448],easiest:[40,59,72,349],easili:[6,53,56,58,59,74,271,292,359,442,448],eat:97,eaton:[439,443],ebai:156,ecdh:[146,160,349],ece:[98,374],echo:[97,267,312,328,420,421,423,424,426,428,429,430,445],ecparam:[160,349],edda:[202,205],edg:[152,207,209,210,211,212,213,214,215,216,217,234,235,236,248,249,258,259,263,264,265,349],edit:[49,51,52,72,87,267,289,292,300,314],edithead:[235,236,238,239,240,241,242,300,349,431],editor:[6,52],edu:[68,81,97,98,99,102,117,141,286,288,304,339,342,350,374],eest:373,effect:[5,9,30,36,55,56,63,74,93,97,107,160,193,267,274,278,288,300,309,313,349,369,406,431],efficaci:28,effici:[11,13,35,44,58,66,74,90,96,97,98,153,288,309,344,349,410,411,419,435,442],effort:[1,11,12,41,81,160,336],egd:98,ehlo:[267,349],either:[6,9,11,18,19,22,30,36,41,44,45,47,49,56,57,58,74,79,87,93,96,109,191,266,267,268,271,273,286,287,290,292,294,295,297,300,304,309,314,318,330,337,348,349,352,371,374,376,401,406,410,439,440,442,445,448],el6:27,el6_6:[82,83,84,86],el7:417,elaps:74,elect:439,electron:[431,442],eleg:56,element:[6,75,251,252,253,254,255,256],elfejoyeux:110,elimin:[11,35,56,97,98,105],elli:[48,72,275,443],elliefm:74,ellipt:[146,160,349],els:[0,47,48,49,55,57,58,59,72,74,75,80,87,339,348],elsewher:[15,55,75,292],email:[3,5,6,11,15,18,19,27,28,33,40,41,44,46,47,49,66,69,79,88,138,145,160,219,221,222,223,226,227,243,244,251,252,253,254,255,256,262,272,274,277,286,300,307,326,339,340,343,344,349,373,374,394,431,432,435,440,441,442,444,445,446,447],emailid:[251,252,253,254,255,256,277,349],emailsubmiss:[262,349],embarrass:39,embed:[6,349,374],emerg:[11,13],emiss:27,emit:[27,75,80,97,142,321,349,403,410],emori:102,emphasis:44,empir:[51,268,440],emploi:[19,26,270,309,339],employe:19,empti:[6,11,30,33,56,74,76,80,88,93,97,99,100,108,110,142,163,202,226,243,262,276,278,282,283,288,290,330,349,406,410],emtpi:88,emul:[88,349],enabl:[1,4,5,6,11,14,19,24,25,33,40,41,48,49,51,55,58,65,66,72,73,74,80,84,87,88,89,90,92,93,96,97,98,99,100,102,104,108,109,110,117,136,139,140,143,146,147,154,160,166,168,170,172,174,178,180,181,182,183,184,185,186,187,188,192,193,195,199,203,205,206,208,209,210,211,212,213,214,215,216,217,219,220,221,222,223,226,228,229,236,238,239,240,241,242,243,247,251,252,253,254,255,256,266,267,270,271,275,277,278,279,280,281,284,288,292,297,309,314,315,321,326,348,349,352,355,357,360,368,374,382,393,398,406,410,411,417,420,421,423,424,426,428,429,430,431,441,447],enable_event_notif:277,enable_experi:97,enclos:[97,348,349],enclosur:431,encod:[27,56,58,62,74,131,146,206,219,221,222,290,304,321,349,373,376,431],encompass:314,encount:[56,97,318,448],encourag:[81,267,286,416],encrypt:[5,18,36,55,93,97,267,288,349,379,381,393,395,398,420,421,423,424,426,428,429,430],enctyp:318,end:[3,11,27,28,40,44,45,55,56,58,63,64,68,71,72,74,75,80,88,89,92,96,97,108,138,139,160,266,267,286,290,313,314,319,330,339,348,349,352,355,373,374,411,417,442,447],end_command:68,endian:[98,191,199,223],endless:[26,267,324],endors:81,endpoint:[341,349],endscript:267,endus:61,energi:11,enforc:[5,36,58,84,326,349],engin:[6,44,56,58,61,64,97,203,238,240,241,242,267,278,283,349,373,410,411,413,438,442,447],english:349,enhanc:[11,71,81,98,99,100,125,146,158,189,191,301,431,442],ennabl:349,enorm:11,enospc:11,enotifi:[225,247],enough:[41,44,55,74,79,80,206,275,276,292,329,337,339,349],enrich:160,ensur:[5,8,11,18,19,24,25,36,39,45,46,47,48,49,58,59,72,80,82,83,84,86,87,96,97,100,108,109,163,219,220,221,222,224,229,246,266,267,275,286,288,290,292,309,313,330,348,349,397,410,439],enter:[48,72,80,82,83,84,86,87,267,300,349,365,378,448],enterpris:[2,12,13,81,268,313,435,442,447],entertain:33,entir:[11,25,33,41,44,49,52,55,58,59,74,75,87,99,102,108,131,145,251,252,253,254,255,256,266,268,275,277,281,286,288,290,292,304,313,330,349,368,371,372,386,392,410,440],entireti:[66,374],entiti:[3,5,286,290,431],entri:[5,6,25,36,40,41,56,57,58,64,74,75,76,96,97,102,128,139,154,164,173,196,203,204,232,244,251,252,253,254,255,256,266,267,272,273,275,278,279,280,282,283,286,288,290,292,294,300,304,309,314,326,348,349,355,356,357,365,366,368,371,374,386,394,399,400,403,410,445],entropi:[337,349],enum_valu:80,enumer:[316,349],env:158,envel:417,envelop:[27,40,41,58,97,98,100,142,251,252,253,254,255,256,277,300,321,349],envelope_length:47,envfromsmtp:40,enviro:100,environ:[3,4,11,13,19,25,33,35,36,42,44,45,49,52,65,80,99,109,120,121,142,160,178,179,180,181,182,183,184,185,186,187,188,189,203,223,246,275,285,288,309,314,315,339,344,349,355,386,431,435,442,444,445,446,447],envtosmtp:40,eof:[74,97,99,355],ephemer:[266,284,349,447],equal:[4,11,58,80,268,349,374,382,410,440,447],equat:11,equi:349,equiv:[41,273,351,447],equival:[11,56,266,286,321,349,350,408],era:440,eras:47,erat:[147,174,175,178,180,181,182,183,184,185,186,187,188],erdmann:323,erfrakon:136,eric:97,err:[41,56,100,312],errno:[68,99],error:[8,18,28,41,44,45,47,49,51,52,55,68,74,80,82,83,84,86,87,97,98,99,100,104,139,140,142,149,152,153,154,156,158,160,161,162,164,166,171,174,178,182,183,184,185,186,187,188,193,197,202,203,215,216,217,219,220,221,222,223,226,228,233,245,251,252,253,254,255,256,262,266,267,286,287,315,335,343,348,349,355,373,374,375,388,405,410,411,412,416,431,442,447],escap:[56,99,267,300,304,312,334,349,365,374],esearch:[87,136,158,349,441],esh:117,esmtp:[267,431],esort:[235,236,238,239,240,241,242,431,441],especi:[4,11,24,25,44,55,60,72,98,102,217,219,220,221,222,267,275,296,339,349,365,410],essenti:[49,58,266,288,314,318],establish:[11,13,18,82,83,84,86,87,278,288,314,315,349,439,447],etc:[2,5,6,7,9,11,18,31,33,36,40,41,47,49,51,55,58,63,74,75,87,91,95,97,98,99,266,267,273,278,280,282,286,288,289,292,294,296,300,302,308,309,310,311,313,314,323,336,347,348,349,350,352,354,356,357,358,359,360,361,365,366,367,368,369,370,371,372,373,374,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,398,399,400,401,402,403,404,405,409,410,411,412,413,414,415,417,420,421,422,423,424,426,428,429,430,432,435,443,445,447],eudora:[99,349],evalu:[11,219,220,221,222,235,236,238,239,240,241,242,251,252,253,254,255,256,261,262,286,447],even:[0,3,11,15,18,19,36,40,41,44,45,46,47,48,55,57,58,59,64,69,72,74,75,80,84,97,98,99,100,109,141,152,154,193,198,206,265,267,274,286,288,299,309,312,313,314,318,329,330,349,355,368,374,376,410,420,421,423,424,426,428,429,430,442],evenli:58,event:[1,13,15,19,24,25,44,51,55,58,61,68,73,74,81,88,95,96,99,104,109,126,142,161,164,169,170,192,223,226,227,228,243,251,252,253,254,255,256,267,269,275,280,292,297,304,309,311,314,330,349,355,357,373,386,404,410,431,447],event_content_inclusion_mod:[277,349],event_content_s:[262,277,349],event_exclude_flag:[277,349],event_exclude_specialus:[277,349],event_extra_param:[251,252,253,254,255,256,277,349],event_group:[277,349],event_notifi:[277,349],eventsourc:[178,180,181,182,183,184,185,186,187,188,251,252,253,254,255,256,349],eventsourceurl:229,eventu:[74,80,98,356,378,410],ever:[3,40,44,55,59,138,280,292,327,328,336,349,403],everi:[0,3,6,15,40,44,45,53,58,59,72,74,79,80,81,97,196,232,244,268,277,278,279,282,288,290,292,300,304,309,314,331,341,344,349,356,397,410,411,433,440,442],everydai:[11,40],everyon:[40,47,61,80,97],everyth:[11,44,48,58,72,74,80,178,179,180,181,182,183,184,185,186,187,188,199,215,216,217,219,220,221,222,251,253,254,255,256,266,275,277,287,288,302,314,333,349,447],everywher:44,evict:349,ex_softwar:47,ex_tempfail:[97,215,216,217,219,220,221,222],exact:[8,9,11,44,45,52,58,139,267,330,349,382,432,445],exactli:[11,26,44,52,74,79,109,267,274,310,349,382],exam:9,examin:[51,56,60,97,219,220,221,222,235,236,238,239,240,241,242,251,252,253,254,255,256,261,262,266,274,275,286,296,367,368,374,382,387,403,417,442],exampl:[1,3,5,7,9,11,18,19,28,36,38,40,41,47,51,54,55,58,66,69,72,74,75,80,87,88,89,91,92,96,97,108,160,189,266,267,272,273,274,275,278,279,280,282,283,284,286,288,289,292,297,298,300,302,304,306,307,308,309,310,312,313,321,330,332,333,340,349,374,442,445,447,448],example_of_freespace_most_selection_on_backend:9,example_of_freespace_most_selection_on_frontend:9,exampleisp:40,exce:[41,297,349],exceed:[27,440,444],excel:[313,339],except:[11,13,44,45,55,56,72,74,80,87,89,90,92,97,276,287,330,349,374,442],exchang:[5,36,79,286],exclud:[3,7,9,74,233,245,251,252,253,254,255,256,276,286,288,290,349,447],exclus:[4,11,19,30,40,44,45,47,52,57,58,59,74,97,274,355,444,447],exdat:76,exec:[158,427],exec_prefix:199,execfil:[229,427],execut:[8,11,74,75,80,93,97,99,100,178,179,180,181,182,183,184,185,186,187,188,266,274,280,292,311,313,330,333,349,355,374,386,390,391,448],exempt:[309,349],exercis:[11,309],exhaust:403,exim:[41,99,267,315,349,445,447],exim_dropcr:323,exist:[4,5,6,7,8,10,11,19,27,28,33,36,40,41,44,45,46,47,50,58,59,62,66,68,74,75,76,80,88,89,92,96,97,100,130,141,143,144,147,156,160,164,191,199,202,251,252,253,254,255,256,267,270,271,274,275,276,286,287,288,290,292,295,297,298,300,308,309,312,313,315,330,335,338,348,349,353,354,355,356,357,362,365,372,379,381,392,393,395,398,403,406,409,410,411,413,422,435,439,442,445,446,447],exists_cb:44,exit:[52,55,68,74,80,97,99,146,162,163,202,215,216,217,219,220,221,222,225,247,267,309,348,349,355,373,378,386,388,397,410,411,427],exitcod:97,expand:[11,56,88,349],expans:[11,58],expect:[0,9,11,18,30,47,49,72,74,80,84,96,98,142,160,193,194,231,233,245,267,274,275,286,288,348,349,354,356,432,441],expens:[11,28,47,58,75,102,275,286,330,349,393,403,406],experi:[0,26,97,160,203,267,286,315,349,447],experienc:324,experiment:[61,97,107,178,180,181,182,183,184,185,186,187,188,192,217,219,220,221,222,235,236,238,239,240,241,242,251,252,253,254,255,256,275,378],expert:[0,11],expertis:6,expg:[304,417],expir:[24,25,97,100,196,223,267,301,315,326,349,368,374,400,415,447],expirenew:100,expiri:[152,400],explain:[11,41,56,80,267,273,290,311,334,366],explan:[15,80,267],explicit:[0,62,108,231,348,374,403],explicitli:[9,30,47,49,56,61,88,107,208,209,210,211,212,213,214,215,216,217,219,220,221,222,251,252,253,254,255,256,267,268,274,276,300,349,406,410,431],exploit:[100,111,139],explor:288,explos:349,exponenti:[251,252,253,254,255,256,349],expos:[91,411],express:[41,49,52,55,56,98,300,349,355,431,444],expung:[13,24,41,46,47,58,61,74,88,97,102,103,109,110,121,122,136,137,139,141,142,153,154,160,164,216,217,219,220,221,222,271,274,275,278,282,283,286,292,299,304,307,310,315,349,363,368,373,374,406,410,417,447],expunge_mod:[25,41,102,209,210,211,212,213,214,215,216,217,219,220,221,222,274,299,304,330,349,417],expungeprun:[160,267],ext4:11,ext:441,extend:[62,75,87,99,136,140,161,162,178,179,180,181,182,183,184,185,186,187,188,208,209,210,211,212,213,214,215,216,217,219,220,221,222,262,267,300,349,369,389,431],extens:[27,47,49,56,68,75,90,97,98,100,102,106,114,136,140,160,166,178,180,181,182,183,184,185,186,187,188,189,193,235,236,238,239,240,241,242,251,252,253,254,255,256,267,274,288,326,330,339,349,422,431,435,442],extent:374,extern:[2,36,41,58,60,68,69,80,88,95,99,105,110,262,273,286,296,300,314,349,353,373,378,379,381,383,384,393,394,395,396,397,398,409,413,431,435,447],extlist:349,extra:[9,11,30,44,66,74,80,88,98,99,142,154,235,236,238,239,240,241,242,251,252,253,254,255,256,277,302,304,349,410,431],extract:[48,72,81,90,349,431],extractor:[225,247,349],extraid:99,extrem:[11,68,288],extutil:49,eye:[313,314],fa6558da:358,fabric:[164,203],face:[6,74,275],facil:[11,55,97,267,321,349,374,435,437,447],facilit:[11,25,38,117,160,288,292,330,349,417,439],fact:[0,3,5,19,36,55,98,267,282,286,288,330],facto:268,factor:[11,53,82,83,84,86,87,349,353,379,381,393,395,398,413],fail:[1,11,18,19,26,41,44,45,47,49,51,58,59,68,72,74,76,97,98,99,141,142,153,160,161,162,164,175,191,223,228,246,266,274,286,287,300,308,318,335,339,349,355,365,376,378,403,406,410,447],failedloginpaus:[156,349],failov:[11,61,266,339,349],failur:[3,6,11,41,44,45,58,68,72,74,80,99,127,141,145,147,150,153,158,160,162,164,173,176,191,196,202,203,223,229,246,266,267,269,275,285,290,297,300,309,339,344,349,357,365,416,447],fair:319,fairli:[44,97,327,445],fake:[55,79],fall:[11,19,88,152,192,286,309,349],fallback:[229,292],fals:[40,56,66,75,87,97,198,267,280,309,326,349,374,410],famili:[11,80,442],familiar:[11,53,64,66,266,275,319],family2:3,famou:[11,268,440],fanci:321,faq:315,far:[11,36,55,74,75,97,235,236,238,239,240,241,242,251,252,253,254,255,256,261,262,288,334,349,374,381,398],fare:330,fart:97,fashion:[11,40,55],fast:[28,44,51,56,58,74,99,268,278,313,316,336,368,403,410,420,421,423,424,426,428,429,430,440],faster:[10,11,44,45,55,99,100,126,160,178,179,180,181,182,183,184,185,186,187,188,199,266,269,280,286,289,301,348,349,403,445,447],fastmail:[27,44,99,102,104,105,106,107,121,122,154,160,178,179,180,181,182,183,184,185,186,187,188,196,232,244,251,252,253,254,255,256,277,349,443],fastmailshar:349,fatal:[47,55,68,97,99,226,349],fault:419,faulti:11,favero:206,favor:349,favorit:[11,160],favour:[6,175,178,179,180,181,182,183,184,185,186,187,188,309,349],fax:81,fc20:417,fc21:417,fcc:[349,431],fcntl:[44,59,74,99,233,245,313],fdatasync:99,feasibl:[11,74],featur:[7,9,11,14,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,34,35,36,37,38,39,48,49,52,56,58,71,72,75,88,93,97,99,152,164,165,166,190,191,192,193,199,205,206,207,209,210,211,212,213,214,215,216,217,219,220,221,222,233,234,235,236,238,239,240,241,242,243,245,248,249,258,259,262,263,264,265,268,270,275,276,286,288,297,309,313,317,321,328,343,349,368,374,379,403,410,411,436,437,439,440,441,444,446,447],feb:[27,79,304,335],februari:44,fed:[100,292,349,356,377,393],fedex:373,fedora:[2,12,70,81,82,83,86,315,417,447],fedoraproject:[11,417],fee183c329c011ead7757f59182116500776eaaf:74,feed:[11,13,64,93,97,100,309,349,377,393,431],feedback:[0,220,221,222,275,439],feeder:[100,393],feel:[11,72,79,91,266],feet:64,felix:[206,227,236,238,239,240,241,242,243],fenc:11,ferreira:443,fetch:[44,45,46,47,49,51,52,53,58,65,97,100,105,122,145,147,169,215,216,217,219,220,221,222,251,252,253,254,255,256,266,267,274,284,286,313,314,315,349,365,374,377,447],fetchlock:[44,45],fetchnew:[4,100,280,292,349,351,447],fetchnext:44,few:[3,5,11,36,41,46,52,55,72,80,96,97,133,158,275,278,286,288,313,314,319,338,339,349,433],fewer:[11,262],ffff:56,fiber:[3,11],fiddaman:[228,229,243],fiddli:74,field:[6,18,41,44,45,47,58,60,62,72,74,97,154,169,192,200,214,215,216,217,219,220,221,222,224,227,235,236,238,239,240,241,242,246,251,254,255,256,266,267,273,278,280,282,290,296,348,350,406,431,445,447],fifth:410,fig2dev:49,figur:[97,267,339,355],file:[1,2,3,4,9,10,11,12,18,19,24,25,30,31,34,35,36,40,44,45,46,47,48,49,51,53,54,55,56,57,59,64,68,72,74,75,77,78,80,81,87,88,91,93,97,98,99,100,102,106,108,109,120,122,128,131,137,138,139,143,145,152,153,155,156,157,158,160,164,173,176,178,180,181,182,183,184,185,186,187,188,189,191,193,199,200,202,236,238,239,240,241,242,251,254,255,256,269,273,274,282,284,287,289,292,294,297,299,300,304,307,308,309,310,312,315,318,326,327,330,336,338,340,344,348,349,354,364,374,375,385,390,391,407,416,419,420,421,422,423,424,426,427,428,429,430,431,435,436,445,446,447,448],file_sha1:74,filedescriptor:99,fileformat:361,fileinto:[19,33,75,99,106,160,166,193,229,300,347,349],filenam:[19,27,41,44,45,74,80,100,275,280,332,349,353,355,358,359,363,379,381,392,393,395,398,399,400,403,406,407,420,421,423,424,426,427,428,429,430,448],filesystem:[3,4,11,13,24,25,28,30,35,41,44,58,69,97,99,102,104,160,267,274,275,278,280,297,304,307,313,315,324,330,339,344,349,388,403,442,447,448],filip:267,fill:[47,53,55,68,97,156,266,349],filter:[13,19,44,45,63,93,96,109,126,131,143,206,267,280,286,292,294,300,349,410,431,435,437,445,447],find:[5,6,11,41,44,48,49,55,58,72,74,76,80,88,93,154,156,160,174,192,219,220,221,222,251,252,253,254,255,256,266,267,278,288,304,310,318,319,338,349,368,369,374,403,417,420,421,423,424,426,428,429,430],fine:[46,47,51,74,100,275,323],finer:275,finger:[97,378],finish:[11,42,44,45,47,58,59,61,72,74,85,98,266,304,348,447],finishproc:68,finishrock:68,fire:328,firewal:286,first:[0,6,9,19,30,41,44,45,49,51,55,56,57,58,59,66,68,71,72,74,80,88,89,92,97,98,126,140,154,155,158,160,174,198,225,247,251,252,253,254,255,256,257,266,267,268,273,275,276,279,281,282,286,288,290,297,300,304,307,309,318,322,326,330,332,335,338,340,343,349,350,356,359,366,368,373,379,381,397,398,402,403,406,410,411,440,444,445,448],fit:[4,74,80,81,447],five:99,fix:[41,44,48,49,51,56,58,71,72,74,80,88,96,97,98,99,100,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,125,127,128,131,132,133,134,137,138,139,140,141,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,178,179,180,181,182,183,184,185,186,187,188,209,257,266,275,289,321,322,343,368,389,402,403,404,419,432,439],fixdir:267,fixm:[41,74,273],flag:[6,15,19,27,38,40,41,46,47,51,55,57,58,59,61,63,65,68,74,75,78,90,97,98,99,100,104,110,117,127,136,137,138,143,152,160,161,162,191,214,215,216,217,219,220,221,222,225,247,251,252,253,254,255,256,266,267,271,274,275,277,280,287,300,304,309,313,326,349,362,368,372,373,374,382,387,403,410,411,412,416,417,431],flag_internal_expung:47,flagnam:[27,277,349,417],flaki:342,flap:157,flash:11,flat:[4,44,74,77,88,98,99,100,266,297,312,316,336,349,358,361,364,365,447],flatten:364,flaw:79,fleme:286,flex:[49,97,266],flexibl:[11,160,286,297,309,374,435],flight:267,flock:[59,74,99,233,245],flow:[26,27,74],flowchart:[1,73,447],flush:[74,78,97,102,233,245],flushseenst:[102,122,349],flux:11,fly:[19,58,122,156,349],fmt:68,focus:286,fold:[97,100,139],folder:[5,6,7,9,24,25,27,28,30,33,36,41,44,45,57,63,66,74,91,98,104,109,110,139,140,141,142,145,152,153,155,156,161,162,178,180,181,182,183,184,185,186,187,188,199,206,223,235,236,238,239,240,241,242,267,269,270,271,272,274,276,277,286,287,297,299,301,303,305,313,314,315,340,347,349,362,374,382,402,404,406,441,447],follow:[0,6,7,8,9,10,11,12,13,18,19,23,24,25,27,28,30,33,36,40,41,44,45,47,48,49,52,55,56,57,58,60,61,65,66,68,70,71,72,75,77,80,81,82,83,84,86,87,88,96,160,178,185,186,187,188,223,251,254,255,256,266,267,272,273,274,275,276,278,280,286,288,290,294,295,300,304,309,310,311,312,313,320,323,330,343,348,349,352,355,363,364,369,373,374,393,406,410,411,427,431,432,439,440,445,448],followup:[100,349],foo:[40,44,55,63,74,97,158,160,251,252,253,254,255,256,286,287,288,300,313,349,387,410],fool:330,foolproof:288,foolstupidcli:349,foot:11,footer:191,footnot:[11,27,36,160,330],footprint:[11,98],forb:81,forbidden:332,forc:[58,74,75,98,99,266,349,355,382,403,404,412,420,421,422,423,424,426,428,429,430],force_sasl_client_mech:349,forcibl:99,foreach:[44,45,74,76,109,176],foreach_cb:44,foreground:[108,411],foreign:[80,312],foremost:11,forerunn:[268,440],forese:7,forethought:55,forev:[59,160,274,349],forget:[53,300],forgiv:99,forgot:307,forgotten:[58,72],fork:[52,65,71,74,81,98,99,109,152,189,204,348,349,386,445,447],form:[5,40,41,61,75,81,87,88,97,266,273,290,313,330,348,349,353,374,379,381,393,395,397,398,406,413,442,447],formal:[223,226,243],format:[1,6,27,41,44,47,48,51,52,54,74,79,88,91,97,98,99,100,127,156,161,178,180,181,182,183,184,185,186,187,188,191,199,212,213,214,215,216,217,219,220,221,222,226,229,235,236,238,239,240,241,242,251,254,255,256,266,267,275,285,287,288,292,297,304,314,316,326,348,349,352,354,355,356,357,358,359,361,363,364,365,368,369,370,371,374,387,403,431,432,442,447,448],former:[11,15,96,160,267,294,330,348,445],formerli:[197,233,245],formul:11,forth:[11,267],forthcom:98,fortify_sourc:223,fortun:300,forward:[36,49,133,286,290,300,309,349,374,431,442],found:[9,30,44,49,68,71,74,76,129,130,132,133,145,154,164,267,268,286,307,312,315,317,339,349,385,403,435,440,444,445,447,449],foundat:160,founder:[51,440],four:[33,41,56,74,266,273,348],fourth:[309,356,410],fox:349,fpic:[49,51,80],fprintf:68,fqdn:3,fraction:[56,158,410],fragment:77,framework:[50,75,80],francoi:443,freakin:339,fred:41,free:[9,30,53,55,56,60,68,79,80,88,97,100,125,126,151,160,163,168,195,226,228,230,245,276,278,282,288,296,297,349,403,435,444],free_cr:97,freebsd:[12,139,157,266,280],freebusi:[93,349],freed:[59,68,100,290],freeli:100,freespac:[9,30,276,288,326,349],freez:[223,315,447],french:3,freq:349,frequenc:[97,284,309,310,331,349,397],frequent:[11,58,75,97,286,310,313,368,381,398,435,436,447],fresh:275,freshmen:440,fri:389,friend:[74,288,314],friendli:199,friendlier:122,fright:74,from:[2,3,6,7,9,11,13,15,18,19,24,25,26,27,28,30,33,35,36,38,40,41,44,45,46,47,48,49,51,52,53,55,56,57,58,60,61,64,65,66,70,71,72,74,75,79,80,84,88,89,90,92,96,97,98,99,100,102,104,105,108,114,117,122,125,136,137,139,141,145,147,150,152,153,155,160,161,162,163,164,166,169,170,171,172,173,174,175,176,178,179,180,181,182,183,184,185,186,187,188,189,191,192,193,197,199,200,201,202,203,204,205,214,215,216,217,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,235,236,238,239,240,241,242,243,244,245,246,247,251,252,253,254,255,256,257,261,262,268,269,274,276,277,278,280,283,284,286,287,289,290,292,296,300,301,302,304,307,309,311,313,314,315,318,320,321,323,326,327,330,332,333,338,339,340,344,348,349,356,359,361,362,366,368,369,370,373,374,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,393,394,395,396,397,398,399,403,404,406,408,410,411,413,415,416,417,422,427,431,432,435,439,440,441,442,447,448],front:[7,66,96,266,286,348],frontend:[3,4,7,36,87,88,91,100,102,109,122,132,141,157,160,192,203,266,287,288,289,290,314,339,344,349,378,384,392,396,445,447],frustrat:[55,448],fs_get:99,fs_give:99,fsck:11,fsync:47,ftp:391,fuch:98,fud:[97,98,99,158,351,447],fud_queri:378,fud_respons:378,full:[11,12,13,18,19,40,47,52,59,64,66,74,80,81,94,100,108,160,266,267,271,274,275,277,288,330,349,386,411,432,435,442,447],full_mboxnam:74,fulldirhash:[100,107,145,228,266,281,349,404],fulli:[3,11,19,33,36,40,41,56,80,160,274,276,286,300,302,339,349,374,393,404],fullnam:6,fulltext:410,fun:[74,220,221,222],functionproc:68,fundament:[40,49],further:[3,11,15,40,41,44,45,53,56,60,91,99,235,236,238,239,240,241,242,267,269,274,280,286,296,327,349,355,410,439,447],furthermor:[74,96,292],futim:228,futur:[7,11,40,44,49,62,74,79,97,160,161,175,214,215,216,217,219,220,221,222,285,287,288,336,343,349,352,374,410,439,442,447],fuzzi:[102,205,236,238,239,240,241,242,349,431,441],g0241b22:72,gahd:[192,194,206],gain:[66,267,313,442,445],game:61,garbag:[98,134],gardin:443,gari:[98,122],gate:226,gatewai:[100,292,442],gather:[99,284,349],gave:[51,332],gcc:[49,65,80,98,110,141,162,178,182,183,184,185,186,187,188,192,201,243,245,318,320],gcm:[82,83,84,86],gdb:[51,80,315,328,349,447],geani:52,gen:58,gener:[3,4,6,15,19,25,41,45,46,48,49,51,52,53,58,72,74,80,84,85,88,97,98,99,100,152,160,178,181,182,183,184,185,186,187,188,207,209,210,211,212,213,214,215,216,217,226,234,235,236,248,249,251,252,253,254,255,256,258,259,263,264,265,266,275,276,277,278,286,288,289,297,301,309,314,327,328,337,338,339,344,349,353,355,357,369,381,386,387,398,402,410,411,420,421,423,424,426,428,429,430,431,433,435,441,447],generate_compiled_sieve_script:[160,349],gentoo:[12,81],geo:[198,225,247],geograph:11,geoloc:49,gesang:163,get:[0,1,2,7,9,11,18,19,27,30,41,44,45,47,49,50,51,52,53,55,56,58,59,64,66,68,70,72,74,76,79,80,82,83,84,86,87,88,97,100,125,131,132,133,141,204,223,226,247,251,252,253,254,255,256,266,267,275,276,277,286,287,288,300,311,315,318,326,331,339,349,365,369,374,391,403,406,410,414,422,427,431,432,435,439,445,447],get_stopp:231,getacl:[274,374],getannot:[214,215,216,217,219,220,221,222,349],getent:[267,445],getgrent:[41,273,349],gethostnam:349,getinfo:161,getmd:374,getmetadata:[161,175,192,274],getnameinfo:99,getopt:374,getpassphras:156,getprotobynam:378,getquota:[109,286],getquotaroot:[158,206,286],getservbynam:97,getuid:97,getxstr:99,ggg:267,ghudson:97,giant:349,gib:349,gibibyt:349,gif:349,gigabyt:[11,28],gilda:443,gile:154,git2:27,git:[2,48,49,51,52,53,65,71,72,125,137,153,154,160,162,168,178,181,182,183,184,185,186,187,188,195,203,208,209,210,211,212,213,214,215,216,217,235,236,249,259,264,266,267,432,447],github:[42,50,65,70,72,81,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,238,239,240,241,242,243,244,245,246,247,251,252,253,254,255,256,257,261,262,266,288,432,445,447],gitpython:[49,52],give:[0,11,13,26,28,40,41,44,45,47,51,58,72,74,79,80,87,97,98,137,267,271,276,286,288,290,292,297,304,321,329,349,402,403,411,442,445],given:[9,11,30,40,41,44,45,56,58,60,61,74,80,84,88,97,98,99,160,164,178,180,181,182,183,184,185,186,187,188,251,252,253,254,255,256,266,267,271,274,277,286,288,290,292,294,296,297,299,309,333,334,336,344,349,352,356,363,365,366,368,370,373,374,382,386,387,388,389,402,403,405,407,408,410,417,422],glaubitz:223,glib:349,glibc:[107,113,243],glob:[80,97,107],global:[3,5,7,40,44,45,58,80,102,160,178,179,180,181,182,183,184,185,186,187,188,267,271,300,301,326,374,414],gloom:444,glusterf:11,gmail:[110,358],gmt:[58,389],gmtime:58,gmtmoff_gmtim:97,gmx:140,gnarli:71,gnu99:[49,51],gnu:[49,65,80,267,374,445],goal:[440,442],god:339,goe:[15,33,48,55,72,97,292,314,330,331],goh:226,going:[7,11,44,51,52,55,74,160,286,289,315,416,443,447],gondwana:[154,439,443],gone:[74,97,266,330],good:[11,44,52,55,71,72,74,80,81,85,88,97,155,238,241,242,267,276,286,300,327,339,343,344,349,403,410],goof:98,got:[57,59,71,72,74,97,158,312,410],gotcha:[74,285,447],gouaux:[98,99],gov:99,govern:[69,278,438,447],gperf:[49,266],gpf:[315,447],gpfss:339,gpg:[48,72],gpl:80,grab:[74,97],gracefulli:[97,243],grade:[11,238,241,242,313],grain:100,gramar:199,grammat:349,grand:292,grant:[18,41,271,272,286,349,374,376],granular:[19,74,160,275,297,349],granularli:160,graphic:72,great:[7,41,51,71,160,267,268,339,440,444],greater:[19,25,47,100,102,297,349,410],greatli:[58,220,221,222],greenfield:[79,443],greet:[106,349],greg:[97,154,443],gregorian:431,grep:[18,304,365],greylist:417,groff:266,gross:97,group:[5,7,11,19,35,36,41,49,51,55,97,100,138,146,206,251,252,253,254,255,256,273,277,278,286,288,292,339,349,374,377,401,411,435,438,443,444,447],groupadd:[267,445],groupid:349,groupwar:[13,313,443],grow:[7,9,11,28,30,276,292,315,330,447],grown:80,growth:[286,341],grundman:443,gss:93,gssapi:[49,286,300],guarante:[5,7,44,47,55,56,81,84,108,266,286,288,442],guess:74,guest:11,gui:[22,81,88,89,93,339],guid:[0,7,9,11,40,41,51,52,55,58,61,66,70,71,74,80,81,90,94,96,104,136,160,161,178,183,184,185,186,187,188,206,266,267,270,275,278,284,288,290,293,297,314,319,349,363,387,403,406,410,417,435,436,441,446,447],guidanc:[1,72,266,435,439,447],guidelin:[0,439],guidsearch:[223,226],guilherm:443,guimard:[191,223,229],gut:72,gzip:[49,74,275,431],gzname:74,hack:[1,44,54,97,414,447],hacmp:339,had:[5,6,47,74,97,154,157,191,200,203,223,233,245,251,252,253,254,255,256,268,286,288,330,339,349,362,406,440],haferkamp:[160,443],hagberg:97,hajimu:100,half:[61,97],ham:27,hammer:154,hand:[11,60,97,108,141,268,271,275,286,296,349,440,448],handi:[44,80],handl:[6,15,41,44,47,55,59,68,72,74,97,98,99,100,110,113,114,122,129,130,131,133,136,137,138,139,146,147,152,153,158,161,169,171,176,178,179,180,181,182,183,184,185,186,187,188,193,199,201,202,206,208,209,210,211,212,213,214,215,216,217,219,220,221,222,227,228,235,236,238,239,240,241,242,243,251,252,253,254,255,256,262,267,274,275,286,289,309,323,339,348,349,394,420,421,423,424,426,428,429,430,435,442],handler:[202,229],handshak:6,hang:[97,197,229,233,245,289,315,341,447],hangup:386,happen:[3,4,11,44,47,48,55,58,64,72,80,97,108,267,285,288,290,318,320,342,349,356,432,441,447],happi:[131,339,403],happili:[11,47,74],hard:[36,41,44,55,97,98,156,162,299,349,384,396,420,423,424,425,426,428,429,430],hardcod:[191,219,220,221,222,251,252,253,254,255,256],harder:286,hardlink:157,hardwar:[11,58,72,238,241,242,286],harm:11,harmless:349,has:[0,3,5,6,7,9,11,18,19,26,27,28,30,33,36,38,40,41,44,45,47,49,52,53,56,58,59,61,70,74,75,76,79,80,85,86,90,91,93,95,96,97,98,99,100,102,106,107,109,154,158,160,162,166,174,176,178,179,180,181,182,183,184,185,186,187,188,193,196,197,203,206,209,210,211,212,213,214,215,216,217,219,220,221,222,232,233,235,236,238,239,240,241,242,244,245,251,252,253,254,255,256,261,262,266,267,268,271,272,274,275,276,277,278,280,281,286,288,289,290,292,297,300,304,307,308,309,311,313,314,323,324,330,333,335,339,348,349,352,355,368,369,374,378,387,389,397,406,410,411,417,435,439,442,443,448],has_chang:47,hasattach:349,hash:[59,74,76,97,98,99,100,104,196,232,244,266,267,269,275,278,317,349,386,404,405,447],hash_del:196,hashimapspool:[266,267,281,349,404],hashtabl:[9,30],hasn:[6,33,286,349,448],hasnochildren:[162,304,374],hat:[2,12,81,315,447],haustein:[151,168,195,230],hav:349,have:[0,3,5,6,7,8,9,10,11,15,18,19,22,24,25,27,28,30,33,36,40,41,44,46,47,48,49,50,51,52,53,55,56,57,58,59,60,61,65,66,69,71,72,74,75,76,77,80,81,87,88,89,90,91,92,93,96,97,98,99,100,102,107,139,156,160,164,165,166,174,178,181,182,183,184,185,186,187,188,190,191,192,193,199,205,206,209,210,211,212,213,214,215,216,217,219,220,221,222,223,227,244,251,253,254,255,256,262,266,267,268,272,273,274,275,276,277,278,279,282,283,284,285,286,288,289,290,292,296,297,299,300,303,304,307,308,309,310,313,314,315,318,319,320,324,328,330,331,334,336,337,339,340,342,343,344,348,349,352,355,356,359,368,369,373,374,382,386,403,404,406,410,417,432,435,439,440,441,442,443,445,447,448],have_acte_krb:97,have_libdb:97,haven:[18,51,98,100,333],hba:[3,11],hdd:[11,313],hdrfromsmtp:40,hdrsize:[387,417],head:[7,48,72,74,88,125,339,441],header:[12,41,47,49,59,66,75,78,80,97,98,99,100,113,117,120,122,131,132,133,134,138,139,140,142,146,147,161,169,178,180,181,182,183,184,185,186,187,188,192,206,212,213,214,215,216,217,219,220,221,222,224,226,227,228,230,246,251,252,253,254,255,256,277,278,282,283,292,307,310,313,315,318,349,356,359,363,370,376,382,387,389,393,403,410,431,447],headerbodi:[277,349],headerdata:58,headernam:58,health:11,heap:[80,349],hear:[11,70],heart:[58,348],heartbeat:349,heat:[268,440,444],heavi:[74,100,114,292,442],hei:44,height:349,heimdal:[107,266],heino:[98,139,146,158,161,173,174,443],heirarchi:[251,252,253,254,255,256],held:[18,35,44,45,52,57,58,71,74,75,100,139,355,434],hello:[61,98,267,387],help:[1,12,16,17,26,29,34,36,37,48,49,51,53,56,58,72,80,96,97,99,109,267,286,288,292,315,324,338,339,341,387,391,410,427,435,441,445,447],helpdesk:26,helpfil:52,hen:98,henc:44,henriqu:[99,100,137,443],henz:150,her:[19,33,48,72,76],herdomain:40,here:[11,12,15,19,27,33,40,41,44,45,47,48,51,53,56,58,61,63,72,74,80,87,96,97,98,100,160,267,275,278,280,283,286,288,292,297,312,316,324,330,338,348,349,412,431,441],herodotu:[268,440],heurist:[74,373],hex:[56,74,304,349],hexadecim:62,hhmm:348,hidden:[11,80,359],hide:[102,104,271],hierarch:[33,97,98,349],hierarchi:[11,13,19,22,24,27,30,33,34,41,63,69,72,74,88,89,91,92,97,98,99,104,105,160,161,163,251,252,253,254,255,256,272,276,280,286,292,297,298,300,304,305,330,349,374,387,403,442],hiersep:74,high:[7,11,15,36,97,102,266,269,286,292,310,313,315,321,337,377,386,438,447],higher:[11,15,19,27,30,49,297,309,324,349,353,379,381,386,393,395,398,413],highest:[6,30,58,387],highestmodseq:[74,122],highli:[56,235,236,238,239,240,241,242,268,339,344,442],highlight:[52,219,220,221,222,235,236,238,239,240,241,242,251,252,253,254,255,256,261,262,369,448],him:[28,300],hinder:[268,440],hint:[44,45,98,431,447],his:[3,28,33,36,76,77,98,268,286,440],hisdomain:40,histor:[349,410,440],histori:[435,438,447],hit:[56,74,75,98,267,275,349],hmac:349,hmh:[99,100,137],hoeger:[98,160],hold:[5,7,11,35,41,47,57,58,59,69,74,76,99,160,275,286,290,313,314,330,349,355,445],holdfor:227,holduntil:227,hole:108,holidai:39,holschuh:[99,100,137,443],home:[40,51,80,88,132,267,280,288,300,313,349,385,448],honest:267,honor:[97,98,440],honour:[165,235,236,238,239,240,241,242],hook:314,hope:0,hopefulli:[55,97,98,99,286],horizont:[12,36,41,285,288],horribl:[44,62,339,404],hors:[268,440],horsfal:[196,232,244],host:[3,4,11,18,36,40,41,68,96,97,267,275,286,288,292,294,295,309,312,313,314,321,339,343,348,349,350,383,384,392,396,406,432,433,435,443,445,446,447],hostmast:33,hostnam:[40,41,93,97,267,290,309,314,321,348,349,377,378,393,406,420,421,423,424,426,428,429,430],hostname_mech:349,hostname_password:349,hosts_access:348,hot:[275,278,314,344,349,357],hour:[48,57,72,74,80,97,109,266,267,292,309,341,348,349,355,368,400,410,417],hourli:[72,95,373],hous:292,housekeep:98,how:[0,1,7,9,11,24,30,31,33,41,45,46,48,49,51,53,56,57,58,66,69,70,72,74,79,80,81,88,90,93,94,96,97,98,152,160,251,252,253,254,255,256,267,273,275,276,278,282,287,288,289,290,292,297,298,309,311,314,315,330,339,341,349,355,378,432,435,447],howard:99,howev:[3,5,7,9,11,36,44,45,57,70,81,99,160,266,274,279,286,287,288,290,308,313,321,323,328,330,335,344,349,440],howto:[36,269,447],hps:98,hpux:97,href:128,hs256:349,hs384:349,hs512:349,hsk:[113,158],hst:431,html:[46,48,49,52,58,65,91,100,110,178,180,181,182,183,184,185,186,187,188,225,247,267,349,365,373],hton:97,http2:193,http:[18,49,51,53,55,65,66,70,72,80,81,87,88,89,92,131,133,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,210,211,212,213,214,215,216,217,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,236,238,239,240,241,242,243,244,245,246,247,251,252,253,254,255,256,257,261,262,265,266,267,284,286,288,349,379,393,420,431,435,447],http_h2_altsvc:349,http_jwt_kei:[251,252,253,254,255,256,349],http_jwt_key_dir:349,http_jwt_max_ag:[251,252,253,254,255,256,349],http_timezon:125,httpallowcompress:349,httpallowcor:[130,349],httpallowedurl:[129,349],httpallowtrac:349,httpcontentmd5:[132,349],httpd:[87,124,128,162,163,164,165,176,190,191,198,199,204,205,219,223,225,228,229,247,267,288,340,349,351,360,381,383,384,392,395,396,397,398,409,413,414,420,447],httpdocroot:[91,93,128,349],httpkeepal:349,httploghead:349,httpmodul:[66,88,178,179,180,181,182,183,184,185,186,187,188,267,284,349,397],httpprettytelemetri:[130,349],httppts_uri:[262,349],httptest:[351,447],httptimeout:349,hudson:97,huge:[46,74],human:[6,11,304,349],humili:11,hunch:74,hundr:[36,136,339],hung:[105,349],hunstock:262,hurt:[99,304],husband:19,hybi:431,hypertext:431,hypervisor:11,hyphen:[74,448],hypothet:30,i18nlevel:431,iOS:[175,202],ian:[147,175],iana:[88,96],iat:349,ibm:339,ical:[51,198,202,225,247],ical_obj:[6,266],ical_uid:6,icalendar:[6,88,93,126,131,133,226,228,251,252,253,254,255,256,262,266,349,431],icalendar_max_s:[251,252,253,254,255,256,262,349],icu:[49,191,223],idea:[0,49,58,71,74,75,80,85,275,286,327,339],ideal:[11,38,57,74,75,266,275,286],idempot:314,ident:[5,41,44,45,74,97,273,300,317,349,352,420,421,423,424,426,428,429,430],identifi:[3,5,14,18,27,33,58,74,75,100,137,266,269,270,274,277,288,290,299,349,374,403,406,431,447],idl:[4,26,47,49,51,79,82,83,84,86,87,96,98,100,103,109,110,147,160,162,163,174,201,206,233,245,266,267,280,295,308,348,349,351,386,410,431,447],idlesocket:[96,267,280,295,349],ids:[6,97,163,215,216,217,219,220,221,222,275,349,405],idx_ical_uid:6,idx_sieve_nam:6,ietf:[23,66,90,102,131,235,236,238,239,240,241,242,251,252,253,254,255,256,262,300,326,349],ifdef:267,ifels:267,ignor:[41,72,76,89,92,97,98,108,122,164,191,229,233,243,245,251,252,253,254,255,256,274,348,349,350,364,368,376,378,379,394,403,406,431,448],ignorequota:[47,431],ignorerefer:349,ihav:[292,300,349,431],iii:[11,438,447],ill:[11,59],illustr:[3,11,36,41,52,274,309],ilovecyru:40,imag:[3,11,36,286,339,349,431,448],imagin:[11,28,279,282,313,339],imailbox:382,imap2:442,imap2bi:442,imap4:[56,82,83,84,86,97,268,274,311,431,438,447],imap4flag:[266,349,431],imap4rev1:[68,82,83,84,86,87,97,381,398],imap4rev2:[235,236,238,239,240,241,242],imap:[1,2,3,4,5,6,9,10,11,13,14,18,19,26,27,28,33,34,35,38,39,40,45,46,47,49,50,51,54,66,68,69,70,73,74,80,81,82,83,84,85,86,87,88,89,90,92,93,95,96,265,267,269,270,271,273,274,276,277,278,280,281,282,284,285,287,288,289,290,292,293,294,295,296,297,298,299,300,301,304,307,309,310,312,314,317,326,332,333,335,336,338,340,341,342,344,348,349,353,354,357,358,359,361,362,365,369,373,374,376,378,379,380,381,382,383,384,386,388,390,391,392,393,395,396,398,403,406,409,410,413,414,417,420,421,423,424,426,428,429,430,432,433,437,438,443,444,445,447],imap_:44,imap_current_stable_vers:447,imap_dupdeliv:58,imap_enum_virtdomains_on:80,imap_mailbox_lock:[47,59],imap_quotaroot_nonexist:97,imap_remot:332,imap_sharedseen:58,imap_uid:6,imapclon:199,imapd:[2,6,9,10,15,18,19,22,24,25,28,30,33,40,41,44,45,46,48,49,51,52,58,65,66,68,70,72,74,80,81,82,83,84,86,87,88,89,90,91,92,93,97,98,99,100,102,104,106,107,110,115,117,121,142,147,151,152,158,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,216,217,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,235,236,238,239,240,241,242,243,244,245,246,247,251,252,253,254,255,256,257,261,262,266,267,270,271,272,274,275,276,277,278,279,280,281,282,283,284,286,287,288,289,292,295,297,300,302,303,304,307,308,309,310,312,313,315,316,318,319,323,326,333,335,337,338,340,341,347,348,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,376,377,378,379,380,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,409,410,411,412,413,414,415,416,417,420,421,423,424,426,428,429,430,432,445,447],imapd_authst:46,imapd_conf:[267,445],imapd_out:46,imapd_userid:46,imapext:326,imapflag:[262,266,300,349],imapidlepol:349,imapidletimeout:[147,163,349],imapidrespons:349,imapmagicplu:[63,100,349],imapnew:302,imapopt:262,imapopt_annotation_db:[44,45],imapopt_annotation_db_path:[44,45],imaprev1:136,imaptalk:51,imaptest:[70,154,441],imapus:[267,445],imaputf7:[51,266],imapv:97,imapwiki:70,imb:[113,158],imclient:[67,97,98,99],imclient_addcallback:68,imclient_authent:[68,97],imclient_clearflag:68,imclient_clos:68,imclient_conn_nonsyncliter:68,imclient_connect:68,imclient_eof:68,imclient_getselectinfo:68,imclient_havetl:68,imclient_proc_t:68,imclient_processoneev:68,imclient_repli:68,imclient_send:[68,97],imclient_servernam:68,imclient_setflag:68,imclient_starttl:68,imip:[178,180,181,182,183,184,185,186,187,188,251,252,253,254,255,256,349,431,447],imip_send:447,imipnotifi:[178,180,181,182,183,184,185,186,187,188,349],immedi:[11,15,24,25,30,41,58,59,66,74,75,102,104,109,141,156,160,233,245,274,290,330,331,337,349,355,373,397,406,439],immens:80,immut:431,impact:[5,7,8,11,96,276,286,309],impad:385,imper:11,implement:[1,4,6,11,12,13,40,41,44,45,46,47,49,66,73,80,93,97,98,99,106,107,117,147,152,173,178,180,181,182,183,184,185,186,187,188,225,227,229,238,241,242,247,251,252,253,254,255,256,262,267,273,274,285,290,292,300,339,344,349,374,431,435,442,447],implementor:271,impli:[11,81,274,330,353,379,381,393,395,398,410,413,416],implic:[5,11,100,266,311],implicit:[3,5,56,99,161,246,349,374,410,447],implicit_owner_right:[41,272,349],implicitli:[41,88,272,349],implicitownerright:105,importantli:[11,442],impos:[41,97],imposs:286,impost:5,impract:11,impress:11,improperli:[97,321,349],improv:[55,58,80,97,98,99,100,104,139,142,145,160,162,169,176,178,179,180,181,182,183,184,185,186,187,188,199,200,209,210,211,212,213,214,215,216,217,219,220,221,222,235,236,238,239,240,241,242,251,252,253,254,255,256,262,266,281,286,289,349,365,441,442,447],improved_mboxlist_sort:[1,44,73,121,143,175,192,251,254,255,256,349,447],imsp:[97,98],imspd:97,imtest:[82,83,84,86,87,97,98,99,119,156,203,267,351,420,423,424,425,426,428,429,430,447],inabl:11,inaccur:[44,448],inact:[41,251,252,253,254,255,256,349,357],inadvert:[88,274],inbound:[275,314],inbox:[3,19,20,27,33,36,40,41,58,61,66,74,76,88,89,91,92,97,98,99,102,104,105,109,142,146,156,160,161,189,223,272,286,288,297,300,306,307,313,315,326,349,373,374,376,382,447],inc:86,incdir:[12,49,99],inclin:11,includ:[0,6,8,10,11,12,13,18,19,24,25,27,33,36,41,44,47,48,49,51,52,55,56,58,64,68,71,72,74,75,76,80,81,82,83,86,87,90,91,93,96,97,99,100,102,117,133,137,141,143,144,156,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,212,213,214,215,216,217,219,220,221,222,228,246,266,267,273,274,277,278,281,288,290,292,300,304,309,310,318,319,321,333,338,342,347,349,352,353,359,369,379,380,381,382,383,384,392,395,396,398,403,409,410,413,414,431,432,439,442,443,448],inclus:[24,25,53,136,178,181,182,183,184,185,186,187,188,286],incom:[19,88,90,100,236,238,239,240,241,242,267,286,287,289,292,297,300,315,324,344,349,386,411,440,447],incompat:[108,300],incomplet:[97,112,140,154,223,275,296,309,431],inconsist:[41,160,175,251,252,253,254,255,256,266,286,288,402],incorpor:[11,19,52,53,71],incorrect:[44,45,80,97,108,109,142,154,156,267,402],incorrectli:[97,99,161,226,251,252,253,254,255,256,387],increas:[10,11,35,44,56,58,99,104,108,156,162,251,252,253,254,255,256,288,289,309,331,344,349,355,363,386,397,406,410],increasingli:44,increat:156,increment:[59,74,75,97,106,178,183,184,185,186,187,188,410],incur:11,inde:[44,344],indefinit:[105,330,349],indent:[55,349,364],independ:[41,55,97,235,236,238,239,240,241,242,275,286,292,299,309,411,431,442],index:[1,4,11,18,25,31,41,43,44,47,56,57,59,61,75,78,88,97,100,102,106,108,120,122,136,138,145,147,152,153,156,158,164,175,191,205,212,213,214,215,216,217,219,220,221,222,223,235,236,238,239,240,241,242,251,252,253,254,255,256,262,266,274,275,278,280,282,283,299,300,301,304,309,310,313,314,321,326,330,336,349,355,356,365,370,374,387,389,403,410,431,447],index_check:98,index_clos:46,index_init:46,index_lock:46,index_open:46,index_record:[46,47],index_refresh:46,index_search_evalu:97,index_searchcachehead:98,index_st:46,index_statu:47,index_tellchang:46,index_tellexpung:46,index_unlock:46,index_upgrad:153,indic:[11,12,18,51,56,58,62,63,68,78,108,160,274,286,288,290,326,338,348,349,365,374,403,410,422,431,448],indirect:81,individu:[3,7,11,24,28,34,38,41,44,47,58,74,75,78,80,88,102,145,160,251,252,253,254,255,256,278,288,301,313,330,336,366,403,406,431,438,442,447],ineffici:[145,410],inet6:266,inet:267,inet_aton:378,inetd:97,inetdomainbasedn:349,infect:[95,216,217,219,220,221,222,349,373],infin:352,infinit:[11,141,156,204,318,349],inflict:61,influenc:[80,355],info:[11,33,38,41,51,58,72,74,97,98,99,191,292,298,300,304,305,318,319,349,368,387,431,433],inform:[3,5,6,7,11,12,14,20,21,22,24,28,34,35,36,38,41,47,49,51,53,58,61,64,68,70,72,74,88,90,95,97,99,106,137,152,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,209,210,211,212,213,214,215,216,217,219,220,221,222,233,245,267,269,273,274,275,277,278,280,281,286,290,297,300,309,314,333,336,338,339,340,347,349,356,363,369,370,372,373,374,378,386,387,389,401,403,404,406,410,419,420,421,423,424,426,428,429,430,431,432,447,448],infrastructur:[3,4,5,11,19,36,48,72,80,160,163,223,309,442],ingest:397,inher:[147,314],inherit:[33,41,166,192,193,292,349,368,374,410],ini:[51,225,247,333],inifil:[51,266],init:[46,52,55,74,80,266,267,445],initgroup:98,initi:[9,11,19,30,44,45,56,68,74,75,88,97,98,99,100,122,267,276,285,295,309,348,349,383,384,396,420,421,423,424,426,428,429,430,431,441,445,447],initialis:[44,59,80,373],inject:[156,326,374],inlin:[11,55,349],inmsg:68,inn:[97,292],inner:99,innosoft:321,inod:6,input:[44,47,53,60,68,74,80,97,196,232,244,296,353,355,356,359,361,376,379,381,383,384,392,393,395,396,398,406,409,411,414,417,420,421,423,424,426,428,429,430,448],inquir:439,insecur:431,insensit:[97,99,236,238,239,240,241,242,349],insert:[11,18,41,44,76,88,106,142,196,232,244,267,271,273,274,290,292,304,309,335,348,349,374,376,431],insid:[27,33,40,47,55,60,62,74,98,99,267,296,300,304,445],insist:49,inspect:[48,74,363,364,369],inspir:[98,109,122,275],instabl:320,instal:[2,3,7,11,12,19,40,41,42,44,49,52,61,65,70,72,80,82,83,84,85,86,87,88,93,94,95,96,97,98,99,100,110,160,164,178,179,180,181,182,183,184,185,186,187,188,190,193,200,202,203,269,285,292,301,304,313,314,318,319,333,339,349,373,374,390,420,422,423,424,425,426,428,429,430,435,436,446,447,448],installbinsymlink:[178,179,180,181,182,183,184,185,186,187,188],installsiev:[97,351,447],instanc:[3,9,11,13,30,52,56,65,68,88,91,97,160,266,273,276,288,292,309,314,324,339,348,349,354,406,410,445,447],instant:[11,431,443],instanti:288,instead:[11,18,19,25,36,41,44,47,52,53,55,56,58,66,71,72,74,75,80,90,96,97,98,99,100,109,160,162,163,178,182,183,184,185,186,187,188,197,202,215,216,217,219,220,221,222,228,233,245,251,252,253,254,255,256,266,267,274,281,286,288,289,309,326,330,334,343,347,349,358,359,374,377,382,383,384,386,391,395,396,402,403,406,408,411,420,421,422,423,424,426,427,428,429,430],instruct:[18,40,41,48,49,51,52,56,65,70,72,75,85,90,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,262,266,298,309,333,413,447],instrument:98,insuffici:286,insur:286,int64:51,int_dat:[387,417],integ:[6,9,30,55,56,58,62,75,80,97,115,174,276,348,349],integr:[5,50,51,53,65,80,87,88,97,100,102,163,164,178,179,180,181,182,183,184,185,186,187,188,349,353,379,381,393,395,398,413,420,421,423,424,426,428,429,430,435,441,447],intel:97,intellig:[160,276],intend:[1,3,11,12,41,44,66,90,231,243,275,285,288,389,442,445],intens:[11,311,359],intent:[15,25,80,364,369],inter:[40,42,447],interact:[11,44,45,52,97,100,105,141,235,236,238,239,240,241,242,267,286,292,339,349,359,374,401,420,421,423,424,425,426,427,428,429,430,431,445],interchang:[56,286,431,442],interest:[1,6,11,12,44,45,47,70,71,81,85,275,277,286,343],interfac:[7,11,36,40,41,45,46,49,53,58,66,68,96,97,98,100,208,267,271,273,294,295,302,321,348,349,378,445,447],interfer:[80,160,309],interleav:286,interm:97,intermedi:[11,75,97,214,215,216,217,219,220,221,222],intermediari:[251,254,255,256,359],intermeta:98,intern:[11,33,36,41,44,45,47,51,52,59,62,63,69,91,97,98,100,178,180,181,182,183,184,185,186,187,188,193,194,288,307,321,347,349,354,365,374,410,419,435,442,447],internal_flag:47,internald:[58,74,122,145,157,214,215,216,217,219,220,221,222,374,389,403],internaldate_heurist:145,internalindex:410,internation:[1,54,97,431,447],internet:[3,13,96,267,268,294,348,383,384,396,431,442,443,445],interoper:[96,208,209,210,211,212,213,214,215,216,217,219,220,221,222,431,435,436,447],interpret:[11,49,56,63,74,276,321,330,355,363,376,402,406],interrupt:[11,36,175],interv:[79,106,251,252,253,254,255,256,275,326,348,349,411,417,431],interven:[56,160,286],intervent:[231,243,275],intial:97,intimid:56,intra2net:140,intra:40,intro:[376,389,447],introduc:[11,24,25,50,61,74,80,99,100,154,160,191,200,262,266,274,309,356,360,362,366,368,369,371,373,379,403,410,411],introduct:[1,42,269,362,435,445,447],intuit:5,invalid:[47,62,74,97,98,138,139,163,189,226,228,251,252,253,254,255,256,275,321,349,359],invari:[57,98],invent:[268,440],inventor:268,inventori:431,invert:382,invest:11,investig:80,invis:[191,274],invit:[88,349],invoc:[52,275,301,309,355,363,397,411,417],invok:[15,41,68,99,147,267,269,275,300,307,309,349,353,355,373,374,379,381,383,384,392,393,395,396,398,409,410,414,445,447],involv:[0,13,55,98,100,143,266,289,336,441],ioerror:[189,193,403],iolog:349,ionic:410,iov:80,iov_bas:80,iov_len:80,iovec:80,ipaddr:378,iphon:[142,158],ipop3d:142,ipsum:80,ipurg:[52,98,99,109,138,152,176,189,192,206,351,447],ipv4:[348,349,406],ipv6:[99,100,348,349,406],irc:443,irk:74,irrelev:19,irretriev:330,irrit:448,is_tacki:55,isact:6,isc:391,isched_send:447,ischedul:[93,124,200,267,349,431,447],ischedule_dkim_domain:349,ischedule_dkim_key_fil:349,ischedule_dkim_requir:349,ischedule_dkim_selector:349,iscsi:3,ish:72,isn:[0,11,18,44,45,47,55,56,58,59,71,74,97,100,126,147,178,180,181,182,183,184,185,186,187,188,267,288,304,337,343,345,443],iso8601:51,iso:[27,56,97,219,221,222,223,349],isod:443,isol:[80,286],issu:[11,27,36,41,44,48,49,61,66,68,71,72,74,82,83,84,86,87,97,98,99,100,103,104,105,106,107,108,109,114,117,120,121,122,140,147,150,151,154,156,160,162,163,164,166,167,168,176,178,181,182,183,184,185,186,187,188,189,190,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,215,216,217,219,220,221,222,223,224,225,226,227,228,229,230,231,233,238,240,241,242,243,244,245,246,247,251,252,253,254,255,256,257,262,266,267,274,276,286,288,290,305,311,313,330,335,349,387,403,420,421,423,424,426,428,429,430,432,439,447,448],issubscrib:66,ital:52,itchi:55,item1:276,item2:276,item3:276,item4:276,item:[6,11,33,40,41,47,57,58,60,62,74,76,105,155,178,179,180,181,182,183,184,185,186,187,188,215,216,217,219,220,221,222,275,280,296,314,349,435,446,447],iter:[44,45,47,58,72,99,194,195,229,309,410,431],iter_skip_expung:47,itip:[88,349,431,447],its:[3,5,6,9,11,15,30,31,36,40,41,44,45,49,52,53,60,61,64,65,71,74,76,88,93,97,149,173,176,192,217,219,220,221,222,238,241,242,251,252,253,254,255,256,262,266,267,268,271,272,273,274,275,276,277,278,280,282,284,286,288,289,290,292,296,297,300,308,309,314,323,330,331,348,349,352,353,354,355,356,357,358,359,360,361,363,364,365,366,367,368,369,370,371,372,373,374,376,377,378,379,380,381,382,383,384,386,387,388,389,392,393,394,395,396,397,398,399,400,401,402,403,405,406,409,410,411,412,413,414,415,416,417,440,444,448],itself:[6,11,35,41,46,52,55,69,70,74,80,82,83,86,87,97,99,192,219,220,221,222,277,278,280,288,309,314,320,330,348,349,374,386,397,410,411,433,445],iversen:97,j16:51,jack:267,jakob:[192,194,206],jame:33,jan:[154,374,387],jane:[3,18,19,27,33,36,402],janepas3:18,janepass:18,janitor:386,jansson:[49,133,162],januari:61,japanes:66,jarosch:[113,140,172,174],jarosh:147,jason:[199,205],javascript:[91,431],jbro:349,jcal:[133,431],jdoe:[3,5,19,307],jean:443,jeff:97,jeffrei:[226,439,443],jen:[147,174,175,178,180,181,182,183,184,185,186,187,188,443],jena:[113,158],jeremi:[99,102],jeroen:[163,439,443],jessi:49,jhoward:99,jim:97,jimson:98,jj12:350,jmap:[6,13,42,93,178,179,180,181,182,183,184,185,186,187,188,189,199,200,203,209,210,211,212,213,214,215,216,217,219,220,221,222,227,228,229,235,236,238,239,240,241,242,244,245,247,251,252,253,254,255,256,262,277,321,349,431,435,441,447],jmap_emailsearch_db_path:349,jmap_guesstz_fnam:262,jmap_imagesize_annot:349,jmap_inlinedcids_annot:349,jmap_mail:[225,247],jmap_mail_max_size_attachments_per_email:[262,349],jmap_max_calls_in_request:349,jmap_max_catenate_item:349,jmap_max_concurrent_request:349,jmap_max_concurrent_upload:349,jmap_max_delayed_send:349,jmap_max_objects_in_get:349,jmap_max_objects_in_set:349,jmap_max_size_blob_set:[262,349],jmap_max_size_request:[262,349],jmap_max_size_upload:[262,349],jmap_nonstandard_extens:[217,219,220,221,222,223,226,235,236,238,239,240,241,242,243,349],jmap_preview_annot:349,jmap_preview_length:[262,349],jmap_pushpol:[251,252,253,254,255,256,349],jmap_querycache_max_ag:349,jmap_set_has_attach:349,jmap_vac:349,jmapemail:[251,252,253,254,255,256,277,349],jmapnotif:349,jmapnotificationfold:349,jmappushsubscript:349,jmappushsubscriptionfold:349,jmapqueri:[235,236,238,239,240,241,242,349],jmapsearch:349,jmapstat:[277,349],jmapsubmiss:349,jmapsubmission_deleteonsend:349,jmapsubmissionfold:349,jmaptalk:51,jmapuploadfold:349,jmp:56,job:[41,64,74,97,160,275,284,309,330,348],john:[3,5,19,27,28,33,36,69,97,98,102,150,176,223,228,304,306,309,310,334,352,354,374,402,417,443,448],johnsmit:417,johnsmith:[369,417],join:[7,71,74,267,315,434,447],jonathan:202,josh:199,journei:[268,440],jpeg:349,jscalendar:349,jscontact:90,jsmith:[74,370,387,388,389,403,405],json:[66,74,90,93,251,252,253,254,255,256,266,349,355,359,363,364,402,431],jsr:56,jtampli:102,judgement:[11,55,339],jul:[387,389],juli:288,julian:80,julien:[113,139,146,158,160],jump:[56,75],jun:64,june:55,junk:[19,173,251,252,253,254,255,256,277,300,349,372,374],just:[0,3,9,11,18,36,39,41,44,46,47,48,51,52,55,58,59,61,62,71,72,74,75,76,80,97,98,99,108,156,173,191,205,215,216,217,219,220,221,222,251,252,253,254,255,256,266,267,275,281,283,285,286,287,288,290,301,309,318,323,324,326,329,339,349,355,403,404,405,410,412,445],justgotspammedlot:368,justifi:[71,310],jwz:98,jy9o:350,jyager:350,kamen:202,katu:139,kbyte:[6,52,382],kcyru:267,kde:11,keep:[12,15,26,41,44,45,46,47,53,55,56,57,58,74,75,87,88,97,98,104,129,160,196,229,232,244,246,251,253,254,255,256,266,267,275,276,278,286,289,292,313,314,315,330,339,349,377,403,406,416,431,442,447],keepal:[138,349],kei:[4,5,27,33,41,48,61,68,72,76,80,98,160,196,216,217,219,220,221,222,223,232,244,267,277,278,280,288,314,318,349,365,420,421,423,424,426,428,429,430,447,448],ken:[79,97,98,99,141,318,439,443],kept:[7,74,99,178,180,181,182,183,184,185,186,187,188,266,275,286,288,292,331,336,349,414,422],kerber:[96,267,294,395,445],kerbero:[5,13,49,68,93,97,288,318,349,350,431,442,447],kerberos_v4:[41,286,288,300,420,421,423,424,426,428,429,430],kernel:[11,313,328],key1:62,key2:62,key3:62,key_fil:68,keyboard:68,keycap:448,keyfil:[173,374,420,421,423,424,426,428,429,430],keytab:5,keyword:[41,55,75,97,274,334],kib:[9,30,276,288,349],kibibyt:[15,19,297,349],kick:[11,33,36],kick_mupd:141,kiev:373,kill:[110,198,225,247,339,386],kilobyt:[34,41,299,374],kind:[6,10,33,44,57,74,80,267,277,330,349,431],kinda:[51,56],king:51,kingdom:444,kirk:33,kleinespel:443,kmurchison:74,knight:40,know:[3,5,7,9,30,31,40,41,44,47,49,51,55,56,71,72,74,79,93,109,266,267,274,275,276,282,286,300,302,314,318,349,381,398,410,432],knowledg:97,known:[4,5,7,11,19,27,33,44,49,56,58,68,70,74,80,88,90,133,158,267,275,286,300,314,355,363,369,376,406,435,446,447],kolab:[27,313,443],kolab_3:27,kolbu:443,konold:136,korean:66,korreio:81,kpop:[13,35,41,96,97,267,288,294,395,442,445],kravchenko:98,krb5:[49,315,349,447],krb5_enctyp:318,krb:[41,273,349,351,447],krb_pt:97,krb_sasl_client:68,krbck:97,krbimpl:49,kristof:[139,443],kssl:[315,447],kssl_build_principal_2:318,kssl_cget_tkt:318,kssl_check_auth:318,kssl_ctx:318,kssl_ctx_setkei:318,kssl_ctx_setprinc:318,kssl_ctx_setstr:318,kssl_sget_tkt:318,kssl_validate_tim:318,kthxbye:55,kueck:190,kxte:[82,83,84,86,87],label1:349,label2:349,label3:349,label:[55,56,251,252,253,254,255,256,302,321,349,448],lack:[11,55,100],lag:[9,30,276,288,349],lai:11,laid:52,lam:374,land:[44,66],languag:[49,56,66,96,223,236,238,239,240,241,242,267,294,300,349,431,435,437,445,447],lappend:97,laps:[9,30,276],larg:[7,9,11,13,18,24,25,27,28,30,33,36,55,56,74,97,98,99,100,102,136,207,209,210,211,212,213,214,215,216,217,234,235,236,238,239,240,241,242,248,249,258,259,263,264,265,266,267,275,276,277,278,286,289,304,311,313,315,324,330,339,349,355,368,393,410,411,435,439,442,444,447],larger:[4,11,15,19,33,36,56,100,275,286,310,349,382,411],largest:[11,15,41,133,160,276,349,444],larri:[99,443],last:[6,39,44,47,58,60,61,72,74,97,100,162,238,241,242,251,252,253,254,255,256,266,279,282,300,309,326,349,374,377,378,387,410,417,431],last_appendd:74,last_chunk_id:74,last_uid:[74,200],last_upd:[47,74],lastchang:74,lastpop:[100,326],lastread:74,lastuid:74,lastupd:[6,326,387,417],latch:349,late:[74,97],latenc:[11,251,252,253,254,255,256],later:[11,24,25,56,65,72,74,80,97,102,104,147,160,178,182,183,184,185,186,187,188,191,262,266,267,268,275,276,295,297,310,313,321,323,330,349,417,440,442,444,445],latest:[12,49,51,72,81,88,97,100,265,266,286,314,319,349,355,403,435],latter:[15,74,286,304,337,348,349,410],launch:[435,446,447,448],lauri:443,lawrenc:79,layer:[1,5,11,36,41,44,54,79,87,93,97,98,99,107,108,269,310,349,353,379,381,393,395,398,413,420,421,423,424,426,428,429,430,431,435,447],layout:[97,297,309,310,349,447],lazi:[74,97,267],lcunit:80,lcyru:68,ldap:[5,11,13,41,49,51,100,160,267,273,286,349,401,447],ldap_authz:349,ldap_bas:349,ldap_bind_dn:349,ldap_ca_dir:[160,349],ldap_ca_fil:[160,349],ldap_ciph:[160,349],ldap_client_cert:[160,349],ldap_client_kei:[160,349],ldap_deref:349,ldap_domain_base_dn:349,ldap_domain_filt:349,ldap_domain_name_attribut:349,ldap_domain_result_attribut:349,ldap_domain_scop:349,ldap_filt:349,ldap_group_bas:349,ldap_group_filt:349,ldap_group_scop:349,ldap_id:349,ldap_mech:349,ldap_member_attribut:349,ldap_member_bas:349,ldap_member_filt:349,ldap_member_method:349,ldap_member_scop:349,ldap_password:349,ldap_realm:349,ldap_referr:349,ldap_restart:349,ldap_sasl:349,ldap_sasl_authc:349,ldap_sasl_authz:349,ldap_sasl_mech:349,ldap_sasl_password:349,ldap_sasl_realm:349,ldap_scop:349,ldap_serv:349,ldap_size_limit:349,ldap_start_tl:349,ldap_time_limit:349,ldap_timeout:[162,349],ldap_tls_cacert_dir:[160,349],ldap_tls_cacert_fil:[160,349],ldap_tls_cert:[160,349],ldap_tls_check_p:[160,349],ldap_tls_ciph:[160,349],ldap_tls_kei:[160,349],ldap_uri:349,ldap_use_sasl:349,ldap_user_attribut:349,ldap_verify_p:[160,349],ldap_vers:349,ldflag:65,lead:[19,27,62,69,286,288,309,337,349,374,442,443],leader:61,leak:[51,55,58,80,88,97,98,99,100,122,129,130,132,133,143,147,160,163,164,168,169,195,199,206,230,247],leap:[88,349],learn:[0,11,267,292,319],least:[3,11,44,56,65,66,74,80,87,100,262,266,267,274,275,278,282,286,288,309,313,321,330,338,348,349,350,352,353,368,382,389,403,410,445],leastfre:30,leav:[24,47,51,59,72,75,80,88,89,92,108,110,175,251,252,253,254,255,256,288,318,349,386,417],led:44,lee:[173,175,178,180,181,182,183,184,185,186,187,188],leena:[98,139,146,158,161,173,174,443],leewai:349,left:[61,74,97,102,120,145,226,251,253,254,255,256,288,309,313,321,349,376,406,420,421,422,423,424,426,428,429,430,443,448],legaci:[6,41,49,136,174,181,208,209,210,211,212,213,214,215,216,217,219,220,221,222,274,349,359,362,388,389],legal:[44,45,81,99,431],lemonad:431,len:56,length:[41,44,45,55,56,58,74,75,97,100,114,267,304,349,378],lengthen:309,less:[6,9,10,11,30,48,55,74,96,98,132,133,155,161,191,266,275,276,280,286,309,313,330,349,355,403,410,442],lessen:98,let:[11,36,44,45,61,74,80,97,219,220,221,222,266,267,275,279,282,288,445],letter:[41,281,286,332,349],level:[1,3,27,33,36,41,47,58,72,74,97,98,99,141,178,181,182,183,184,185,186,187,188,251,252,253,254,255,256,266,267,269,284,286,288,298,307,313,320,347,349,374,386,406,410,438,439,447],levenshteinx:51,leverag:309,lex:[49,51,75,97,100],lexer:[97,98],lhlo:106,liabl:81,lib64:320,lib:[11,12,44,45,49,55,56,65,74,80,97,98,160,266,267,280,297,300,304,307,308,309,310,312,313,318,320,338,349,359,361,365,380,390,410,411,445],libacap:98,libanyev:51,libari:97,libbrotli:49,libbsd:[49,51,266],libc:80,libcal:51,libcap:194,libchardet:49,libclamav:[49,320],libcld2:49,libclon:[51,266],libcom_err:97,libcomerr2:87,libconfig:[51,266],libcrypto:320,libcunit1:[49,80,266],libcunit:80,libcurl:349,libcyru:[44,55,68,80,97,99,100,193],libcyrus_imap:[49,190,199],libcyrus_init:55,libcyrus_min:[44,100],libdata:51,libdatetim:[51,266],libdigest:266,libdir:[12,49,99],libencod:[51,266],liber:349,libexecdir:[178,179,180,181,182,183,184,185,186,187,188],libfil:[51,266],libglib2:266,libic:[49,88,93,125,176,198,219,220,221,222,225,247,266,267,349],libicu:49,libimap:55,libio:[51,266],libjansson:[49,266],libjson:51,libldap2:[49,266],libmag:51,libmariadb:49,libmim:51,libmysqlcli:[49,266],libnet:[51,266],libnew:[51,266],libnghttp2:[49,193],libpam0g:266,libpcre3:[49,266],librari:[0,12,41,42,49,51,66,70,80,81,95,97,98,104,139,140,145,155,156,205,266,267,318,320,342,349,420,421,423,424,426,428,429,430,433,447],libressl:[150,164,203],librt:[164,199],libsasl2:[49,87,266],libsasl:[97,98],libsqlite3:[49,266],libsrs2:49,libssl:[49,266,320],libstr:51,libtest:[51,266],libtext:51,libthread_db:80,libtool:[49,80,97,266,333],libunix:[51,266],liburi:266,libuuid:[49,74],libvex:80,libwrap0:266,libwrap:98,libwrap_init:98,libwslai:49,libxapian:[49,266],libxml2:[49,133,266],libxml:[49,51,191,266],libzephyr:266,licens:[2,27,66,267,277,435,447],lies:314,life:[84,200,348,432,448],lifetim:[415,447],light:[11,80,96],lighter:75,lightweight:[96,267,290,294,295,445],liinu:98,like:[0,3,5,7,11,15,16,17,18,19,26,29,30,33,34,36,37,41,44,45,46,47,48,51,52,55,58,60,62,68,72,74,78,79,80,87,96,97,121,191,203,236,238,239,240,241,242,266,267,273,274,275,277,279,286,287,288,290,292,296,300,304,309,312,314,318,319,320,324,333,335,339,348,349,353,357,359,365,373,378,379,380,381,383,384,392,395,396,397,398,403,406,409,411,413,414,420,421,423,424,426,428,429,430,441,445,448],likelihood:11,likewis:[55,57,97,98],limit:[4,5,6,7,10,11,12,15,33,36,41,74,81,87,91,93,97,110,138,160,163,166,191,193,235,236,238,239,240,241,242,251,252,253,254,255,256,267,269,276,288,297,298,299,324,348,349,354,356,374,387,402,410,435,439,446,447],limitless:341,lin:140,line:[11,18,41,48,49,51,55,58,65,66,71,72,80,87,96,97,98,106,138,154,160,200,262,267,268,273,275,288,290,292,294,300,302,304,309,314,323,330,332,333,342,348,349,350,352,355,359,361,365,370,371,373,381,387,390,398,403,406,410,417,440,445,447],liner:304,lingual:431,link:[9,11,41,42,44,48,49,52,55,61,68,78,79,80,88,97,98,109,205,227,276,278,280,299,309,314,320,337,342,349,384,396,420,423,424,425,426,428,429,430,431,433,442,447],linkag:[72,74,314],linkend:9,linker:320,lint:[219,220,221,222,266,369,441],linux:[2,11,12,18,19,49,65,81,84,97,99,229,267,280,301,313,315,320,328,341,342,432,445,447],list:[0,3,4,5,8,9,10,11,12,13,14,19,30,33,36,40,44,45,47,48,49,51,55,56,58,61,63,64,65,66,72,75,79,80,81,82,83,84,86,87,88,89,90,92,93,96,97,98,99,100,104,121,122,130,132,133,136,140,141,142,146,155,156,157,158,160,161,162,163,164,165,166,175,176,178,179,180,181,182,183,184,185,186,187,188,190,191,192,193,198,199,200,201,205,206,208,209,210,211,212,213,214,215,216,217,219,220,221,222,244,266,267,269,270,271,272,273,275,276,277,278,280,282,287,288,292,294,295,298,300,304,307,309,311,313,314,317,319,330,335,336,338,339,342,347,348,349,352,354,359,361,363,365,366,369,370,374,388,389,390,391,399,402,403,405,406,410,411,417,419,422,427,431,432,435,437,439,441,442,443,445,447,448,449],list_curv:[160,349],list_fe:129,list_opt:74,listacl:374,listaclmailbox:41,listaclmamilbox:41,listen:[18,74,87,96,98,164,203,267,275,277,280,286,288,290,292,294,295,300,302,309,314,341,348,349,353,378,379,381,383,384,386,392,394,395,396,398,409,410,413,414],listext:[82,83,84,86,98,136],listmailbox:[40,161,304],listquota:41,listquotaroot:[41,305,306],listright:[274,374],liter:[3,33,36,44,62,68,82,83,84,86,87,97,99,139,156,235,236,238,239,240,241,242,290,349,431,448],literal8:44,literalminu:349,littl:[44,72,74,79,97,98,122,313,336],live:[6,11,36,44,47,56,61,74,77,80,92,97,99,160,266,267,281,286,288,300,341,349,359,378,380],liveli:[74,275],lkxan:349,lmr:99,lmtp2nntp:[292,349],lmtp:[8,40,58,63,64,74,87,96,97,98,99,100,105,113,138,142,161,244,267,274,280,286,288,289,292,294,295,302,307,314,335,344,348,349,376,379,381,383,384,392,395,396,398,409,413,414,423,431,445,447],lmtp_admin:[41,100,288],lmtp_allowplaintext:100,lmtp_catchall_mailbox:349,lmtp_downcase_rcpt:[99,335,349],lmtp_exclude_specialus:349,lmtp_fuzzy_mailbox_match:[102,349],lmtp_over_quota_perm_failur:[41,297,349],lmtp_prepars:[236,238,239,240,241,242,349],lmtp_strict_quota:[41,297,349],lmtp_strict_rfc2821:349,lmtpa:27,lmtpd:[19,40,41,87,98,100,102,146,147,149,156,161,166,174,193,200,202,203,206,223,226,229,267,280,288,295,297,300,309,314,324,328,331,333,348,349,351,358,376,379,381,384,386,392,394,395,396,398,409,411,413,414,423,447],lmtpengin:[98,100],lmtpproxyd:[87,99,100,102,287,288,289,324,351,447],lmtpsocket:[96,267,280,295,349],lmtptest:[99,351,447],lmtptxn_timeout:349,lmtpunix:[27,87,267,335,348,379,381,383,384,392,395,396,398,409,413,414],load:[5,7,36,44,45,49,72,74,76,77,100,114,139,236,238,239,240,241,242,266,279,280,282,289,292,300,314,339,348,349,359,373,374,410,435,437,442,447],loader:[49,280,295,401],loc:173,local0:349,local4:97,local6:[41,97,267],local7:349,local:[3,5,6,7,11,36,40,49,53,59,61,65,72,74,80,88,97,100,102,103,122,174,193,198,225,247,257,266,267,273,276,280,285,286,288,290,292,295,309,314,328,339,349,350,354,357,359,374,388,406,411,431,440,442,444,445,447],local_config:267,local_localaddr:267,local_onli:74,local_rule_0:292,local_ruleset:267,localaddr:267,localdef:318,localdomain:300,localhost:[18,28,41,66,82,83,84,86,87,267,289,292,300,348,349,374,377],localpart:[40,163,266],localtim:304,locat:[6,7,12,27,31,36,41,44,45,48,51,56,72,74,75,80,88,93,96,97,99,122,191,266,267,269,275,284,286,287,288,289,290,292,293,299,304,310,313,328,349,356,357,358,359,360,361,365,367,370,387,388,405,407,431,445,447],lock:[1,4,5,6,11,44,45,46,54,64,80,88,96,97,99,100,106,109,133,136,142,146,147,158,172,193,215,216,217,219,220,221,222,233,236,238,239,240,241,242,245,251,253,254,255,256,262,266,267,278,280,282,286,315,324,332,339,344,349,410,411,447],lock_debugtim:349,lock_exclus:[47,59],lock_expir:6,lock_nonblock:59,lock_opt:74,lock_own:6,lock_ownerid:6,lock_shar:[47,59],lock_token:6,locker:99,lockfil:332,locktyp:59,lodg:0,log:[3,5,11,13,18,19,40,44,45,49,51,53,58,64,65,74,97,98,99,100,104,108,109,117,131,134,136,141,142,152,160,162,166,193,200,202,235,236,238,239,240,241,242,245,251,252,253,254,255,256,266,267,275,280,292,300,309,315,340,349,353,355,357,365,369,371,379,381,382,386,392,393,394,395,398,410,411,417,432,442,447],log_debug:349,logfil:386,logic:[3,5,7,11,46,55,56,97,152,158,357,382],login:[3,5,18,19,40,49,58,63,82,83,84,86,87,93,97,99,100,140,153,170,267,273,289,292,297,326,340,349,365,374,387,420,421,422,423,424,426,427,428,429,430,431,435,437,445,447],login_sasl_cli:68,login_unix_getspnam:97,login_unix_pwcheck:97,login_unix_shadow:97,logindis:[82,83,84,86,87],loginrealm:[41,349],loginuseacl:[41,99,349],logout:[18,68,82,83,84,86,87,227,300,386],logrot:267,logtimestamp:[97,349],longer:[11,46,74,80,97,98,99,100,102,107,142,145,146,147,160,161,162,163,164,166,169,172,173,174,175,176,189,190,191,192,193,197,198,199,200,202,203,204,205,206,214,215,216,217,219,220,221,222,225,227,229,233,235,236,238,239,240,241,242,245,247,251,252,253,254,255,256,257,262,266,274,286,289,290,304,309,342,344,348,349,442,447],longest:108,longev:341,longstand:98,longwind:47,look:[11,18,33,36,40,41,44,45,47,48,51,52,55,56,58,62,66,72,74,79,80,91,96,97,98,158,160,196,203,219,220,221,222,267,273,280,286,287,288,314,315,320,339,349,374,387,441],lookup:[40,41,76,88,99,100,244,267,271,272,274,286,292,317,349,368,374],loop:[44,45,55,74,97,98,99,137,141,196,204,232,244,267,343,349],loopback:302,loos:[28,286],lorem:80,lose:[7,11,58,74,155,162,203,266,286,288,339],loss:[11,58,80,81,161,286,448],lost:[41,74,80,145,157,227,262,275,288,309,335,389,410],lot:[6,24,44,46,51,74,98,105,140,141,155,156,178,179,180,181,182,183,184,185,186,187,188,267,275,276,281,292,300,324,331,419],love:[27,52,70,71,80,266,339,441],low:[55,58,286,313,349,377,433],lower:[1,15,27,56,286,341,349],lowercas:[56,99,267,349],lowest:[9,30,58,276],lqm:374,lqr:374,lrp:41,lrs:[27,41,349,374],lrsip:374,lrsp:[41,292,374],lrswip:41,lrswipcda:61,lrswipkxt:374,lrswipkxtea:41,lrswipkxtecda:[41,304,374,387],lrwipkxtan789:88,lrwipkxtan9:88,lrwipkxtan:88,lrxte:374,lsb:266,lsdfmnqxz:267,lseek:55,lsub:[63,97,121,137,141,155,158,286,288,349,374,431],ltd:443,ltmp:160,lucent:117,luck:[80,97],luke:40,lukecag:40,lun:3,lvm:11,lwi:41,lwn:11,lying:51,lyndon:97,lynx:206,machin:[1,11,40,56,64,99,100,120,267,275,286,288,289,300,309,324,339,349,368,378,440,442,447,448],maciel:443,maco:134,macro:[41,80,243,245,447],mad:314,made:[4,7,44,45,46,51,55,57,58,68,74,80,91,97,98,100,107,108,139,153,154,156,173,266,287,288,290,306,348,349,355,406,439],mageia:81,magic:[41,44,47,58,75,100,282,403],mahoroba:100,mai:[3,5,7,8,9,10,11,18,19,25,27,30,31,33,36,38,40,41,44,45,49,51,52,55,56,57,58,60,68,69,74,75,80,81,87,90,96,97,98,99,100,102,130,160,166,174,191,193,220,221,222,227,228,238,241,242,251,252,253,254,255,256,262,266,267,271,273,274,275,276,277,278,279,280,281,282,284,286,288,289,290,292,294,295,296,297,298,302,304,307,309,310,311,313,318,320,324,330,331,335,336,338,339,340,341,342,343,348,349,354,359,363,365,368,374,386,389,403,404,406,410,416,417,420,421,423,424,426,427,428,429,430,432,439,440,441,442,445,448],maiden:19,mail1:288,mail1_password:288,mail2:288,mail2_password:288,mail:[0,3,5,6,11,13,15,18,19,22,27,31,33,36,44,47,48,51,56,58,61,66,70,72,74,80,88,90,93,95,96,97,99,100,142,156,160,164,165,166,178,180,181,182,183,184,185,186,187,188,190,191,192,193,205,206,217,219,220,221,222,235,236,238,239,240,241,242,266,268,269,275,277,279,280,281,282,283,285,287,292,294,295,302,304,309,310,312,314,315,317,319,326,330,338,339,340,344,349,352,354,365,372,373,374,376,378,382,383,384,390,396,411,417,431,432,435,437,439,440,442,443,444,447,449],mail_us:18,mailalternativeaddress:5,mailbox:[1,3,4,7,11,12,15,22,24,25,26,27,28,32,34,36,38,40,43,44,46,49,52,54,59,61,63,64,66,69,77,82,83,84,86,87,88,89,92,93,97,98,99,100,102,103,104,106,108,109,117,121,122,125,127,130,136,137,138,139,141,142,143,145,146,147,150,152,154,155,156,161,162,163,164,166,169,172,174,175,178,180,181,182,183,184,185,186,187,188,189,191,192,193,194,195,197,202,203,205,206,214,215,216,217,219,220,221,222,223,224,225,229,233,235,236,238,239,240,241,242,244,245,246,247,251,252,253,254,255,256,262,266,267,269,270,271,273,274,275,277,278,279,280,281,282,283,285,287,292,297,298,299,300,301,309,310,311,312,314,315,317,326,330,336,338,344,347,349,352,353,354,355,356,357,359,361,362,363,368,370,371,372,373,374,375,376,378,380,382,387,388,389,391,393,402,403,405,406,409,410,411,416,417,418,427,431,435,437,442,445,446,447],mailbox_append_index_record:47,mailbox_badformat:97,mailbox_cacherecord:47,mailbox_clos:[47,58],mailbox_commit:47,mailbox_cr:47,mailbox_creation_distribut:9,mailbox_default_opt:[108,349],mailbox_delet:[47,58],mailbox_delete_cleanup:47,mailbox_id:74,mailbox_index_repack:47,mailbox_index_unlock:47,mailbox_initial_flag:349,mailbox_it:47,mailbox_iter_don:47,mailbox_iter_init:47,mailbox_iter_step:47,mailbox_legacy_dir:[251,252,253,254,255,256,266,349],mailbox_lock:59,mailbox_lock_index:47,mailbox_maxmessages_addressbook:[235,236,238,239,240,241,242,349],mailbox_maxmessages_calendar:[235,236,238,239,240,241,242,349],mailbox_maxmessages_email:[235,236,238,239,240,241,242,349],mailbox_messag:74,mailbox_needs_repack:[47,58],mailbox_notsupport:97,mailbox_open_exclus:47,mailbox_open_irl:47,mailbox_open_iwl:47,mailbox_read_index_record:47,mailbox_rename_copi:47,mailbox_rewrite_index_record:47,mailbox_unlock_index:47,mailboxacl:[277,349],mailboxdb:392,mailboxexist:203,mailboxid:[27,215,216,217,219,220,221,222,226,236,238,239,240,241,242,243,349,431],mailboxlist:375,mailboxptr:47,maildrop:110,mailer:[40,292],mailert:40,mailfoldernam:304,maillog:[18,335],mailnotifi:[41,99,349],mailoffsit:309,mailproxi:288,mailrepl1:309,mailrepl2:309,mailserv:267,mailspool:[14,102,314,349],mailstor:[61,69,268,309,314,336,383,384,396],mailto:[27,163,233,245,394,431],main:[28,44,45,55,66,68,80,267,278,279,280,282,283,286,309,319,336,356,448],mainli:[108,349,363,406],mainlin:379,mainstream:160,maintain:[6,10,11,22,33,35,36,38,41,46,47,48,49,52,71,72,75,84,90,97,268,271,274,275,278,286,288,290,311,316,344,397,433],mainten:[44,49,348,368,386],major:[56,81,97,99,100,106,160,265,268,286,313,316,320,439,440,442],make:[0,1,7,10,11,12,18,25,35,36,40,41,44,45,47,48,49,51,52,53,55,58,59,60,62,66,72,74,75,76,78,79,87,88,96,97,98,99,100,109,110,117,122,131,140,141,143,152,155,160,161,171,178,179,180,181,182,183,184,185,186,187,188,190,192,228,251,254,255,256,266,267,271,274,275,286,289,292,294,296,299,300,302,306,307,308,313,314,315,318,328,330,336,338,339,342,347,348,349,357,369,373,386,393,403,405,417,419,434,435,439,441,445,447,448],make_chang:47,make_md5:136,make_sha1:136,makedepend:97,makefil:[48,52,80,88,97,99,178,181,182,183,184,185,186,187,188],makemak:49,male:19,malet:154,malform:349,malici:[88,196,232,244],malloc:[47,55,80,227],man:[1,18,19,49,87,98,156,178,181,182,183,184,185,186,187,188,223,233,245,268,275,278,283,292,294,309,338,349,435,436,440,447],manag:[6,11,15,33,44,49,52,74,79,81,88,89,96,97,98,147,160,172,267,286,301,308,314,348,349,365,369,373,414,422,427,431,432,435,436,437,439,442,445,447],managesiev:[6,98,99,100,107,108,205,227,288,300,349,427,428],mandatori:[3,160,219,220,221,222,290,406],mani:[5,11,19,24,36,41,44,47,55,58,62,70,74,75,80,93,97,98,99,100,152,155,156,191,196,206,229,232,244,266,267,275,278,280,286,288,292,309,310,313,320,324,330,339,343,348,349,378,381,398,411,442],manifest:202,manipul:[41,75,121,278,286,300,365,387,427],mann:443,manner:[3,11,24,97,349],manpag:[52,97,203,275,316,377],manual:[48,52,66,72,80,88,90,93,95,203,251,252,253,254,255,256,266,267,275,287,314,363,387,448],map:[6,11,40,41,44,46,47,55,56,74,80,88,97,100,215,216,217,219,220,221,222,262,266,267,273,275,314,321,339,349,350,409,431],map_fre:447,map_priv:97,map_refresh:447,map_stupidshar:97,mapnl:56,mar:[304,387,417],marclaport:205,marco:206,margin:330,mari:[27,352],mariadb:[49,163],mario:[151,168,195,230],mark:[33,38,56,60,75,79,97,136,140,262,266,267,274,286,292,296,300,304,371,377,406,443],markdeliv:97,marker:267,market:339,markup:349,marri:19,marti:[173,175,178,180,181,182,183,184,185,186,187,188],martin:[99,136,189,300,349,427,431,443],marysmith:354,mask:76,mass:[74,275,292,385],massag:275,massiv:[44,178,183,184,185,186,187,188],masssievec:[300,351,407,408,447],master:[1,2,6,7,10,11,18,36,48,53,61,71,72,74,76,77,87,95,98,99,100,108,122,137,139,141,152,153,154,158,160,162,164,174,175,178,179,180,181,182,183,184,185,186,187,188,203,207,219,220,221,222,234,248,258,263,265,266,267,285,286,289,292,307,308,314,324,333,334,348,349,351,353,354,356,357,358,359,360,368,373,378,379,380,381,383,384,392,393,394,395,396,398,409,410,411,413,414,415,432,441,445,447],master_bind_errors_fat:[219,220,221,222,349],master_machin:64,master_start_tim:64,master_uuid:64,match:[6,18,41,44,45,47,49,51,52,55,56,58,63,74,76,87,91,95,97,99,102,139,152,156,158,197,206,227,233,245,262,266,267,273,275,280,290,295,300,311,317,349,355,357,363,365,366,373,374,382,389,402,417],matchmim:226,materi:81,math:51,matt:[439,443],matter:[0,11,47,58,59,80,105,110,147,154,175,338,349,443],matthew:[196,232,244],matthia:262,matur:90,matuska:189,matveev:443,max:[160,266,349,403,443],max_user_flag:58,maxcallsinrequest:349,maxcatenateitem:349,maxchild:[87,98,341,348,379,381,383,384,392,395,396,398,409,413,414],maxconcurrentrequest:349,maxconcurrentupload:349,maxdelayedsend:349,maxdomnam:229,maxfd:[99,348],maxforkr:348,maxheaderlin:349,maximum:[7,15,28,74,98,160,178,180,181,182,183,184,185,186,187,188,235,236,238,239,240,241,242,267,275,297,330,348,349,353,356,378,379,381,383,384,393,394,395,396,398,409,420,421,423,424,426,428,429,430,447],maxlogins_per_host:[160,166,193,349],maxlogins_per_us:[160,166,193,349],maxlognam:229,maxmessag:[27,161],maxmessages:[262,349],maxobjectsinget:349,maxobjectsinset:349,maxquot:[107,262,349],maxsizeattachmentsperemail:349,maxsizeblobset:349,maxsizerequest:349,maxsizeupload:349,maxssf:[374,420,421,423,424,426,428,429,430],maxword:[107,262,349],mayadditem:66,mayadmin:66,mayb:[0,49,55,58,72,74,191,219,220,221,222,235,236,238,239,240,241,242,251,252,253,254,255,256,261,262,276,309,369,411,448],maycreatechild:66,maydelet:66,mayreaditem:66,mayremoveitem:66,mayrenam:66,maysetkeyword:66,maysetseen:66,maysubmit:66,mbexamin:[99,106,205,206,262,266,351,417,447],mbname:74,mbox:[74,352,365],mboxcfg:[300,374],mboxconfig:[161,368],mboxev:[178,179,180,181,182,183,184,185,186,187,188,199],mboxkei:[4,280,447],mboxkey_db:[160,349],mboxlist:[44,45,97,100,146,365,403],mboxlist_:47,mboxlist_create_partit:74,mboxlist_db:[160,243,349],mboxlist_db_path:[280,349],mboxlist_renamemailbox:74,mboxlock:59,mboxmetadata:349,mboxnam:[46,47,59,74,80,193,194,200,275,363,406],mboxname_lock:[10,59],mboxname_lockpath:[10,96,267,280,349],mboxname_releas:59,mboxpattern1:373,mboxpattern:373,mboxtyp:74,mboxutil:172,mbpath:[97,98,100,114,140,156,215,216,217,219,220,221,222,251,252,253,254,255,256,266,351,447],mbtool:[351,447],mbtype:[277,349],mbtype_delet:172,mbyte:[52,382],mcmurtri:[154,439],mcyru:374,md5:[5,18,41,49,93,99,132,155,349,374,420,421,423,424,426,428,429,430],mda:[26,267],mdn:[90,97,349,431],mean:[3,6,11,19,28,35,36,40,41,44,45,51,52,53,55,58,59,69,71,72,74,80,96,97,100,125,141,152,160,164,191,198,225,247,251,253,254,255,256,257,267,270,271,273,274,275,278,286,288,292,298,300,309,313,314,330,348,349,353,368,379,381,382,393,395,398,411,413,431,448],meant:[11,196,232,244,330,378],meantim:[72,74,349],meanwhil:[271,275],measli:28,measur:349,mebibyt:349,mech_list:93,mechan:[5,8,14,40,41,49,66,68,88,90,93,97,98,99,136,267,273,281,286,288,290,309,313,349,374,420,421,422,423,424,426,428,429,430,431,435,445],mechlist:156,media:[15,278,283,339,349,431],meet:[71,88,321,435,440,447,449],meeuwen:[163,439,443],mega:74,megabyt:331,melbourn:27,mellon:[81,160,268,435,440,442,443,444],melnikov:[439,443],member:[38,41,97,131,251,252,253,254,255,256,349,410,431,439,447],membership:[49,349,401],memcheck:80,memcpi:447,memmem:129,memmov:97,memori:[9,10,11,30,46,47,49,51,56,75,79,80,96,97,98,99,122,129,130,132,133,143,147,163,164,168,169,195,199,206,223,230,247,339,349,443,447],memrchr:229,memset:[46,80],men:[268,440],meng:[147,150,164,174,202,206],mental:97,mention:[41,56,57,108,136,143,274,298,300,349,432,448],menu:[97,448],merced:40,mercedesknight:40,merchant:81,mere:[11,41,55,330],merg:[0,49,71,88,98,99,100,102,136,174,197,233,245,288,349,411],merit:96,mesh:[309,349],mess:[57,72,74,404],messag:[6,8,11,15,18,19,24,25,27,29,31,33,34,35,36,38,39,46,47,48,49,56,66,68,71,72,78,80,81,82,83,84,86,88,90,91,93,95,97,98,99,100,102,103,104,106,109,113,117,118,119,121,122,137,138,139,140,141,145,146,147,153,154,156,160,161,171,178,179,180,181,182,183,184,185,186,187,188,191,206,215,216,217,219,220,221,222,226,227,229,235,236,238,239,240,241,242,244,251,252,253,254,255,256,262,266,267,268,269,271,273,274,275,277,278,279,280,282,283,286,287,288,289,297,299,300,301,303,307,309,310,311,313,314,315,317,324,326,331,336,339,343,344,349,354,356,363,365,366,367,368,370,372,373,374,376,378,381,382,386,387,388,398,402,403,406,410,411,417,431,433,435,437,440,441,442,443,444,445,447],message_guid_s:58,message_id:74,messageappend:[277,349],messagecont:[27,277,349],messageexpung:192,messagehead:27,messagenew:[277,349],messages:[27,277,349],messeng:[268,440],messi:74,met:[81,440,444],meta:[33,56,58,59,87,142,206,278,311,339,349,388,390,431],metadata:[6,13,58,102,121,173,175,178,180,181,182,183,184,185,186,187,188,251,252,253,254,255,256,266,269,279,300,301,349,367,370,374,388,403,405,431,447],metapartit:[102,278,282,283,310,349],metapartition_fil:[58,102,278,282,283,310,349],method:[5,41,58,59,76,80,87,88,95,97,99,110,129,133,163,226,266,267,268,275,277,286,289,300,349,373,374,376,440,447,448],methodcal:66,methodrespons:66,metric:[284,349,397],meyer:443,mfs:280,mib:[164,203,349],mic:349,michael:[147,150,164,174,202,206],micro:265,microsoft:[349,431],middl:[58,142,265,266,309],midset:[27,277,349],might:[0,7,11,40,44,48,49,52,56,58,72,74,80,100,160,251,252,253,254,255,256,266,286,288,292,302,303,309,313,314,320,321,328,333,340,348,349,359,378,445,448],migrat:[7,15,40,98,122,266,278,279,282,302,368],mileston:439,mill:[98,122],million:[11,46,339,444],milter:417,mime:[27,51,56,58,97,99,102,138,147,206,223,229,251,252,253,254,255,256,321,349,363,373,431,438,447],mimetransport:431,mimick:442,min:[72,100,173,349],mind:[11,58,275,276,303],mini:56,minim:[11,12,40,52,267,286,296],minimum:[18,49,74,267,275,284,292,349,411,420,421,423,424,426,428,429,430],minlevel:410,minor:[58,97,98,99,100,160,178,183,184,185,186,187,188,265,266,387,403],minpol:349,minssf:[374,420,421,423,424,426,428,429,430],minut:[72,97,163,196,232,244,267,292,326,348,349,368,417,445],mirapoint:[286,427],mirror:[11,56,440],misbehav:[235,236,238,239,240,241,242],misc:[99,158,292],miscellan:[100,103,104,105,106,107,114,117,120,121,122,172,245],misconfigur:288,miscount:223,misinterpret:431,mislabel:223,mislead:[44,45,97,227],mismatch:[74,127,161,315,403,447],misnam:97,miss:[58,61,72,74,80,93,96,99,110,137,140,145,147,152,153,154,162,163,164,166,178,185,186,187,188,191,193,199,204,225,226,227,231,232,244,247,251,254,255,256,266,267,287,294,348,349,356,403,445,448],missingok:267,missingstatoverrid:267,mistakenli:105,mit:[41,48,49,66,72,97,395],mithj:74,mitig:[11,313],mitr:[210,211,212,213,214],mix:[27,44,45,55,58,121,199,315,447],mkcalendar:88,mkchartabl:[97,447],mkcol:[88,228,431],mkdir:[51,97,267,340,445],mkf:11,mkgmtime:97,mkimap:[51,267,310,351,447],mknewsgroup:[292,351,447],mkstemp:74,mktime:97,mmap:[55,75,97,142,155,169,339,344],mmap_priv:98,mmape:46,mmddyyyi:352,mnenom:56,mnp:267,mobil:442,mod:[6,387],mod_ssl:49,modal:56,mode:[4,24,25,40,44,45,48,49,51,52,56,58,64,69,72,74,80,99,100,142,150,152,156,160,203,251,253,254,255,256,266,269,275,277,285,288,292,301,307,330,333,348,349,356,368,386,397,401,404,410,411,412,416,447],model:[11,36,52,58,66,90,447],moder:316,modern:[18,46,80,152,268,278,440,444],modif:[6,58,81,97,105,271,286,308,326,410],modifi:[41,44,45,49,56,58,60,80,97,98,105,106,136,152,160,161,238,241,242,267,286,296,308,349,359,368,369,386,410,417,431,444,447],modseq:[6,27,47,57,58,74,82,83,84,86,87,109,119,143,191,277,349,387,417],modsequ:108,modul:[5,18,41,44,45,47,49,66,74,80,87,88,89,91,92,97,98,99,124,131,133,178,181,182,183,184,185,186,187,188,199,202,219,220,221,222,236,238,239,240,241,242,246,262,267,273,284,349,360,374,447],modulo:98,moench:191,moment:[11,51,82,83,84,86,87],mon:[27,304,387,389],mondai:434,monitor:[11,28,98,269,447],month:[6,11,97,330,339,352],monthli:[160,330],moor:[97,343],mora:[99,100,137,443],more:[3,5,6,7,9,11,12,13,22,26,27,28,30,33,34,36,40,41,44,47,49,51,53,55,58,62,65,66,68,71,72,74,75,80,90,95,97,98,99,100,106,107,108,110,114,133,136,139,140,141,143,152,153,160,173,176,178,179,180,181,182,183,184,185,186,187,188,199,202,209,210,211,212,213,214,215,216,217,219,220,221,222,238,241,242,251,252,253,254,255,256,267,271,273,274,275,276,278,279,280,282,286,288,289,290,292,295,297,300,304,309,310,314,319,330,332,333,338,339,343,347,349,350,356,365,373,374,376,378,381,386,389,398,402,403,404,410,411,419,420,421,423,424,426,428,429,430,435,439,442,445],moreov:431,morgan:141,morn:355,mortal:[268,440],most:[4,5,11,12,13,19,36,40,41,44,45,47,55,58,59,64,66,74,80,97,99,109,158,178,180,181,182,183,184,185,186,187,188,192,266,271,275,278,280,282,286,287,288,289,298,319,328,330,343,348,349,355,365,403,411,432,442,444,447,448],mostli:[51,97,98,277,313,349,355,359,381,398,406],motd:[97,326,374,381,398],motiv:447,motto:444,mount:[11,28,59,313,327,339,448],mous:448,move:[10,15,27,36,44,45,47,58,61,65,74,75,88,90,97,98,99,100,133,141,156,162,178,181,182,183,184,185,186,187,188,203,229,251,252,253,254,255,256,262,266,274,281,286,303,314,349,374,411,431,440,444],movi:339,mozilla:349,msa:3,msg:[58,61,64,97,373,381,398],msg_base:56,msg_date:373,msg_from:373,msg_id:373,msg_subject:373,msg_uid:373,msgno:68,mss:448,mta:[3,26,40,41,82,83,84,86,87,286,288,292,293,297,300,314,321,324,335,344,349,435,447],mtbf:[3,11],mtime:[6,97,122],mua:3,much:[6,11,18,44,48,55,56,58,72,74,75,88,97,98,100,136,137,141,143,153,215,216,217,219,220,221,222,251,252,253,254,255,256,271,277,286,293,309,310,324,349,355,359],mult:97,multi:[4,5,6,11,33,40,152,206,288,309,339,349,431,441,447],multiappend:[82,83,84,86,87,98,100,431],multilingu:[56,223],multimailbox:[262,431],multipart:58,multipl:[7,8,11,13,27,28,36,39,41,44,47,55,56,57,58,59,74,97,98,99,102,106,108,138,141,142,145,154,205,251,252,253,254,255,256,279,282,283,285,286,288,290,309,313,314,315,317,320,330,348,349,355,363,374,397,406,411,420,421,423,424,426,428,429,430,442,447],multiplexor:286,multipli:55,multipurpos:431,multithread:314,mung:[71,138,349],munge8bit:[120,349,376],mupdat:[7,36,59,74,87,96,99,109,121,122,141,147,150,151,157,164,168,169,174,175,195,200,202,230,266,267,269,285,294,309,314,344,349,351,359,406,411,424,431,445,447],mupdate_authnam:[288,349],mupdate_config:[102,349],mupdate_connections_max:349,mupdate_password:[288,349],mupdate_port:349,mupdate_realm:[288,349],mupdate_retry_delai:[287,349],mupdate_serv:[288,289,349,392],mupdate_synchron:109,mupdate_usernam:[288,349],mupdate_workers_max:349,mupdate_workers_maxspar:349,mupdate_workers_minspar:349,mupdate_workers_start:349,mupdatepush:[288,359],mupdateslave1:288,mupdatetest:[99,288,289,351,447],murch:[88,89,92],murchison:[79,97,98,99,318,431,439,443],murder:[4,13,19,40,47,51,59,76,87,88,91,93,98,99,100,102,107,109,137,140,141,142,153,154,156,157,158,162,164,192,202,203,269,274,276,309,313,315,324,339,349,359,378,384,396,398,406,431,432,435,437,440,445,446,447],murdermast:287,murrai:246,must:[3,7,11,18,19,31,40,41,44,45,47,49,55,56,58,60,66,68,80,81,87,88,89,91,92,93,95,96,97,100,104,107,109,117,156,160,208,209,210,211,212,213,214,215,216,217,219,220,221,222,243,251,252,253,254,255,256,266,267,274,275,278,280,281,282,283,284,286,288,290,292,296,300,309,314,315,321,332,333,339,342,343,348,349,353,354,359,360,361,363,365,374,379,381,382,383,384,389,392,393,394,395,396,397,398,404,406,409,410,414,416,439,442,445,447],mutf:97,mutual:[11,40],mux:[267,445],mvgroup:292,my_next_bestselling_novel:448,my_script:300,mybox:80,myconsist:365,mydb:44,mydestin:3,mydomain:335,myer:97,myhost:335,mynewsgroup:292,mypassword:267,myright:[66,274,431],mysasl_canon_us:100,myscript:[300,374],myscriptnam:374,mysql:[11,12,49,107,163,199,315,349,447],myuser:335,nag:41,nagl:104,nah:74,naiv:72,name:[2,3,5,6,7,9,11,15,18,19,27,30,31,33,40,41,44,45,47,48,49,51,52,53,55,56,58,59,61,62,63,66,68,69,71,72,74,80,81,87,88,89,92,93,97,98,99,100,106,108,117,121,128,138,140,141,145,156,164,173,175,178,180,181,182,183,184,185,186,187,188,189,193,194,197,199,206,210,211,212,213,214,215,216,217,219,220,221,222,233,245,251,252,253,254,255,256,266,267,268,273,274,275,276,278,279,280,282,288,290,292,300,302,304,309,310,312,313,324,326,332,340,348,349,350,352,355,362,363,365,366,369,370,373,388,390,393,402,403,405,406,410,411,416,419,420,421,422,423,424,426,428,429,430,431,435,440,442,444,445,447,448],namelock:[1,46,47,54,57,58,447],namespac:[3,13,19,27,28,42,82,83,84,86,87,88,89,91,92,96,97,139,160,169,192,193,194,217,219,220,221,222,232,236,238,239,240,241,242,244,266,269,270,279,282,285,286,288,290,301,314,330,349,359,416,431,447],nasti:[59,137,158],nativ:[55,97,286],natur:[11,33,58,276,285,288,290,349],navig:72,ncontent:27,ndate:27,nearest:[19,297,349],nearli:[215,216,217,219,220,221,222,445],necessari:[11,40,41,47,51,55,58,59,71,74,75,77,78,87,97,100,106,127,251,253,254,255,256,266,267,275,286,290,292,309,327,349,390,403,406],necessarili:[5,11,38,74,80,314,374],necessit:442,need:[1,3,4,5,7,11,15,16,17,18,19,26,29,33,34,35,36,37,40,41,44,45,46,47,48,49,51,52,53,55,56,57,58,59,65,66,68,71,72,74,75,76,77,80,83,87,88,89,90,91,92,93,95,96,97,98,99,100,143,145,160,162,164,168,174,178,179,180,181,182,183,184,185,186,187,188,189,192,195,199,203,214,215,216,217,219,220,221,222,235,236,238,239,240,241,242,251,252,253,254,255,256,261,262,266,267,268,271,273,274,275,276,277,279,282,283,286,287,288,289,290,292,295,297,298,300,302,304,307,308,309,312,314,319,320,329,330,333,337,339,340,344,348,349,355,356,360,363,366,369,373,374,376,382,386,390,397,403,406,410,411,419,435,440,441,444,445,447,448],need_sys_errlist:97,neg:[109,349,447,448],neglig:81,negoti:[11,68,82,83,84,86,87,93,98,173,290,349,411,420,421,423,424,426,428,429,430,431],neighbour:275,neither:[11,36,74,106,292,318,406,444],nerenberg:97,nest:[44,45,55,62,91,143,349],net:[18,40,51,80,81,100,109,140,266,314,340,369],netnew:[41,49,58,97,100,178,182,183,184,185,186,187,188,292,349,416,431],netscap:[82,83,84,86,97,286,349],netscapehack:97,netscapeurl:349,network:[7,11,41,46,58,60,75,96,98,100,109,141,267,275,286,294,296,309,312,343,348,349,431,442,445,447],never:[25,40,47,56,57,58,59,80,97,141,154,275,286,288,292,318,341,349,406,410],new_cr:97,new_fnam:74,newer:[6,44,49,80,97,108,113,120,160,191,196,198,223,225,247,257,262,266,335,349,382,406,410],newest:72,newgroup:292,newhost:87,newimap:266,newli:[251,252,253,254,255,256,262,266,307,308,329,349,406,447],newlin:[41,97,315,365,447],newmailboxptr:47,newman:[97,321,443],newmboxlist:359,newmboxnam:74,newmod:56,newnam:[47,374],newnew:[100,292,349,377,393],newpart:47,news2mail:[292,326,374],newsaddhead:349,newsfe:97,newsgroup:[41,97,100,269,349,377,391,393,447],newsmast:[292,349],newspeer:[292,349,393],newspostus:[292,349,393],newsprefix:[292,349,393],newsrc:[280,349],newsrc_db_path:[280,349],newsspool:97,newsstamp:377,next:[6,9,11,18,24,25,28,30,44,45,47,48,49,56,58,60,72,74,76,80,82,83,84,85,86,87,178,179,180,181,182,183,184,185,186,187,188,275,276,280,286,292,296,300,309,348,349,355,397,439],nfrom:27,nghttp2:49,nginx:[7,36,269,285,288,447],nic:[3,40,189,443],nice:[74,141,286,315,411,447],nicknam:[6,189],nicola:443,night:[268,330,440,444],nightli:[51,275],nil:[27,58,164,326,349,417],nist:349,nix:[87,266],nmessag:27,nmime:27,nntp:[13,35,41,49,51,58,87,96,100,114,140,267,269,286,288,294,314,326,349,374,377,393,425,431,445,447],nntpclient:[51,266],nntpd:[87,100,111,112,114,139,140,143,146,157,267,288,292,309,349,351,411,425,447],nntptest:[351,447],nntptimeout:[114,349],no_atomic_renam:[82,83,84,86,87],no_receiv:27,no_relai:27,noarg:55,noauth:349,noauthent:374,nobodi:[0,71,85],nodaemon:410,node:[3,7,11,13,36,313,349,359],noinferior:274,noisi:[51,349],nomin:439,non:[7,12,33,41,44,45,46,47,56,58,59,68,74,80,87,88,93,97,98,110,126,131,139,160,161,164,190,199,200,206,223,226,229,243,269,271,272,273,275,286,301,309,313,339,348,349,355,364,368,403,410,411,431,439,440,444,447],nonconform:321,none:[6,11,15,19,28,88,91,160,224,235,236,238,239,240,241,242,246,249,251,252,253,254,255,256,259,261,262,264,267,277,278,279,280,282,283,284,288,295,297,349,366,374,387,420,421,423,424,426,428,429,430,445],nonexist:[74,97,162,191,201,203,349,388],nono:322,nonsens:147,nonstandard:227,nonzero:[58,68],noop:[139,349,365],nopasswd:51,nor:[36,60,74,106,275,276,292,296,330,344,347,349,368,406,432],norbert:161,norc:374,normal:[6,11,13,38,41,44,45,49,52,64,72,74,80,87,91,97,98,99,266,267,272,278,288,289,292,300,302,318,323,324,330,336,349,352,355,365,374,389,404,442,445],normalis:[190,238,241,242,349],noselect:[97,141,286],nosync:[100,361],notabl:[99,349],notat:[349,352,365,431],note:[1,2,4,7,9,15,19,30,33,40,41,42,44,45,47,49,52,53,55,71,75,80,81,87,88,89,91,92,93,101,123,135,159,177,207,218,234,237,248,250,258,260,263,267,271,272,273,274,275,276,278,279,281,282,286,288,290,292,297,300,307,309,313,321,330,331,335,338,339,343,348,349,352,353,355,356,359,361,364,365,373,378,379,381,383,384,393,394,395,396,398,403,404,406,409,410,416,427,432,435,446,447],notebook:442,notesmailbox:349,notfound:66,noth:[3,11,25,56,57,64,97,147,197,202,233,245,251,253,254,255,256,268,282,286,327,349,406,440],notic:[0,41,44,58,72,74,80,81,97,98,99,100,154,251,252,253,254,255,256,267,341,349,403],notif:[13,87,97,98,99,161,164,169,170,178,180,181,182,183,184,185,186,187,188,216,217,219,220,221,222,228,235,236,238,239,240,241,242,267,277,280,295,343,349,380,417,431,435,437,447],notifempti:267,notifi:[11,27,41,75,87,96,99,100,102,160,267,280,295,300,314,349,373,379,381,383,384,392,394,395,396,398,409,413,414,431],notify_extern:[349,394],notify_unix:98,notifyd:[41,87,99,163,178,180,181,182,183,184,185,186,187,188,267,277,348,349,351,379,381,383,384,392,395,396,398,409,413,414,447],notifysocket:[96,267,280,295,349,394],notl:[173,374],notspam:349,notwithstand:[3,11,13],nov:387,now:[5,9,11,28,30,33,41,44,46,47,48,53,55,56,58,61,72,74,75,80,81,82,83,84,86,87,96,97,98,99,100,102,104,105,106,117,122,125,131,132,133,134,136,145,146,147,149,150,151,152,155,156,158,160,161,162,163,164,165,166,167,168,174,175,176,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,202,203,204,205,206,208,209,210,211,212,213,214,215,216,217,219,220,221,222,223,224,225,226,227,228,230,232,233,235,236,238,239,240,241,242,244,245,246,247,251,252,253,254,255,256,257,262,266,267,274,277,286,288,300,309,311,321,339,349,397,410,442,445],nreceiv:27,nss:[41,273],nss_ldap:[41,273],nsubject:27,nthi:27,ntht:431,ntlm:[93,431],nto:27,ntoz:278,nuanc:304,nul:[56,75],num:[28,41,58,82,83,84,86,87,199,299,374,402,420,421,423,424,426,428,429,430],num_record:47,number:[4,6,7,9,11,15,25,27,30,34,41,47,48,52,55,56,58,62,64,75,76,80,96,97,98,99,100,102,110,154,156,157,160,174,178,180,181,182,183,184,185,186,187,188,198,223,225,229,247,257,265,267,268,275,276,286,288,290,292,297,299,302,308,309,314,319,324,326,337,339,341,348,349,352,353,365,368,374,378,379,381,383,384,386,387,393,394,395,396,398,406,409,410,418,420,421,423,424,426,428,429,430,439,440],numer:[56,125,136,178,180,181,182,183,184,185,186,187,188,326,348,447],numrecord:58,nurtur:11,nvfsbc:74,nwdiag:52,nye:443,nyota:33,o_dsync:99,o_rdwr:55,obata:[139,140,223,228],obei:[46,97,110,145,160,349],obfusc:5,object:[3,11,41,44,47,49,58,61,76,80,88,178,180,181,182,183,184,185,186,187,188,235,236,238,239,240,241,242,251,252,253,254,255,256,262,299,349,406,411,431,439,441],object_storage_:[178,180,181,182,183,184,185,186,187,188],object_storage_dummy_spool:349,object_storage_en:349,objectclass:349,objectstor:[178,180,181,182,183,184,185,186,187,188],obligatori:412,obscur:[71,97],observ:[9,30,276],obsolet:[58,156,274,349,431],obstacl:431,obtain:[3,5,40,41,47,66,74,91,97,251,253,254,255,256,267,274,275,290,305,330,349,355,422],obviou:[286,314],obvious:[12,74,275,330,349],occas:59,occasion:[55,58,61,97,315,349,447],occur:[8,11,19,27,44,45,56,74,75,80,97,100,125,152,153,160,199,207,209,210,211,212,213,214,215,216,217,234,235,236,238,239,240,241,242,248,249,258,259,263,264,265,275,277,286,287,290,297,300,309,332,341,349,355,368,388,406,410],occurr:349,oceana:[97,98,99],oct:[27,387],octal:267,octet:[58,206,290,374],octob:65,odd:[265,403],off:[11,40,41,48,56,58,62,72,74,80,87,88,97,98,99,100,160,173,178,182,183,184,185,186,187,188,200,216,217,219,220,221,222,251,252,253,254,255,256,266,272,275,304,307,309,313,328,349,362,389,420,421,422,423,424,426,428,429,430,431,443,448],offer:[10,11,18,156,160,285,288,330,349,410],offic:[81,96,267,268,294,431,442,445],offici:[90,433,445],offlin:11,offset:[55,56,58,74,75,349],offset_header_crc:58,offsit:309,offsite_shutdown:309,offsite_shutdown_fil:309,offsite_sync_host:309,offsite_sync_port:309,offsite_sync_repeat_interv:309,offsitesync:309,often:[5,7,11,26,36,41,44,55,58,72,251,252,253,254,255,256,267,271,292,295,312,330,341,420,421,423,424,426,428,429,430,442],ogri:[227,236,238,239,240,241,242,243],ohio:[98,342],okai:[61,233,245,275],old:[11,25,44,46,47,48,49,51,52,55,57,58,72,74,77,80,81,96,97,109,134,139,142,154,160,162,164,191,206,251,252,253,254,255,256,266,267,274,297,300,349,352,357,361,374,404,416],old_config_virtdomain:80,older:[2,6,15,48,51,66,72,74,75,80,81,82,83,86,87,97,108,110,141,147,152,160,205,266,267,278,304,309,349,356,359,362,368,382,400,410,411,435,441,447],oldest:[72,147,262,266],oldimap:266,oldmailbox:47,oldmailboxid:27,oldmboxnam:74,oldnam:374,oldschool:349,olduidset:27,olivi:139,olson:[88,360],omit:[41,55,160,273,290,349,365,406],on_backend:9,onc:[3,9,11,27,30,40,44,45,48,53,55,56,58,59,66,71,72,74,87,90,95,97,98,100,102,104,136,137,238,241,242,251,253,254,255,256,267,275,276,283,286,288,289,292,307,309,314,315,355,374,397,403,410,411,420,421,423,424,426,428,429,430,439,445,447],ondrej:[113,158],one:[3,5,6,7,9,11,13,15,18,19,28,30,31,33,36,38,39,40,41,44,45,48,49,52,55,56,58,59,62,65,68,69,71,72,74,80,84,87,97,98,99,100,102,108,137,152,154,158,160,191,196,227,232,235,236,238,239,240,241,242,244,251,252,253,254,255,256,266,267,268,271,273,276,278,279,281,282,286,288,289,290,292,298,300,304,309,313,314,317,318,320,321,330,332,338,339,340,344,348,349,350,352,353,364,365,368,370,373,374,376,378,382,385,389,392,402,403,406,410,411,416,417,420,421,422,423,424,426,428,429,430,445,447],ones:[4,57,72,80,98,173,266,300,339,406],ongo:15,onli:[3,5,6,7,9,10,11,12,18,19,27,30,33,36,39,40,41,44,45,46,47,52,53,55,56,58,59,62,63,68,71,72,74,76,80,84,87,88,91,93,95,97,98,99,100,102,104,114,136,138,139,140,152,155,156,158,160,161,178,180,181,182,183,184,185,186,187,188,191,199,200,207,208,209,210,211,212,213,214,215,216,217,223,226,234,235,236,238,241,242,243,248,249,251,252,253,254,255,256,258,259,262,263,264,265,266,267,271,274,275,276,277,286,287,288,290,292,296,302,304,307,309,310,313,314,317,319,328,330,332,339,344,348,349,354,355,356,357,359,366,368,369,373,374,378,382,383,384,387,388,389,391,392,393,394,396,397,402,403,406,410,411,412,417,420,421,423,424,426,428,429,430,431,433,441,447,448],onlin:[11,28,48,71,80,275,286,300],onto:[7,15,60,79,97,296,414,422],onward:15,opaqu:[44,45,60,296],opcod:75,open:[11,13,36,41,44,45,49,51,55,57,58,59,71,74,80,97,98,99,109,136,139,152,155,160,178,180,181,182,183,184,185,186,187,188,266,267,277,286,290,313,330,339,348,349,355,420,421,423,424,426,428,429,430,435,443,447],openbsd:[142,155,227],openio:[178,180,181,182,183,184,185,186,187,188,349],openio_:[178,180,181,182,183,184,185,186,187,188],openio_account:349,openio_autocr:349,openio_namespac:349,openio_proxy_timeout:349,openio_rawx_timeout:349,openio_verbos:349,openldap:[49,100],openssl:[18,49,97,99,115,147,160,176,178,181,182,183,184,185,186,187,188,251,254,255,256,288,315,318,349,447],opensus:[2,12,81,447],oper:[3,6,8,11,15,18,19,33,41,42,44,47,49,52,55,58,59,60,70,74,80,82,83,84,86,87,88,99,100,104,160,199,266,269,274,275,278,287,288,290,292,296,307,311,314,330,339,341,344,348,349,355,356,357,358,359,360,373,390,402,403,406,410,411,412,417,420,421,423,424,426,428,429,430,431,435,442,447],opera:160,opinion:11,opportun:[11,28,313,330,349],oppos:[3,58,97,160,274,303,330,374],opposit:[44,45,403],opt:[267,318,323],opt_mailbox_delet:47,optim:[7,11,41,56,97,110,286,313,336,442],optimis:[74,178,180,181,182,183,184,185,186,187,188,229,235,236,238,239,240,241,242,245,349],option:[4,6,7,9,10,11,15,18,19,22,27,30,33,36,40,41,44,45,47,48,51,52,56,58,72,74,75,80,87,89,91,92,93,96,97,98,99,100,102,104,106,107,108,109,110,114,120,121,122,126,129,130,132,137,138,139,140,145,147,152,155,156,158,161,162,163,164,166,174,176,178,179,180,181,182,183,184,185,186,187,188,190,193,199,200,208,209,210,211,212,213,214,215,216,217,219,220,221,222,223,226,227,229,233,235,236,238,239,240,241,242,243,245,246,251,252,253,254,255,256,261,262,266,269,272,275,276,278,279,281,282,283,286,288,290,292,297,300,304,308,309,310,313,314,319,321,323,326,330,333,335,336,337,341,342,348,349,374,418,432,435,445,446,447],order:[3,9,12,19,30,40,41,42,44,45,49,52,55,58,74,75,88,89,92,93,97,100,107,109,146,156,160,164,193,202,231,262,267,268,271,274,286,288,292,312,314,331,333,348,349,364,403,406,418,440,447],orderedsubject:[82,83,84,86,87],ordinari:74,org:[3,5,11,18,19,27,28,33,36,38,40,48,51,55,65,69,70,72,88,99,100,137,141,210,211,212,213,214,265,266,267,300,304,306,309,310,312,349,350,354,358,365,369,391,402,417,435],organ:[6,7,11,19,24,27,55,88,163,233,245,278,283,349,442,443,447],organis:[251,252,253,254,255,256,266,300],orient:[11,47],orig:77,origin:[3,5,11,44,53,74,75,77,81,99,130,158,251,252,253,254,255,256,274,302,304,309,321,330,349,355,406,440,442,443],original_repositori:53,ornl:99,orst:141,oshrin:[439,443],osi:11,ostens:74,other:[3,5,7,9,11,12,13,18,19,22,25,30,31,35,36,38,44,45,46,47,48,51,52,53,55,56,57,58,59,61,62,63,65,66,69,72,74,80,81,87,88,93,96,97,98,99,100,109,110,125,132,139,141,142,152,154,155,156,158,160,172,178,179,180,181,182,183,184,185,186,187,188,190,191,196,205,232,235,236,238,239,240,241,242,244,251,252,253,254,255,256,267,268,270,271,273,274,276,277,278,280,282,286,288,290,292,293,300,301,304,307,312,313,319,320,329,330,333,336,337,339,340,341,343,344,348,349,350,352,355,364,369,374,403,406,410,411,439,442,445,447],other_funct:55,othercond:55,otherwis:[5,11,19,27,44,49,56,58,74,75,76,80,84,88,89,92,93,138,160,166,193,267,274,275,276,286,288,290,292,297,304,319,321,330,332,337,349,352,353,354,355,356,357,358,359,360,361,363,364,365,366,367,368,369,370,371,372,373,376,377,378,379,380,381,382,383,384,386,387,388,389,392,393,394,395,396,397,398,399,400,402,403,405,406,409,410,411,412,413,414,415,416,417,448],otp:[420,421,423,424,426,428,429,430],ouch:[44,141],our:[3,49,52,66,70,71,74,76,80,81,84,94,99,156,160,265,266,267,279,282,283,286,290,313,319,339,359,432,435],ournew:292,ourselv:[68,71,74],out:[0,7,11,16,17,25,26,28,29,30,33,34,36,37,40,41,46,51,52,53,55,56,58,59,68,70,71,72,74,75,77,80,81,94,97,99,100,109,122,156,160,161,169,178,185,186,187,188,203,204,220,221,222,226,251,253,254,255,256,266,267,268,274,275,276,277,286,288,290,292,310,314,339,342,349,352,353,354,355,356,357,358,359,360,361,363,364,365,366,367,368,369,370,371,372,373,375,376,377,378,379,380,381,382,383,384,386,387,388,389,392,393,394,395,396,397,398,399,400,401,402,403,405,406,409,410,411,412,413,414,415,416,417,418,420,421,423,424,426,428,429,430,440,448],outag:[74,289,313],outbound:314,outbox:[20,88,349,403,447],outbox_sendlat:[217,219,220,221,222],outbuf:56,outcom:41,outer:99,outgo:[226,292,349],outindex:56,outlen:56,outlin:[0,5,11,27,266,289],outlook:[102,161,288,349],output:[18,41,44,52,56,58,60,68,72,74,75,80,88,97,99,100,114,127,130,131,142,173,233,243,245,262,266,267,296,302,304,307,326,349,352,353,354,355,356,358,359,360,361,362,363,368,370,373,374,375,379,381,382,383,384,387,388,392,393,395,396,398,399,402,405,408,409,414,417,418,420,421,422,423,424,426,428,429,430,448],outputfil:407,outsid:[3,27,40,41,56,113,128,146,171,277,292,318,319],outstand:99,over:[5,7,11,36,44,45,49,58,59,62,66,74,75,76,88,91,93,96,97,100,109,145,147,154,156,172,202,216,217,219,220,221,222,223,251,252,253,254,255,256,262,267,288,292,294,297,309,313,314,326,330,339,349,355,376,379,381,382,389,393,395,398,403,411,420,421,423,424,426,428,429,430,431,440,442,444,445,447],overal:[11,58,288,309,349,439,447],overcom:286,overflow:[99,100,109,111,115,138,139,147,174,189,200,349],overhead:[6,11,41,88,299,300,341],overlai:75,overload:[289,324,368],overlook:448,overquota:223,overrid:[56,58,74,97,100,133,147,236,238,239,240,241,242,266,292,309,326,349,379,406,411],overridden:[44,65,76,251,252,253,254,255,256,280,349,373,374,404],overrun:[80,100,165,190],overshadow:442,overtur:66,overview:[1,4,41,42,140,269,285,296,435,440,447],overwrit:[44,68,77,99,108,200],overwritten:[58,267,422],owe:98,own:[1,3,7,11,27,31,33,38,40,41,44,45,51,52,53,74,77,88,97,174,192,267,272,273,277,278,282,288,289,292,299,314,349,352,374,384,396,432,442,444,445,447,448],owner:[27,33,44,57,58,76,88,97,267,349,352,373,374,406,447],ownership:[18,51,71,267,328],p615:339,p630:339,pace:276,packag:[2,19,49,51,52,65,82,83,84,86,87,88,90,93,266,267,280,288,292,308,309,313,319,432,433,435,447,448],packet:[268,341,440],pad:[75,349],page:[1,18,19,48,49,53,66,72,87,97,98,156,178,181,182,183,184,185,186,187,188,223,233,245,274,275,278,283,287,292,294,309,319,338,349,435,436,447],pai:96,pair:[6,11,61,216,217,219,220,221,222,281,314,317,349,356,391],pairwis:51,palauzov:[139,141,267],pam:[5,41,447],pam_deni:18,pam_ldap:[41,273],pam_nologin:18,pangolin:87,paragraph:[74,275,348,448],parallel:[11,324],param:[66,225,247,349],paramet:[9,11,18,27,30,44,45,46,47,49,51,55,56,62,75,76,88,93,97,100,161,169,190,228,229,266,277,288,290,328,330,349,410,427,431],paranoia:156,paranoid:98,parcel:373,pardon:3,parent:[9,10,30,41,74,142,166,193,229,251,252,253,254,255,256,266,272,274,276,286,288,292,295,349,374],parent_id:74,parenthes:[55,62,374],parentid:66,pariti:11,parlanc:80,pars:[47,62,68,74,75,97,98,99,102,104,105,131,134,138,145,153,156,158,160,189,198,203,225,236,238,239,240,241,242,247,257,262,275,290,292,300,349,356,403],parser:[75,97,349,359],part1:[9,30,276,278,282,283,349],part2:[9,30,276],part3:[9,30],part4:[9,30],part:[3,5,11,13,19,27,33,40,41,44,45,47,52,56,58,63,71,74,75,80,85,86,93,97,98,99,100,105,145,166,178,183,184,185,186,187,188,193,223,251,252,253,254,255,256,273,276,286,287,288,292,309,330,340,349,357,363,374,391,406,410,431,440,442,448],parta:[9,30],partb:[9,30],parti:[5,19,27,70,110,277,349],partial:[74,97,98,100,178,183,184,185,186,187,188,206,262,309,344,349,354,368,410,431],particip:[7,11,88,175,243,285,447],particular:[5,7,9,11,12,28,30,41,53,58,74,85,97,98,99,100,109,178,180,181,182,183,184,185,186,187,188,236,238,239,240,241,242,267,276,286,288,290,297,299,304,309,314,339,349,355,356,362,374,410,439,445,448],particularli:[11,44],partit:[3,4,6,11,13,15,40,59,62,65,97,99,102,109,117,122,141,156,157,158,178,179,180,181,182,183,184,185,186,187,188,190,200,203,206,228,262,267,269,276,281,286,288,290,292,301,309,314,326,338,339,349,353,354,359,367,368,374,382,388,390,391,403,406,411,435,437,441,445,447],partition_mod:9,partition_mode_exclud:[9,30],partition_mode_soft_usage_limit:[9,30],partition_mode_usage_reinit:9,partition_select_exclud:[30,288,349],partition_select_mod:[9,30,276,288,349],partition_select_soft_usage_limit:[30,276,288,349],partition_select_usage_reinit:[30,276,288,349],partli:11,partlist:74,partlist_local_init:74,partlist_local_select:74,partner:[11,61],partstat:76,pass:[40,41,44,45,46,47,48,49,55,56,59,72,74,75,79,80,93,95,97,98,140,154,267,268,275,286,309,348,349,354,374,385,410,420,421,423,424,426,428,429,430,439,440],passiv:11,passphras:5,passwd:[41,82,83,84,86,87,97,267,273,420,421,423,424,426,428,429,430,445],password:[5,18,28,41,53,66,82,83,84,86,87,93,97,98,140,156,229,267,288,292,300,340,349,377,381,398,420,421,423,424,426,427,428,429,430,431,445],password_column:18,password_crypt:18,passwordless:51,past:[6,44,46,48,52,58,72,147,158,267,290,349,352,356,438,447],pat:56,patch:[0,53,65,66,79,88,97,98,99,102,158,178,179,180,181,182,183,184,185,186,187,188,201,227,229,266,321,345,432,439,447],path:[3,9,11,19,27,30,49,51,57,63,65,72,74,80,88,97,127,147,149,156,158,161,164,175,178,179,180,181,182,183,184,185,186,187,188,192,200,203,226,227,266,267,275,278,280,283,284,286,292,295,297,304,314,318,340,343,348,349,355,370,373,374,376,385,387,388,394,403,448],pathnam:[15,99,267,278,279,280,282,283,349,445],patholog:[161,275],pattern:[6,11,45,52,91,97,161,175,275,313,336,349,365,366,374,377,382,391,447],paul:[154,223,286],paus:[349,355,410],pavel:[189,203,206],payload:[3,11,36,313,349],pcre:[49,104,154,158,192,200,267],pdf:160,peek:[33,46],peer:[100,292,349,377],peernam:377,pem:[267,349,442],penalti:11,pend:[85,137,290,439],peopl:[33,55,71,72,80,97,98,289,319,344,418],per:[6,11,40,41,44,45,56,57,58,59,74,88,89,90,93,97,98,102,104,117,122,137,152,160,196,208,219,221,222,223,231,232,236,238,239,240,241,242,243,244,251,252,253,254,255,256,266,269,274,275,278,281,286,288,290,292,300,309,314,326,348,349,352,355,365,370,373,374,386,397,406,439,447],perceiv:349,percent:[9,30,76,276,288,297,349],percentag:[9,28,30,97,276,355],percentil:30,perdit:[285,286,288],perfectli:[0,11,44],perform:[4,6,7,9,30,33,36,41,44,45,47,49,52,55,58,68,74,75,81,88,93,96,97,98,99,100,102,104,114,136,146,160,176,215,216,217,219,220,221,222,223,226,235,236,238,239,240,241,242,266,267,271,274,276,286,288,289,290,292,308,309,310,313,314,324,327,331,348,349,354,355,356,357,358,359,360,368,373,374,382,386,389,394,402,403,406,410,411,435,446,447],perhap:[11,24,33,41,273,296,313],perimet:[7,36],period:[11,41,44,74,88,95,96,98,178,179,180,181,182,183,184,185,186,187,188,267,275,276,290,292,314,326,330,339,348,349,355,357,368,373,386,410,417,445],perl5lib:267,perl:[49,51,52,66,74,97,98,99,113,139,154,156,158,178,181,182,183,184,185,186,187,188,199,202,226,246,266,267,304,374,378,390],perman:[9,30,41,97,297,304,307,330,349,431,442],permiss:[5,7,19,41,48,55,68,72,81,91,99,200,267,274,286,292,300,329,333,349,374,445,448],permit:[7,13,18,33,41,44,57,81,97,202,274,288,349,393,442],persia:51,persian:[51,268,440,444],persist:[59,97,267,286,349],person:[1,5,13,19,27,28,55,88,89,91,92,97,98,160,270,277,286,300,326,349,352,374,442],perspect:[33,330],pertain:96,pertin:297,peski:98,petabyt:11,pf_inet:378,pghmcfc:417,pgp:292,pgsql:[12,49,349],phabric:[178,181,182,183,184,185,186,187,188],phase:[58,75,440],philip:[136,141],philipp:[136,141,163,190],phish:373,photo:[39,92,448],php:266,phpdomain:52,phrase:[48,72,420,421,423,424,426,428,429,430,448],phx2:417,physic:[3,11,278,283,349],pick:[38,48,72,74,97,267,349,411,445],pictur:[11,267,445],pid:[27,64,309,314,328,340,349,386,420,421,423,424,426,428,429,430],pidfil:[99,386,420,421,423,424,426,428,429,430],piec:[19,44,49,71,80,97,109,290,448],pile:[137,138],pine:[97,106,288],ping:286,pip:49,pipe:[74,133,323,374,420,421,423,424,426,428,429,430],pipelin:[121,267,431],pipermail:65,pittsburgh:81,pkg:[49,164,266],pkg_config_path:65,pkgconfig:[49,65,199],pki:[267,445],place:[7,19,25,31,44,46,47,52,55,58,72,75,80,87,96,99,102,228,267,274,276,280,282,286,290,292,300,304,318,339,348,349,359,406,410,412,440,445,447],placehold:448,placement:286,plai:[55,61,315,330,349,447],plain:[5,27,41,49,58,82,83,84,86,87,97,120,156,173,225,244,247,267,289,300,338,349,355,374,417,420,421,423,424,426,428,429,430,431],plaintext:[93,97,98,156,267,286,292,349,365,447],plaintextloginalert:[100,114,349],plaintextloginpaus:[97,174,349],plan:[4,7,11,18,44,47,52,53,71,87,267,268,276,286,339,440,447],plane:56,platform:[4,58,80,96,100,115,142,147,160,163,174,199,223,228,229,266,276,349,432,435,442,446,447],pleas:[3,7,11,12,16,17,24,25,26,29,34,36,37,41,48,49,72,81,82,83,84,85,86,87,94,96,160,164,165,166,190,191,192,193,203,205,206,209,210,211,212,213,214,215,216,217,219,220,221,222,251,254,255,256,266,267,268,271,276,278,279,280,282,286,290,294,300,309,310,316,321,328,338,352,365,410,416,422,432],pleasur:79,plu:[11,74,97,100,160,267,271,275,290,330,349,410],plug:[129,130,132,133,435],plugin:[93,97],pmr:339,png:49,pod:[49,52,178,181,182,183,184,185,186,187,188],point:[3,4,11,19,44,45,46,53,56,72,74,75,80,84,88,89,91,96,97,99,207,209,210,211,212,213,214,215,216,217,234,235,236,248,249,258,259,263,264,265,267,275,280,286,288,290,309,344,349,362,368,406,411,447],pointer:[44,45,46,55,56,60,68,75,79,97,100,157,228,296,349,431],poitra:443,poke:[74,275],pokorra:205,polici:[3,56,84,286,349],poll:[76,251,252,253,254,255,256,349],pollin:[42,447],pollstatu:76,pom:[49,52,178,181,182,183,184,185,186,187,188],poni:444,poodl:431,pool:[55,99,278,279,282,288],poor:[74,410],poorli:[196,232,244,288],pop3:[4,13,18,19,58,63,87,93,96,97,99,100,102,114,145,153,178,180,181,182,183,184,185,186,187,188,267,268,288,294,312,314,315,326,340,349,365,374,387,395,413,414,426,431,435,437,442,445,447],pop3_last_login:74,pop3_new_uidl:[58,108,387],pop3_show_aft:74,pop3d:[87,97,98,100,110,174,227,267,288,309,314,315,348,349,351,386,396,411,413,414,426,447],pop3newuidl:326,pop3proxyd:[87,99,100,351,447],pop3showaft:374,pop3test:[99,351,447],pop:[8,18,35,40,41,58,61,63,64,110,267,268,289,312,341,349,395,426,431,442],popd:143,popexpiretim:349,popminpol:[97,166,193,267,349],poppollpad:349,popsubfold:[102,349],poptimeout:[58,326,349],popul:[88,287,359],popular:[3,11,145,442],popuseacl:[100,349],popuseimapflag:[110,349],port:[11,18,68,74,96,97,98,102,219,220,221,222,269,275,292,295,300,301,309,314,348,349,374,377,386,406,420,421,422,423,424,426,427,428,429,430,432,435,447],portabl:[44,75,97,98,99,100,139,140,358],portaddr:378,portion:[275,349,420,421,423,424,426,428,429,430,442],pose:33,posit:[11,56,58,74,348,349],posix:[10,35,41,192,273],possibl:[3,6,11,18,25,41,44,45,52,55,56,57,58,59,63,68,74,80,88,95,97,98,99,100,108,251,254,255,256,266,267,273,275,277,278,286,287,288,292,304,307,320,321,330,339,342,348,349,374,403,410,420,421,423,424,426,428,429,430,432,439,445,448],post:[26,28,41,66,88,96,100,131,133,160,267,268,273,274,294,348,349,374,393,410,431,442,445,447],postabl:409,postal:[268,440,444],postconf:267,postfix:[3,41,87,286,292,300,324,349,445,447],postfold:335,postgresql:[12,18,49,107],postman:288,postmast:[33,349],postpon:98,postrot:267,postus:[63,274,349],potenti:[5,11,74,97,99,107,109,154,266,271,275,286,308,349,448],power4:339,power:[11,13,14,41,58,65,313,349,433],ppc:191,practic:[11,36,41,44,45,55,74,267,275,313],prade:[193,206],prancer_sync_host:369,pre5:181,pre:[42,44,49,56,58,65,74,81,99,156,176,178,181,182,183,184,185,186,187,188,191,267,274,275,292,309,321,342,348,349,368,373,445,447],preauth:105,preauthent:41,preauthor:[383,384,396],preced:[40,56,58,74,267,326,349],precis:[11,38,44,87,271],preclud:349,precomput:[75,196,232,244],predat:266,predecessor:349,predefin:[2,374,435,447],predict:[11,80,275,339],preemptiv:74,prefer:[3,6,28,41,49,51,71,87,95,96,97,131,146,160,267,292,300,319,330,337,338,349,373,403,431,448],prefix:[24,33,41,49,51,58,68,72,74,80,88,89,92,139,142,145,147,160,169,178,179,180,181,182,183,184,185,186,187,188,219,220,221,222,233,245,267,273,275,290,304,309,330,349,355,365,368,374,393,402,403,406,410],prefork:[74,87,141,267,275,288,292,300,302,348,353,378,379,381,383,384,392,394,395,396,398,409,413,414,445],pregener:[178,181,182,183,184,185,186,187,188],preliminari:[98,99,176,178,180,181,182,183,184,185,186,187,188,251,254,255,256],prematur:[68,349],prepar:[44,51,88,89,140,141,435,446,447],prepend:[283,349,393],prerequisit:[42,447],prese:5,presenc:[80,95,267,307,431],present:[33,56,58,69,74,91,96,133,153,154,224,246,251,252,253,254,255,256,267,271,280,286,294,309,347,349,359,368,374,376,411,420,421,423,424,426,428,429,430,445,448],preserv:[11,24,41,52,74,98,104,121,164,199,274,275,307,335,349,355,403,406],press:[312,448],presum:[56,74,287,313],pretend:[274,349],pretti:[44,45,74,79,271,277,286,339,364],prevent:[3,11,36,40,64,74,84,88,89,92,96,97,99,105,122,203,217,219,220,221,222,267,286,313,318,328,343,349,357,412],preview:[52,251,252,253,254,255,256,349,431],previou:[11,56,58,72,74,97,147,192,266,267,279,284,286,304,369,397,442],previous:[9,30,56,60,74,96,97,99,160,174,178,182,183,184,185,186,187,188,191,251,252,253,254,255,256,266,276,296,349,368,406],prevost:97,price:11,primari:[6,11,19,40,53,206,267,268,286,314,315,343,349,447,448],primarili:[6,11,276,349,386,442],prime256:349,prime256v1:[146,160,349],primit:59,princip:[41,267,273,300,349,350,374,411,412,431],principl:[9,11,80,276],prindevil:[136,141],print:[11,68,80,97,140,145,147,154,162,304,359,364,369,371,373,378,382,391,402,404,418,420,421,422,423,424,426,428,429,430],printabl:[27,97],printf:[68,97],prior:[4,7,9,10,30,74,81,88,93,97,160,191,200,251,254,255,256,266,267,274,295,330,348,349,373,406,439,440,444],priorit:11,prioriti:[11,74,349],priv:349,privaci:[5,97,262,266,353,379,381,393,395,398,413,442],privat:[13,35,161,192,226,267,292,321,349,374,420,421,423,424,426,428,429,430,435,442,445],privileg:[11,18,35,36,41,88,272,286,386,445],pro:289,probabilist:49,probabl:[9,15,18,30,41,47,51,55,58,62,64,72,74,98,102,160,266,275,276,285,288,304,307,327,342,355,374,403,411,445,448],probe:349,problem:[8,28,33,41,49,51,56,71,72,74,80,97,98,99,100,108,109,120,121,122,133,161,203,244,266,267,280,286,288,300,321,322,323,324,335,343,349,373,403,410,435,436,442,447],problemat:[11,75],proc:[10,60,64,68,96,97,153,156,267,280,296,315,328,349,369,447],proc_path:[10,96,157,267,280,349],proce:[75,80,411,439],procedur:[74,97,251,254,255,256,269,310,348,447],proceed:[48,72,286],process:[0,3,5,10,11,12,19,25,35,41,42,44,45,47,56,58,59,61,68,70,72,74,75,77,80,88,96,97,98,99,100,105,110,137,139,140,147,152,160,175,178,179,180,181,182,183,184,185,186,187,188,196,206,219,220,221,222,229,232,235,236,238,239,240,241,242,244,251,252,253,254,255,256,261,262,266,273,275,277,278,280,284,286,288,289,292,308,309,314,315,321,323,324,328,339,348,349,353,355,359,363,369,378,379,381,383,384,386,388,392,393,394,395,396,397,398,403,404,406,409,410,411,419,420,421,423,424,426,427,428,429,430,432,438,445,447],process_attende:447,processimip:[251,252,253,254,255,256],processor:56,procfnam:97,procp_result:[44,45],produc:[41,49,52,56,81,131,173,190,267,275,300,309,349,352,355,359,362,373,374,375,397,406,408],product:[2,11,18,51,81,99,220,221,222,292,328,339,349,432,435,444,447],profession:[0,339],profil:[3,53,431],profit:81,program:[2,41,56,74,80,97,98,99,160,267,277,309,318,320,328,330,333,349,354,355,394,399,400,412,417,419,420,421,422,423,424,425,426,428,429,430,445,447],programoutput:52,progress:[66,85,88,98,160,275,410,427,440],prohibit:[11,344,349],project:[12,50,53,71,80,81,82,83,84,86,87,160,174,268,319,352,435,439,440,441,442,443,444],prometheu:[93,210,211,212,213,214,215,216,217,219,220,221,222,284,349,397],prometheus_en:[284,349,397],prometheus_need_auth:[284,349],prometheus_stats_dir:[284,349],prometheus_update_freq:[284,349,397],promin:[11,330],promot:[74,81,106,313,349],prompt:[41,48,72,97,98,267,328,374,420,421,423,424,426,428,429,430,448],promstatsd:[223,284,349,351,447],prop:128,propag:[286,292,386],proper:[75,76,87,96,267,292,294,297,328,349,445],properli:[18,44,45,56,97,99,104,114,126,155,157,161,163,164,169,192,198,204,225,226,247,257,288,321,349,373,381,394,398],properti:[6,56,76,88,145,198,202,204,225,228,243,247,251,252,253,254,255,256,262,266,275,349,364,431],propfind:[88,131,191,251,252,253,254,255,256,267],propnam:131,proport:292,propos:[56,267,286,439],proppatch:88,proprietari:316,propstat:76,prot:[1,54,55,73,97,269,318,447],prot_addwaitev:[60,79,296],prot_fil:[74,97],prot_fill_cb:74,prot_flush:99,prot_printf:97,prot_removewaitev:[60,79,296],prot_select:296,prot_waitev:[60,296],prot_waiteventcallback_t:[60,296],protallow:68,protect:[11,18,41,57,68,74,82,83,84,86,87,93,97,98,115,147,174,195,227,235,236,238,239,240,241,242,286,349,353,359,379,381,393,395,398,399,413,420,421,423,424,426,428,429,430],proto:[74,87,348,378,379,381,383,384,392,394,395,396,398,409,413,414],protocol:[1,4,13,19,22,33,35,36,54,59,60,69,74,87,90,93,96,97,98,99,104,105,141,146,160,174,203,217,219,220,221,222,266,268,275,286,288,290,294,295,296,298,300,309,314,348,349,353,363,376,378,379,381,392,393,395,398,411,420,421,423,424,426,427,428,429,430,431,435,442,446,447],prototyp:97,protstream:[60,296],prove:[41,273],provid:[3,5,6,7,8,10,11,12,13,14,15,19,22,27,33,40,41,44,45,46,48,49,53,55,58,65,70,71,72,74,80,81,84,88,90,93,96,97,99,100,136,160,220,221,222,227,235,236,238,239,240,241,242,262,266,267,271,273,276,277,281,285,286,288,292,294,295,297,309,314,319,342,348,349,355,363,364,365,366,369,373,374,376,378,380,385,397,401,402,404,406,410,411,413,431,432,440,442,443,445],provis:[11,20,66,132,275,349],provision:[13,349],provok:349,prox:[100,114],proxi:[4,11,36,61,66,87,97,99,100,102,107,109,114,120,121,122,130,132,133,142,157,162,163,164,176,202,266,269,285,286,288,314,337,344,348,349,378,414,420,421,423,424,426,428,429,430,431,445,447],proxy_and_backend:349,proxy_authnam:[288,349],proxy_compress:349,proxy_password:349,proxy_realm:349,proxyd:[79,87,98,100,102,286,288,349,351,447],proxyd_allow_status_referr:349,proxyd_disable_mailbox_referr:[141,286,349],proxyserv:[97,145,288,349],prune:[304,331,352,368,415],pselect:[174,175],pseudo:[9,30,276,288,292,349],psuedo:47,ptclient:[5,97,205,206,280,295,349],ptdump:[97,165,351,447],ptexpir:[165,351,447],pthread:342,ptloader:[5,41,49,97,99,100,152,165,169,262,273,280,295,349,351,447],ptloader_sock:[280,295,349],ptr:75,pts:[97,349,400,401],pts_modul:[262,349,401],ptscach:[4,96,97,266,267,280,349,447],ptscache_db:[160,349,400],ptscache_db_path:[96,165,206,267,280,349],ptscache_timeout:349,ptskrb5_convert524:349,ptskrb5_strip_default_realm:349,ptsmodule_standard_root_dn:169,ptsock:[280,295,349],pub:39,publican:448,publicli:340,publish:[72,448],pull:[50,58,66,71,72,75,266,277,432,447],punctuat:[56,348],purchas:28,pure:[49,58,74,88,286],purg:[11,24,25,27,58,102,138,160,292,313,315,327,349,368,382,447],purifi:97,purpos:[11,18,22,28,36,41,44,45,55,63,80,93,99,160,207,209,210,211,212,213,214,215,216,217,234,235,236,248,249,258,259,263,264,265,267,278,280,288,309,313,343,349,363,411,447],purposefulli:25,purview:41,push:[27,36,48,50,53,58,72,74,160,178,180,181,182,183,184,185,186,187,188,251,252,253,254,255,256,269,286,287,309,349,447],pushdivert:267,pushsubscript:90,put:[1,11,15,19,36,41,56,72,74,75,88,97,267,290,292,300,315,348,349,359,422,427,447],pwcheck:[87,97,267,349],pwcommand:97,pwd:374,pwer4:339,python2:223,python3:[198,225,247],python:[49,52],q01:[82,83,84,86],qiu:247,qop:130,qosmark:349,qresync:[25,58,87,136,140,143,330,349,431],qualif:3,qualifi:[3,33,40,349,374,393],qualiti:[286,337],quantiti:28,queri:[47,66,88,93,125,131,132,226,238,241,242,244,251,252,253,254,255,256,274,276,285,290,324,344,349,378,447],querychang:349,question:[7,33,138,160,266,267,349,378,435,436,443,447],queu:[267,344],queue:[38,41,297,344,349,386,442],quick:[52,58,71,74,99,266,349,355,431,435,447],quicker:[236,238,239,240,241,242],quickest:51,quickli:[25,58,74,266,267,271,330,410,442],quickstart:[435,447],quiesc:[281,349],quiet:[349,388,402,403,405],quietli:[402,405],quit:[3,18,41,44,47,74,80,97,98,109,225,247,267,282,286,299,300,349,374,403],quot:[27,68,97,99,157,251,252,253,254,255,256,290,348,349],quota:[4,11,13,27,28,35,40,47,58,64,82,83,84,86,87,96,97,98,100,102,106,108,109,122,138,139,140,143,154,156,157,158,161,162,174,192,199,202,223,225,233,235,236,238,239,240,241,242,245,247,266,267,269,275,277,280,281,286,288,294,305,307,330,349,351,371,374,376,379,387,403,409,431,435,437,441,442,445,447],quota_db:[41,160,280,281,297,349],quota_db_path:[280,297,349],quota_legaci:6,quota_use_convers:349,quotachang:161,quotadb:[100,200],quotalegaci:[4,41,44,100,139,280,281,297,349,361,447],quotaroot:[6,74,99,100,102,143,158,280,286,349],quotawarn:[262,349],quotawarnkb:[262,349],quotawarnmsg:[297,349],quotawarnperc:[41,262,297,349],quotawarns:[262,297,349],quux:55,r7dfjm9k083763:373,race:[57,58,59,74,98,100,145,147,154,155,189,217,219,220,221,222,313,349],racl:[266,357],radio:448,raid:[11,58],raii:55,rain:[268,440,444],rais:[11,27,80,196,374],ralf:[160,443],ram:[7,96,280],ran:[11,80,289,442],random:[9,18,30,74,97,98,110,196,232,244,276,288,304,316,337,349],randomli:121,rang:[47,56,59,97,104,113,115,126,131,145,146,147,171,174,349,352,410,431],rank:418,rare:[22,44,154,286,288],raspberri:11,rate:[11,309,349,386],rather:[6,7,11,15,19,33,36,39,40,44,45,46,48,49,56,58,59,74,97,102,104,107,108,131,133,136,137,139,145,157,160,161,191,216,217,219,220,221,222,223,233,245,251,252,253,254,255,256,262,266,275,278,282,297,304,326,349,352,353,354,355,356,357,358,359,360,361,362,363,365,366,367,368,369,370,371,372,373,374,376,377,378,379,380,381,382,383,384,386,387,388,389,390,392,393,394,395,396,397,398,399,400,402,403,405,406,407,408,409,410,411,412,413,414,415,416,417],ratio:[275,355],rational:[286,321],raw:[44,58,88,267,275,355,371],rawx:349,raymond:443,rc1:[177,218,237,250],rc2:[72,177,250],rc3:177,rc4:177,rcpt:[40,98,267],rdate:76,rdn:5,reach:[9,30,166,193,276],reachabl:341,reactiv:74,read:[0,6,11,13,18,36,38,40,41,45,46,48,51,55,57,58,60,62,65,68,72,74,80,81,88,91,93,97,100,133,160,171,226,228,246,262,266,267,272,274,286,290,296,300,308,349,352,353,354,355,356,357,358,359,360,361,363,364,365,366,367,368,369,370,371,372,373,374,376,377,378,379,380,381,382,383,384,386,387,388,389,390,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,409,410,411,412,413,414,415,416,417,435,442,447,448],read_index_record:47,readabl:[6,19,41,57,71,88,262,266,304,349],reader:[41,47,58,100,352,393],readership:352,readi:[0,56,65,72,82,83,84,86,87,97,223,266,267,288,290,312,348],readir:107,readlin:[49,374],readm:[97,178,180,181,182,183,184,185,186,187,188],readonli:349,real:[11,12,40,41,74,80,215,216,217,219,220,221,222,236,238,239,240,241,242,251,252,253,254,255,256,314,339,380,433,442],realist:72,realiz:56,realli:[0,9,15,30,38,55,56,74,275,276,309,318,321,330,339,349,378,386],realloc:56,realm:[3,5,18,33,41,63,273,349,420,421,423,424,426,427,428,429,430],reappear:141,reason:[11,12,41,44,48,55,74,80,96,97,279,282,300,327,328,331,336,339,343,349,373,381,397,398,410,432,442],reauth:[99,420,421,423,424,426,428,429,430],reauthent:97,reboot:[41,267,327],rebuild:[41,72,74,80,88,178,181,182,183,184,185,186,187,188,214,215,216,217,219,220,221,222,266,275,307,338,342,355,356,360,403,406,419,447],rebuilt:[6,80,97,266,360],recal:56,recalcul:[41,266,307,356],receiv:[7,18,19,26,27,36,39,40,41,49,68,74,82,83,84,86,87,97,98,219,220,221,222,267,275,286,288,289,290,292,297,307,317,344,349,355,376,380,386,432,433,441,445],recent:[6,11,12,44,47,56,58,66,74,80,88,96,97,178,180,181,182,183,184,185,186,187,188,194,205,226,227,271,274,278,295,349,355,378,403],recenttim:74,recentuid:[47,74],recipi:[3,6,19,40,41,98,99,102,202,267,274,335,349,394,431,447],reckon:74,recno:47,recogn:[56,97,427],recognis:[74,150,151,167,168,194,195,197,198,225,227,230,233,245,247,251,252,253,254,255,256,257,266,369],recognit:175,recommend:[4,6,7,11,18,28,40,41,53,70,74,80,97,160,219,220,221,222,235,236,238,239,240,241,242,251,252,253,254,255,256,261,262,266,267,273,275,281,288,316,328,339,344,349,374,381,394,398,402,404,410,431,435,446,447],recompact:44,recompil:[95,178,185,186,187,188,267,275,337],recompress:74,reconfig:[74,349],reconfigur:[40,69,286,289],reconnect:[36,99,132,251,252,253,254,255,256,286,287,288],reconstruct:[6,58,97,98,99,104,106,108,117,121,122,136,137,145,152,154,156,157,160,161,162,163,173,191,199,203,224,246,251,252,253,254,255,256,269,275,301,315,349,351,356,387,435,446,447],record:[6,11,18,25,41,44,45,46,57,59,74,76,78,80,138,153,154,156,157,163,191,205,213,214,215,216,217,219,220,221,222,251,252,253,254,255,256,275,290,309,330,331,349,355,356,363,365,387,389,403,406,410,411,447],record_crc:58,recov:[11,24,25,28,41,74,104,203,251,254,255,256,266,267,275,285,301,304,330,331,338,348,349,357,403,417],recover:[11,275],recoveri:[11,25,44,64,97,105,136,139,150,164,275,286,288,349,356,410,435,437,447],recreat:[141,160,266,267,280,304,356],recur:[76,126,223,349],recurr:[349,431,447],recurs:[55,58,74,80,98,304,349,356,370,374,382,403,406,410],recursivematch:201,recv:[304,378,417],recycl:386,red:[2,12,81,315,447],redact:79,redbot:131,redefin:[229,295],redesign:97,redfish:[136,141],redhat:[49,70,320],redirect:[6,50,66,75,77,98,99,206,267,300,317,349,374,386,431],rediscov:[191,403],redistribut:81,redo:97,reduc:[25,41,47,55,66,74,90,97,102,106,122,139,266,267,286,300,341,349,355,368,410],reduct:[286,314],redud:99,redund:[3,4,41,97,251,252,253,254,255,256,339,344,447],ref:[82,83,84,86,87],refactor:[75,98,191],refcount:[44,47,74],refer:[3,5,6,7,12,14,19,33,40,41,47,55,58,59,60,82,83,84,86,87,96,97,98,109,122,139,140,146,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,233,245,251,252,253,254,255,256,266,267,268,269,270,271,273,276,280,286,288,290,296,300,302,309,310,313,316,349,374,386,410,431,445,447],referenc:[52,97,300,349,410,431],referr:[41,82,83,84,86,87,99,100,120,288,349,431],reflect:[97,160,286,290],reformat:58,refresh:[9,11,30,46,276,431],refus:[74,97,219,220,221,222,359,374],regard:[11,81,349,433],regardless:[6,7,11,41,44,45,56,91,109,272,274,281,349,376,406,439],regener:[41,75,266,275],regex:[192,205,227,300,349,431],regim:46,region:339,regist:[3,27,44,45],registr:[349,431,432],registrar:3,regress:[50,80,100,145,154,158,349],regul:24,regular:[33,44,45,49,52,58,59,71,88,98,100,266,275,300,309,326,330,349,368,410,431,434],regularli:[11,44,52,71,72,328,355,397],regulatori:[11,25],rehash:[99,142,143,144,281,349,351,447],reindex:[238,241,242,251,252,253,254,255,256,275,349,355,410,447],reindexti:410,reinsert:61,reintroduc:105,reject8bit:[97,349,376],reject:[41,74,75,97,98,99,113,156,161,164,203,206,226,228,251,252,253,254,255,256,266,267,300,315,324,343,349,376,431,447],rel:[11,30,58,266,275,292,349,355,374],relai:343,relat:[5,6,11,19,30,31,35,41,75,80,97,98,99,100,108,160,267,275,276,277,278,282,300,309,349,406,431,433,448],relationship:[5,275,349,353],relax:140,releas:[1,2,12,44,45,46,47,49,59,65,74,84,96,207,209,210,211,212,213,214,215,216,217,234,235,236,248,249,258,259,263,264,266,309,321,355,364,379,410,432,433,435,438,441,443,445,447,448],relev:[6,11,18,41,52,72,74,93,178,179,180,181,182,183,184,185,186,187,188,275,299,349,410,432,448],reli:[68,80,96,99,276,286,410],reliabl:[44,143,155,176,178,179,180,181,182,183,184,185,186,187,188,235,236,238,239,240,241,242,344,440],reload:[269,301,310,447],reloc:[87,266,280,374,405],relocate_by_id:[251,252,253,254,255,256,266,351,447],remain:[11,24,25,44,48,58,59,61,69,76,200,251,252,253,254,255,256,262,266,274,275,277,304,309,313,330,341,355,368,406,410,411,439,442],remaind:[40,80],remap:350,rememb:[18,48,56,72,74,98,266,276,365,432],remind:27,remot:[18,40,41,48,53,72,87,88,93,97,100,111,117,139,140,156,161,163,169,198,225,231,243,247,251,252,253,254,255,256,257,268,273,276,286,287,288,300,309,349,379,381,383,384,388,392,393,395,396,398,409,411,414,427,431,442,447,448],remotepurg:99,remount:448,remov:[7,11,24,25,27,36,40,44,45,51,56,57,59,60,61,62,74,79,87,88,95,97,98,99,100,102,104,105,121,136,142,156,160,174,189,191,199,203,206,212,213,214,215,216,217,219,220,221,222,227,233,236,238,239,240,241,242,245,251,252,253,254,255,256,262,266,267,271,274,275,280,286,288,289,296,298,303,304,307,313,327,330,349,356,357,359,365,366,368,372,373,374,386,410,411,431,439,447],removeflag:[75,266],renam:[19,24,36,58,59,77,96,97,98,99,100,104,105,108,109,122,141,142,145,147,154,156,158,160,162,163,172,175,178,180,181,182,183,184,185,186,187,188,190,199,217,219,220,221,222,274,286,288,300,304,310,330,349,355,374,404,447],renamemailbox:[304,310],render:[19,52,160],renew:97,renm:374,renounc:97,renown:443,reorder:231,repack:[47,57,58,59,65,154,365],repair:[11,74,251,252,253,254,255,256,269,321,349,403,447],repars:403,repeat:[52,58,175,225,247,275,349,411],repl1:309,repl1_shutdown:309,repl1_shutdown_fil:309,repl1_sync_host:309,repl1_sync_repeat_interv:309,repl1sync:309,repl2:309,repl2_shutdown:309,repl2_shutdown_fil:309,repl2_sync_host:309,repl2_sync_repeat_interv:309,repl2sync:309,replac:[11,44,45,47,49,52,55,60,66,74,76,90,91,97,100,133,136,160,191,196,232,244,267,268,274,276,283,288,296,300,304,321,349,356,431,442,445,448],replai:[158,309],repli:[11,58,68,88,97,100,286,292,349,447],replic:[1,3,4,6,18,25,47,51,54,58,64,74,87,96,102,104,105,108,109,110,117,120,121,122,125,136,139,141,150,152,156,158,162,175,178,179,180,181,182,183,184,185,186,187,188,189,196,197,199,200,203,219,220,221,222,228,231,233,235,236,238,239,240,241,242,243,245,251,253,254,255,256,262,267,269,286,294,301,349,353,359,363,403,406,410,411,413,430,435,441,445,446,447],replica:[11,18,61,108,121,152,154,251,253,254,255,256,275,280,286,290,314,349,359,410,411,413,445],replman:309,replyto:349,repopul:74,report:[0,24,41,49,80,88,95,97,98,99,109,112,131,140,147,154,156,158,163,164,165,166,189,190,191,192,193,197,199,202,205,206,223,226,233,245,262,266,267,284,343,344,348,349,352,355,359,367,373,380,387,397,402,403,406,410,411,431,444],repositori:[44,48,50,52,63,65,71,72,81,82,83,86,87,160,174,178,181,182,183,184,185,186,187,188,197,233,245,300,333,439,447],repres:[56,60,62,63,68,74,75,216,217,219,220,221,222,276,290,296,376],represent:[6,33,41,69,75,97,349,431],reproduc:[11,81,333],reput:267,reputedli:160,request:[9,11,19,30,36,41,44,50,57,58,60,62,66,68,71,74,88,89,92,97,125,130,131,133,169,178,180,181,182,183,184,185,186,187,188,192,198,223,225,245,247,266,276,286,296,300,349,373,377,378,394,406,411,431,432,433,435,436,445,447],requeu:41,requi:267,requir:[3,4,5,6,7,8,10,11,15,18,19,24,27,35,36,40,41,46,47,55,59,60,66,74,75,76,87,88,91,93,96,97,99,100,110,125,133,157,160,173,178,179,180,181,182,183,184,185,186,187,188,189,196,198,199,217,219,220,221,222,223,225,231,232,235,236,238,239,240,241,242,243,244,247,251,252,253,254,255,256,257,266,267,271,273,274,278,279,280,282,283,284,286,294,295,296,300,307,310,313,318,326,328,330,348,349,355,357,368,378,381,383,384,394,396,398,406,410,411,420,421,423,424,426,428,429,430,432,435,439,445,446,447],requisit:[293,447],reread:[98,348,386],rerun:80,reschedul:[60,79,296],rescu:[25,349],research:[112,140],resent:349,reserv:[33,59,61,74,81,99,192,200,286,287,288,357],reset:[4,99,100,205,412,447],resid:[6,7,15,27,36,41,88,89,91,92,160,278,279,282,286,290,292,330,349,417],resign:439,resili:74,resolut:[58,97,442],resolv:[11,40,75,98,206,266,267,286,288,289,349],resourc:[1,6,10,27,34,41,51,55,88,89,96,99,130,152,160,163,251,252,253,254,255,256,262,266,275,278,297,313,314,330,349,374,402,435,443,447],resource_acquisition_is_initi:55,respect:[9,27,28,30,40,68,80,93,100,102,208,215,216,217,219,220,221,222,235,236,238,239,240,241,242,274,278,286,339,349,355,368,374,406,445],respond:[11,33,36,74,267,271,290,343,349,353,378,379,381,383,384,392,393,395,396,398,409,414],respons:[6,18,25,33,44,46,58,60,61,66,74,88,89,92,97,98,100,102,105,106,107,108,109,114,117,122,130,131,132,133,139,140,146,154,155,156,158,162,178,180,181,182,183,184,185,186,187,188,192,200,232,233,244,245,251,252,253,254,255,256,266,267,271,274,285,286,296,311,314,315,330,348,349,386,420,421,423,424,426,428,429,430,431,439,447],rest:[3,11,36,44,51,55,58,59,72,74,75,203,266,275,292,309,349,427],restart:[44,59,72,74,100,228,266,267,275,278,288,289,292,308,309,324,335,340,348,349,386,411,448],restor:[24,41,97,106,162,271,287,304,307,330,349,351,354,359,363,375,387,389,403,417,447],restore_authnam:[349,406],restore_password:[349,406],restore_realm:[349,406],restrict:[5,11,14,33,34,41,56,59,74,231,243,289,292,297,348,349,410,447],restructur:[48,49,52,178,181,182,183,184,185,186,187,188],restructuredtext:[160,448],result:[3,6,11,18,19,25,33,36,40,52,55,56,63,68,72,74,75,80,81,88,97,102,131,142,160,191,193,223,243,262,267,271,286,288,290,303,309,313,318,320,323,324,330,332,335,344,349,356,365,373,386,410,431,448],resum:275,resurrect:205,resync:[33,288],resynch:288,resynchron:[97,286,431],ret:56,retain:[25,59,81,330,349,384,396],retent:[15,74,275],retest:80,retext:52,retri:[44,45,74,288,297,324,349],retriev:[3,6,9,30,76,97,271,276,292,330,345,349,377,422,431],retrofit:336,retyp:[82,83,84,86,87],reus:[55,74,98,99,100,108,130,168,195,267,349,420,421,423,424,426,428,429,430,431,447],rev1:311,rev4:[96,267,294,445],reveal:[265,440],revers:[36,40,57,74,100,178,180,181,182,183,184,185,186,187,188,251,252,253,254,255,256,343,348,349],reverseacl:[178,180,181,182,183,184,185,186,187,188,192,235,236,238,239,240,241,242,266,349,357],reverseuniqueid:[235,236,238,239,240,241,242,251,252,253,254,255,256,349],revert:[100,262,266,374],review:[7,23,53,71,99,288,292,369,439,445],revis:[53,58,440,442],revisit:[238,241,242],revoc:349,revok:270,rewit:47,rework:110,rewrit:[47,49,58,59,75,143,153,157,191,205,267,349,356,403],rewritecalendareventprivaci:266,rewritten:[58,59,99,136,349],rewrot:[98,102,107,129,131],rfc1234:55,rfc2046_strict:[99,349],rfc2047_utf8:[321,349],rfc3028_strict:[100,349],rfc3501:374,rfc3977:100,rfc4315:100,rfc6203:205,rfc822:[58,97,275],rfc:[6,8,12,13,14,27,33,34,36,41,55,56,68,88,90,91,93,97,99,103,121,122,169,178,180,181,182,183,184,185,186,187,188,208,209,210,211,212,213,214,215,216,217,219,220,221,222,235,236,238,239,240,241,242,251,252,253,254,255,256,262,268,270,271,274,277,286,290,299,300,311,321,322,326,330,335,343,349,362,374,376,377,427,441,442,447],rhost:74,rich:[14,270,349,442],richard:443,rid:[49,97],rider:[268,440],right:[5,6,7,11,14,33,44,51,55,72,76,80,81,82,83,84,86,87,88,89,92,98,99,103,105,160,163,266,267,269,270,273,277,292,300,312,326,329,349,352,374,376,378,391,447,448],rightmost:80,ripe:96,risk:[11,44,97,174,373],rivera:223,rjs3:63,rlist:[161,286],rlsub:286,rmgroup:292,rmnew:97,road:[268,440],roadmap:[435,438,447],rob:[98,443],robert:[154,443],robust:[6,105,139,202,435],roc:98,rock:[60,68,79,296],roland:139,role:[20,36,66,276],roll:[44,45,47,65,74,108,147,152,203,262,349,410,411,445],rollback:202,roncero:158,room:275,root:[5,6,11,18,27,33,51,58,92,97,108,122,143,162,266,268,269,273,278,280,286,288,292,297,299,305,306,309,329,330,349,368,374,387,402,403,410,443,445,447],rosenbaum:99,rotat:[7,64,267,309,314],rough:439,roughli:58,rougli:46,rouillard:154,round:[11,58],roundtrip:44,rout:[3,11,40,431],routin:[7,36,55,56,75,80,97,98,99,160,276,330],row:[33,74,267,349],rowid:6,royal:[268,440],rpath:[65,342],rpm:[82,83,84,86,308,318,338,432,448],rpost:292,rrule:[76,251,252,253,254,255,256,349],rs256:349,rs384:349,rs512:349,rsa:[10,82,83,84,86,87,216,217,219,220,221,222,349],rscale:125,rss:[93,124,131,141,267,286,321,349],rss_feed:349,rss_feedlist:[91,349],rss_feedlist_templ:349,rss_maxag:349,rss_maxitem:349,rss_maxsynopsi:349,rss_realm:349,rst:[48,52,72],rsvp:76,rsync:[65,191,266,410],rsyslog:[266,267],rtf:244,rudolf_sync_host:369,ruin:416,rule:[3,11,20,36,56,69,80,97,267,275,278,288,292,348,349,431],ruleset:267,rummag:[74,275],rumpf:102,run:[1,6,7,10,11,13,18,19,25,28,33,35,36,41,44,47,48,49,52,55,58,64,65,66,69,70,72,74,75,79,82,83,84,86,87,88,91,93,95,96,97,98,99,100,108,109,114,122,152,154,157,160,162,164,169,176,191,206,220,221,222,236,238,239,240,241,242,251,252,253,254,255,256,266,268,269,275,280,284,286,287,288,289,290,292,295,300,301,304,307,308,309,311,314,315,318,324,326,328,330,335,339,348,349,353,355,356,359,361,365,368,371,372,373,374,378,379,381,382,383,384,386,390,392,393,394,395,396,397,398,401,402,403,404,405,406,409,410,411,413,414,416,418,420,421,423,424,426,427,428,429,430,432,440,441,442,443,444,445,447],run_test:80,runawai:156,rundir:295,runner:64,runtim:[69,80,100,160,276,280,337,364,369],s01:[82,83,84,86,87],s_client:18,sa46093:[112,140],sacrif:286,sacrific:[286,410],safe:[48,55,61,72,74,142,164,267,275,286,314,315,397,404,447],safeguard:412,safer:[45,141,160,266,286,349],safeti:[8,97,100,106,219,220,221,222,355],sai:[11,44,45,72,80,97,267,274,275,314,317,330,339,355],said:[5,7,11,48,72,97,292],sake:160,salt:[18,431],sam:[292,329,352,374,443],samantha:74,same:[3,4,5,6,7,10,11,13,15,26,27,31,33,36,40,41,44,45,47,48,52,55,58,59,64,69,72,74,80,88,89,92,97,98,99,102,104,109,127,142,145,160,169,190,192,196,203,219,220,221,222,232,244,251,252,253,254,255,256,266,267,271,273,274,275,282,286,287,288,290,292,304,309,310,314,317,320,330,332,334,335,339,347,348,349,357,359,361,368,373,388,403,406,417,422,427,442,445,447],sampl:[2,15,40,64,90,189,267,278,279,282,283,292,309,350,410,435,445,447],san:[11,339],sandbox:[266,267,445],sane:[55,98,178,180,181,182,183,184,185,186,187,188,349],sanit:447,saniti:[61,64,121,267,349,373],sasl2:[49,87,266],sasl:[41,53,55,68,70,72,81,82,83,84,86,87,93,97,98,99,100,107,108,119,145,268,286,288,290,296,300,309,314,315,319,337,349,365,420,421,423,424,426,428,429,430,431,432,433,443,444,447],sasl_:[275,349],sasl_auth_mech:[41,273],sasl_auto_transit:[41,267,349],sasl_checkapop:99,sasl_client:68,sasl_maximum_lay:349,sasl_minimum_lay:[87,349],sasl_opt:349,sasl_prot_ani:68,sasl_pwcheck_method:[41,87,267,349],saslauth:[267,445],saslauthd:[82,83,84,86,87,267,314,349,445,447],sasldb2:267,sasldb:[41,267,349,445],sasldblistusers2:[87,267],sasldir:97,saslfic:97,saslpasswd2:[87,267,445],saslserv:100,saslv2:98,sat:[158,417],sata:11,satisfi:266,satur:11,saturdai:330,save:[19,41,47,56,61,72,74,98,109,139,168,195,262,298,309,328,338,349,422],saved:[213,214,215,216,217,219,220,221,222,431],savvi:[85,292],saw:390,sbin:[74,300],sbindir:[178,179,180,181,182,183,184,185,186,187,188],scalabl:[4,7,12,13,15,35,41,102,268,286,435,440,442,444,447],scalar:304,scale:[7,11,36,285,286,288,339,442],scan:[27,41,74,82,83,84,86,87,106,109,267,338,349,373,403,447],scanner:[267,373,447],scarf:109,scaveng:[41,338],scenario:[4,11,12,19,58,136,278,313,339,349,435,446,447],sched:88,sched_busytime_queri:447,sched_cancel:447,sched_declin:447,sched_deliv:447,sched_deliver_loc:447,sched_deliver_remot:447,sched_exclud:447,sched_pollstatu:447,sched_repli:447,sched_request:447,sched_tag:6,sched_vpoll_repli:447,schedul:[1,6,11,47,73,74,88,89,92,93,243,245,251,252,253,254,255,256,262,280,348,349,355,386,431,447],schema:64,scheme:[49,58,74,93,128,205,231,281,288,292,297,309,349,431],schiller:97,schmiedehausen:98,schult:100,schumach:206,scientif:81,scope:[5,11,40,94,349,442],score:[27,178,180,181,182,183,184,185,186,187,188,417],scott:[98,342],scp:266,scram:[93,219],scrape:284,scratch:[48,72,276],scratchi:55,screen:[97,373],screw:97,script:[1,7,33,36,41,48,49,51,69,72,74,75,93,97,99,100,102,122,138,142,160,166,193,199,203,226,228,235,236,238,239,240,241,242,251,252,253,254,255,256,262,266,267,269,275,277,280,286,288,292,323,326,347,349,355,374,385,388,390,407,408,414,416,418,422,427,431,445,447,448],scriptnam:374,scsp:349,sda2:11,sdata:47,sdb2:11,sdk:349,seal:[13,300,442,447],seamless:[13,442],seamlessli:275,search:[4,5,46,49,57,58,76,95,97,98,106,109,115,136,145,147,154,160,163,176,178,179,180,181,182,183,184,185,186,187,188,199,205,212,213,214,215,216,217,219,220,221,222,223,236,238,239,240,241,242,244,245,251,252,253,254,255,256,262,266,267,269,274,280,286,301,309,313,314,318,321,349,373,377,403,410,431,435,441,447],search_attachment_extractor_url:349,search_batchs:[65,283,349],search_engin:[65,178,179,180,181,182,183,184,185,186,187,188,283,349,410],search_fuzzy_alwai:[205,236,238,239,240,241,242,349],search_index_head:[65,283,349],search_index_languag:349,search_index_part:349,search_index_skip_domain:[236,238,239,240,241,242,349],search_index_skip_us:[236,238,239,240,241,242,349],search_indexed_db:[6,349],search_maxs:[251,252,253,254,255,256,262,349],search_maxtim:349,search_normalisation_max:[238,241,242,349],search_query_languag:349,search_queryscan:349,search_skipdiacrit:349,search_skiphtml:349,search_snippet_length:349,search_stopword_path:349,search_whitespac:349,search_xapian:410,searchabl:349,searchpartit:[278,283,349],searchtier:[278,283,349],searchtierpartit:[278,283,349],sec:[44,82,83,84,86,87,349],second:[11,41,47,55,56,58,64,69,74,79,88,97,157,267,268,273,275,284,286,287,288,290,300,309,314,348,349,350,353,356,366,368,378,379,381,383,384,386,393,394,395,396,397,398,400,403,406,409,410,411,417,431,440,448],secondari:[3,11,19],secondli:349,secret:[5,68,267,288,309,349,420,421,423,424,426,428,429,430,445,447],sect:9,section:[3,6,9,11,12,26,34,36,41,51,52,56,65,70,72,80,87,88,91,93,95,97,147,160,162,163,203,235,236,238,239,240,241,242,266,267,273,274,275,276,278,280,284,286,288,292,300,304,309,311,333,343,349,353,355,357,359,373,379,380,381,383,384,392,395,396,397,398,409,410,411,413,414,447,448],sector:[11,58],secunia:[112,140],secur:[3,5,7,10,18,35,36,41,53,68,71,72,82,83,84,86,87,99,107,108,113,120,128,146,171,172,274,301,314,328,349,353,379,381,393,395,398,413,431,435,437,439,441,447],securityapprais:99,see:[3,7,9,11,19,25,33,36,38,40,41,46,47,48,49,51,52,53,55,56,58,59,64,66,71,72,74,76,79,80,82,83,84,85,86,87,91,93,95,96,97,98,100,102,106,107,110,121,122,132,160,178,179,180,181,182,183,184,185,186,187,188,209,210,211,212,213,214,215,216,217,219,220,221,222,251,252,253,254,255,256,262,266,267,272,274,275,276,278,279,280,282,283,286,287,288,292,297,298,300,309,312,314,316,326,330,338,343,347,431,441,445,447,448],seed:[196,232,244],seek:[80,160],seem:[74,99,100,114,130,267,274],seemingli:26,seen:[4,9,13,27,30,41,44,55,56,57,58,61,74,88,97,98,99,100,102,104,106,108,121,136,145,152,153,154,155,158,191,225,229,247,251,252,253,254,255,256,271,272,274,275,276,280,281,286,288,292,326,349,352,371,372,374,388,403,427,447],seen_db:[58,98],seenstate_db:[160,349],seenuid:74,segfault:[100,114,146,150,151,168,172,173,174,195,206,225,230,247],segment:[3,227,286,349],segmul:99,select:[4,6,7,11,18,19,33,36,47,53,56,58,61,68,72,74,93,97,100,109,110,146,154,161,251,252,253,254,255,256,269,271,273,274,275,278,282,286,288,313,349,352,374,388,406,410,417,418,445,447],selector:[251,252,253,254,255,256,349,447],self:[28,82,83,84,86,87],selinux:302,selski:[439,443],semanag:302,semant:[46,47,56,59,71,98,99,286,431],semi:271,semicolon:56,semidelai:[25,349],send:[5,11,26,41,48,49,52,68,71,72,74,76,88,97,100,105,164,174,178,179,180,181,182,183,184,185,186,187,188,233,245,266,274,275,277,286,290,300,308,309,314,335,341,343,344,349,359,374,378,381,394,398,410,420,421,423,424,425,426,428,429,430,435,445,446,447],sender:[3,27,41,49,76,292,315,317,376,447],sendmail:[41,94,97,98,100,158,286,292,300,323,324,349,409,429,445,447],sendmail_auth_id:349,sens:[72,100,344],sensibl:[71,80,286],sensit:[33,97,98,286,349],sent:[10,26,27,33,39,41,44,52,62,74,97,100,154,216,217,219,220,221,222,262,267,286,288,290,300,304,307,326,343,349,366,370,372,373,374,387,403,410,417,432,448],sentdat:[58,387,417],sep:[64,365],separ:[5,6,7,9,11,19,24,25,30,31,33,36,40,41,56,58,63,68,69,70,74,75,88,91,93,97,98,102,103,152,158,160,179,180,181,182,183,184,223,267,274,277,278,282,288,290,304,309,313,330,339,348,349,350,352,355,366,373,374,381,388,391,398,405,410,416,417],seq:[104,387],seqdiag:52,seqnum:387,sequenc:[6,11,56,58,62,68,74,75,76,97,98,104,105,215,216,217,219,220,221,222,290,323,326,348,349,365,387,411],sequenti:348,serer:349,sergei:[166,193],seri:[2,56,72,84,96,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,234,248,258,263,266,300,348,349,365,432,435,439,447],serial:[75,339],serialis:59,serious:[97,154,324],serv:[11,36,91,93,97,102,275,286,290,292,309,326,343,349,376,379,381,393,395,397,398,403],servant:110,server:[1,4,5,6,8,9,10,11,12,13,15,19,24,27,30,33,40,44,46,47,48,49,51,54,66,68,69,70,72,73,74,76,80,81,82,83,84,86,87,88,89,90,91,92,93,94,96,97,98,99,100,102,103,104,105,106,107,108,109,110,111,114,116,117,118,119,120,121,122,124,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,146,147,148,152,153,154,155,156,157,158,160,161,166,173,178,180,181,182,183,184,185,186,187,188,193,196,198,225,228,231,235,236,238,239,240,241,242,243,247,257,266,267,268,269,273,274,276,277,278,281,282,284,285,287,292,294,295,297,299,302,311,312,313,314,317,326,330,339,342,343,344,349,352,353,359,362,369,377,378,379,381,383,384,391,392,393,394,395,396,398,401,406,411,413,414,417,420,421,422,423,424,425,426,427,428,429,430,432,433,435,437,440,442,443,445,446,447],server_side_tl:349,serverdomain:27,serverfail:223,serverfqdn:27,serverinfo:[106,173,349],serverlist:[9,30,109,276,288,349],serverlist_mod:9,serverlist_mode_soft_usage_limit:9,serverlist_mode_usage_reinit:9,serverlist_select_mod:[9,30,276,288,349],serverlist_select_soft_usage_limit:[30,288,349],serverlist_select_usage_reinit:[30,276,288,349],servermetadata:349,servernam:[74,88,89,92,93,288,300,349,374,377,411],serverport:27,servic:[2,3,6,7,9,11,18,27,30,35,40,41,49,55,68,74,81,82,83,84,86,87,93,97,98,99,100,110,120,124,133,136,141,147,160,161,163,175,178,179,180,181,182,183,184,185,186,187,188,203,219,220,221,222,236,238,239,240,241,242,266,267,269,275,276,280,284,286,288,292,293,295,300,301,309,310,312,314,315,340,349,353,365,366,369,374,378,379,381,383,384,386,390,392,394,395,396,397,398,401,406,409,413,414,420,421,422,423,424,426,428,429,430,431,435,442,444,445,447,448],service_abort:99,servicenam:100,session:[3,6,8,18,41,97,98,99,108,160,163,168,173,189,195,200,267,280,286,288,290,309,330,349,353,379,381,386,392,393,395,398,415,420,421,423,424,426,428,429,430,448],sessionid:[27,142,277,349],sessionst:66,set:[1,3,5,7,8,9,10,11,13,15,18,22,24,25,27,28,30,33,36,40,41,44,45,47,51,52,53,55,56,58,59,60,61,63,65,66,68,72,74,76,77,79,82,83,84,86,87,88,90,91,93,97,98,99,104,109,110,122,132,133,138,145,147,154,157,160,161,162,163,165,173,174,178,179,180,181,182,183,184,185,186,187,188,189,194,205,206,219,220,221,222,226,227,228,229,235,236,238,239,240,241,242,245,251,252,253,254,255,256,261,262,266,271,272,274,275,276,277,278,280,281,282,283,284,286,287,289,292,295,296,297,300,304,309,312,313,314,315,321,326,330,333,337,341,347,348,349,355,362,364,365,368,369,373,374,376,378,382,385,386,390,391,392,393,394,397,400,401,403,404,406,410,411,417,419,420,421,422,423,424,426,428,429,430,435,440,442,444,446,447,448],set_up:80,setacl:[27,40,109,163,274,286,344,349,374],setaclmailbox:[40,41],setannot:[161,214,215,216,217,219,220,221,222,349],setcreat:[228,251,252,253,254,255,256],setflag:[61,75],setgid:98,setinfo:368,setmd:374,setmetadata:[161,274],setquota:[40,41,98,109,286,288,298,306],setrlimit:[98,174],setseen:[41,61],setseen_al:108,settl:11,setuid:[97,328],setuidvalid:104,setup:[1,7,12,18,44,52,94,206,227,267,269,287,289,310,324,435,447],setupd:[228,251,252,253,254,255,256],sever:[11,19,36,41,52,56,72,75,96,97,98,99,100,105,107,131,132,266,267,278,280,288,289,290,295,297,339,440,445,448],severalfold:75,seward:80,sha1:[58,62,74,104],sha1sum:74,sha384:[82,83,84,86],sha:[87,93,266],shadow:[41,97],shake:[74,275],shall:[9,30,81,87,276,439],shape:11,shapelib:49,share:[4,5,6,13,19,27,36,44,47,49,57,58,59,69,74,88,89,90,91,92,96,97,100,102,104,130,139,142,152,155,161,178,180,181,182,183,184,185,186,187,188,189,192,206,215,216,217,219,220,221,222,225,244,247,251,252,253,254,255,256,270,274,275,276,278,279,282,283,285,286,288,292,314,315,326,340,342,344,349,374,382,410,445,447],sharedprefix:[33,349],sharedscript:267,sharedseen:[58,104,225,247,271,274,326,374],she:[33,48,72],shed:80,sheet:91,shell:[33,74,80,97,99,193,267,365,374,391,448],shini:51,shinier:[178,179,180,181,182,183,184,185,186,187,188],ship:[11,81,82,83,84,86,87,96,277,313,320,373],shm:10,shoot:7,shortcut:448,shorter:6,shorthand:[33,374],shortnam:349,should:[3,6,7,9,11,12,18,22,25,26,27,30,33,36,40,41,44,45,47,48,49,52,55,56,58,59,60,63,64,66,68,72,74,75,79,80,82,83,84,86,87,88,89,91,92,96,97,98,99,102,105,160,164,169,207,209,210,211,212,213,214,215,216,217,219,220,221,222,234,235,236,248,249,251,252,253,254,255,256,258,259,262,263,264,265,266,267,271,272,274,275,276,280,284,285,286,288,290,292,295,296,300,302,304,309,312,314,315,318,322,326,328,330,332,334,338,343,344,348,349,353,355,360,361,368,369,374,377,378,379,381,383,384,386,387,393,394,395,396,397,398,403,404,406,409,410,411,439,445,447,448],shouldn:[74,80,97],show:[1,13,33,53,58,66,72,74,77,80,88,89,90,91,92,93,99,130,140,141,142,154,267,271,275,286,292,307,349,359,363,365,369,372,374,378,388,440,445],showalt:443,shown:[15,52,87,275,292,313,348,363,388,416],shut:[74,96,97,99,160,251,252,253,254,255,256,275,341,349,353,378,379,381,383,384,393,394,395,396,398,404,409,411,435,446,447],shut_down:55,shutdown:[7,97,99,110,162,174,176,200,262,309,326,341,348,374,381,398,411],shutdown_fil:411,sibl:98,side:[5,11,13,19,36,56,57,93,97,98,107,146,160,278,290,300,349,411,413,431,447],siemborski:[98,443],siev:[1,4,7,13,27,33,49,51,69,73,74,80,87,90,96,97,98,99,100,102,106,109,122,136,138,140,143,145,146,160,163,166,178,180,181,182,183,184,185,186,187,188,192,193,199,203,205,206,209,210,211,212,213,214,215,216,217,219,220,221,222,225,226,227,228,230,235,236,238,239,240,241,242,244,246,247,251,252,253,254,255,256,262,267,269,275,277,280,281,286,288,294,314,315,317,326,343,346,347,349,351,358,371,374,379,381,383,384,385,388,392,394,395,396,398,407,409,411,413,414,416,422,427,431,435,437,445,447],sieve_allowreferr:[100,120,349],sieve_duplicate_max_expir:349,sieve_emit_bytecod:75,sieve_extens:[102,166,180,181,182,183,184,193,349],sieve_fold:[251,252,253,254,255,256,266,349],sieve_generate_bytecod:75,sieve_maxscript:349,sieve_maxscripts:[262,349],sieve_sasl_expect_unsolicited_cap:107,sieve_sasl_send_unsolicited_cap:[107,349],sieve_script:6,sieve_use_lmtp_reject:349,sieve_utf8fileinto:[107,349],sieve_vacation_max_respons:349,sieve_vacation_min_respons:349,sievec:[300,351,385,408,447],sievedir:[97,174,251,252,253,254,255,256,267,280,300,349,385],sievenotifi:[41,99,349],sieveshel:[99,225,229,247,300,351,422,447],sieveusehomedir:[97,267,280,300,349],sig:[160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,238,239,240,241,242,243,244,245,246,247,251,252,253,254,255,256,257,261,262],sighup:[98,219,220,221,222,308,348,349,386],sign:[28,48,53,72,82,83,84,86,87,97,127,140,163,290,335,349,440],signal:[58,98,200,308,326,348,349,380,386],signatur:[44,48,72,80,88,349,373,431],signific:[5,11,75,99,300,310,439,440],significantli:[74,100,106,160,286,311,410],sigsegv:[198,225,247,288],sigserv:288,sigterm:386,sigusr2:202,silent:[44,45,47,143,161,328,349,378],silli:98,similar:[8,9,11,18,47,49,56,66,74,75,77,80,93,108,266,267,275,282,285,286,288,290,292,300,304,309,314,348,410,442],similarli:[5,55,80,233,245,275,288,292,330,348],simon:[105,110,147,154,175,338,443],simpl:[48,55,56,58,59,66,74,75,79,80,91,97,98,100,266,267,285,288,290,292,304,349,374,431,435,439,442,445],simpler:143,simplest:[36,445],simpli:[11,41,55,60,74,75,79,97,160,203,288,292,296,299,342,420,421,423,424,426,428,429,430,445],simplifi:[58,75],simplist:11,simultan:[8,74,267,275,448],sinc:[7,9,11,18,25,30,33,35,44,46,55,56,58,59,61,69,74,91,97,98,99,100,102,103,104,105,106,107,108,109,110,111,114,116,117,118,119,120,121,122,124,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,148,152,153,154,155,156,157,158,266,274,276,286,288,289,292,300,304,307,327,330,331,337,342,343,349,359,369,376,377,410,435,442,443],sincest:229,singl:[3,4,6,8,11,13,36,40,44,45,55,56,58,68,71,74,75,80,91,93,97,100,105,178,181,182,183,184,185,186,187,188,193,196,197,232,233,244,245,272,275,277,280,283,286,288,290,297,304,309,313,314,339,344,348,349,356,368,406,410,411,440,447],singleinstancestor:[41,349],singular:11,sip:431,siriusit:140,sit:[7,61,66,339],site:[41,44,50,91,96,97,154,158,266,273,281,286,295,297,309,342,349],situat:[11,33,58,137,160,276,330,339],sivtest:[99,300,351,447],six:71,sixth:410,size:[6,9,11,15,27,28,30,41,55,56,58,59,62,74,75,97,98,100,106,107,108,109,142,147,196,235,236,238,239,240,241,242,251,252,253,254,255,256,262,275,276,277,278,301,304,310,315,326,328,331,349,355,356,382,386,387,403,417,431,442,447],size_t:127,sizeof:[46,55,80],skeleton:[68,267,288],skew:349,skip:[6,44,45,47,65,74,75,76,97,99,100,122,236,238,239,240,241,242,251,253,254,255,256,349,355,368,382,406,410,411],skiplist:[4,44,45,77,88,90,98,99,100,105,106,107,109,136,139,140,160,243,266,287,297,312,316,331,336,349,361,447],skiplist_always_checkpoint:349,skiplist_unsaf:349,skynet:309,slash:[33,98,267,374],slave:[11,87,122,286,288,392],sleep:[47,309,348,410],sleepycat:342,sleev:74,slide:6,slight:309,slightli:[44,74,79,133,160,288,309,343,349,444],slocal_localaddr:267,slot1:354,slot:[309,349],sloti30t15:27,slow:[6,11,28,109,138,223,276,278,315,316,349,355,368,442,447],slower:[11,15,51,55,137,278,309,313,349],small:[0,11,13,28,55,74,80,97,98,99,139,141,266,275,310,313,339,390,412,442,445],smaller:[11,15,74,205,275,297,349,382,411],smallest:80,smart:[11,262],smarter:97,smigielski:443,smilint:164,smime:90,smith:443,smithj:74,smmap:[96,267,294,409,445],smmapd:[96,100,267,294,348,351,445,447],smooth:410,smoother:[9,30,276],smoothli:84,smtp:[41,49,61,97,267,288,292,307,314,343,349,358,429,431,438,445,447],smtp_auth_authnam:349,smtp_auth_password:349,smtp_auth_realm:349,smtp_backend:349,smtp_host:349,smtpclient:349,smtpd:87,smtptest:[99,351,447],snakeoil:267,snappi:66,snapshot:[2,3,8,11,46,51,207,209,210,211,212,213,214,215,216,217,234,235,236,248,249,258,259,263,264,266,275,435,447],snip:417,snippet:[15,58,244,251,252,253,254,255,256,267,310,349,432],snmp:[98,100,219,220,221,222,236,238,239,240,241,242],snmpgen:99,snooz:[226,235,236,238,239,240,241,242,349,431],snow:[268,440,444],snuck:[152,223],sock_dgram:378,sockaddr_in:378,socket:[5,27,36,40,41,55,64,87,96,97,98,99,100,122,149,156,164,206,266,267,269,280,288,309,332,348,349,378,379,381,383,384,392,393,394,395,396,398,409,413,414,420,421,423,424,426,428,429,430,431,445,447],socketmap:267,socklen_t:98,soft:[55,276],soft_noauth:349,softer:349,softwar:[4,11,13,35,41,68,80,81,82,83,84,86,87,97,98,198,225,247,257,266,267,268,286,319,322,330,339,349,403,433,442,443,444,447],solari:[12,97,99,127,148,156,161,173,178,180,181,182,183,184,185,186,187,188],sole:[11,442],solut:[11,19,74,80,136,141,267,275,280,285,286,288,313,318,335,338,339,344,349,439,442],solv:[108,133,442],some:[7,10,11,24,25,28,31,33,40,41,44,47,49,51,52,55,56,58,60,61,65,71,72,74,79,80,84,87,88,91,93,96,97,98,99,102,109,115,141,145,147,152,156,160,163,189,191,203,223,228,232,244,245,262,266,267,272,274,275,277,278,280,282,286,288,290,292,296,300,304,308,309,313,318,320,324,328,333,336,337,339,342,344,348,349,353,362,373,374,376,379,381,393,395,397,398,403,404,410,413,432,440,441,442,445,448],somebodi:80,somehow:[74,288],someon:[0,59,72,74,275,335,448],someth:[18,26,44,48,49,55,58,61,72,74,76,77,78,80,99,266,267,277,279,292,300,304,312,314,321,333,339,342],sometim:[11,26,72,80,100,244,315,330,410,447],somewhat:[15,47,56,58,80,97,286],somewher:[11,48,51,58,72,74,267],soon:[25,44,45,74,100,276,308,338,349,410,445],soref:199,sorri:[74,97],sort:[41,44,45,46,56,58,74,80,82,83,84,86,87,96,98,104,138,141,178,179,180,181,182,183,184,185,186,187,188,290,300,307,326,349,365,403,418,431,441],sortcache_db:349,sortord:66,soth:98,sound:286,sourc:[2,5,27,41,44,49,51,52,53,55,61,65,71,72,80,88,90,160,161,164,178,180,181,182,183,184,185,186,187,188,190,266,267,269,274,286,288,309,319,330,333,349,360,410,411,431,432,435,439,445,447,448],sourceforg:[18,80],space:[3,6,7,9,10,11,15,19,28,30,41,52,53,55,56,58,64,68,71,74,93,97,109,139,140,142,160,164,190,206,267,275,276,277,278,282,286,288,290,297,299,304,331,349,352,367,388,405,410,417],spam:[27,33,41,160,178,180,181,182,183,184,185,186,187,188,300,349,374,387,403,417],spamtest:431,span:[74,126,219,220,221,222,286],sparc:104,spare:[11,58,339,344],sparingli:55,spawn:[96,98,308,309,314,341,348],speak:[3,11,36,41,262],spec:[56,309,402],special:[1,4,19,22,24,31,33,41,44,54,56,58,62,74,75,80,81,95,97,100,104,142,161,164,176,178,180,181,182,183,184,185,186,187,188,200,202,251,252,253,254,255,256,262,267,269,273,277,282,286,297,330,349,362,371,374,393,431,435,445,446,447],specialus:[161,374,441],specialuse_extra:349,specialuse_nochildren:349,specialuse_protect:349,specialusealwai:[208,209,210,211,212,213,214,215,216,217,219,220,221,222,349,431],specif:[6,7,8,11,24,40,41,44,48,49,55,56,58,66,68,72,75,76,91,97,98,99,100,147,160,163,168,191,195,203,262,267,274,275,286,288,289,309,312,319,321,343,344,345,348,349,355,356,365,368,369,373,374,378,387,403,406,410,431,433,435,446,447,448],specifi:[3,6,9,15,18,19,30,31,33,40,44,45,48,51,56,62,68,74,76,88,89,91,92,93,96,97,98,100,110,160,219,220,221,222,229,235,236,238,239,240,241,242,251,252,253,254,255,256,261,262,267,273,275,276,277,278,280,282,283,284,286,288,290,292,295,297,300,304,309,326,330,343,349,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,405,406,407,409,410,411,412,413,414,415,416,417,420,421,422,423,424,426,427,428,429,430,432,442,445,447],speed:[15,58,71,81,99,102,109,268,286,311,349,435,440],spell:[52,56,199,312,349],spellman:154,spelt:349,spend:[36,97],spew:97,spf:435,sph:102,sphinx:[49,52,178,181,182,183,184,185,186,187,188,192,198,199,212,213,214,215,216,217,219,220,221,222,225,247],sphinxcontrib:52,spice:51,spil:[150,164,203],spin:[15,97,121],split:[31,55,58,74,87,97,100,106,109,121,136,206,267,269,274,275,279,282,301,313,314,349,356,368,445,447],splitmeta:310,spnego:[93,431],spock:33,spoke:74,sponsor:102,spoof:41,spoofeddomain:373,spool:[7,11,13,15,31,35,40,57,65,74,87,97,109,122,262,266,267,269,275,279,281,283,286,292,301,309,310,330,349,354,359,367,369,387,388,390,403,411,417,445,447],spous:19,spread:[41,44,74,286,339],sql:[4,5,11,13,44,45,90,107,110,146,297,315,349,447],sql_:107,sql_databas:349,sql_engin:349,sql_hostnam:349,sql_passwd:349,sql_user:349,sql_usessl:349,sqldb:44,sqlite3:355,sqlite:[6,44,49,74,107,199,275,349,419],squat:[4,58,98,106,176,203,238,240,241,242,278,282,283,310,326,349,374,410,447],squat_decode_64:140,squatter1:410,squatter:[6,56,65,99,100,106,109,164,189,203,212,213,214,215,216,217,219,220,221,222,238,241,242,251,252,253,254,255,256,262,266,269,278,283,301,309,326,349,351,447],squattera:410,squirrl:97,src:[55,267],srcdir:99,srctier:410,srs:229,srs_alwaysrewrit:349,srs_domain:349,srs_hashlength:349,srs_secret:349,srs_separ:349,srvtab:[41,97,349],ssd:[11,15,139,278,313],ssf:[120,349,353,379,381,393,395,398,413],ssh:[61,447,448],ssl2:160,ssl3:160,ssl:[5,6,49,55,68,87,93,98,99,105,152,160,163,267,292,314,318,348,349,379,381,393,395,398,420,421,423,424,426,428,429,430,431,445],ssl_accept:105,ssl_ctx_load_verify_loc:68,sslv23:[98,174],sslv2:[98,113,146,174],sslv3:[113,146,174,431],sssd:[41,273],stabl:[2,11,12,48,52,56,72,81,84,87,96,158,161,162,163,164,165,166,169,170,171,172,173,174,175,176,189,190,191,192,193,199,200,201,202,203,204,205,206,292,339,432,435,447],stack:[56,75,80,100,138,349],stacktrac:447,staff:[11,41,273],stage:[47,48,64,72,74,90,99,100,200,262,275,277,330,349,411],stai:[9,30,53,276,288,382],stale:[74,96,275,309,313,355,365],stall:[178,183,184,185,186,187,188,231,243],stamp:389,stand:[7,231,243,267,274,276,279,286,411,445],standalon:[197,233,245,267,275,286,309,314,344],standard:[7,12,13,27,33,56,58,60,65,66,88,96,100,131,141,145,200,251,252,253,254,255,256,266,267,268,269,277,285,286,296,309,314,335,349,353,355,356,358,359,363,374,376,378,379,381,383,384,392,393,395,396,398,409,410,414,422,431,435,440,442,443,444,447,448],standardis:[223,226,243],stanza:280,start:[1,10,11,27,33,36,41,44,45,46,47,48,49,55,56,58,61,72,74,77,80,82,83,84,86,87,88,91,96,97,98,108,113,141,146,152,160,161,171,201,219,220,221,222,233,245,267,268,272,275,280,284,286,287,288,289,290,292,308,309,314,324,333,342,349,352,355,357,359,368,369,373,378,380,386,394,397,402,404,406,410,411,435,440,443,444,445,446,447],starttl:[18,68,82,83,84,86,87,97,98,105,107,156,163,164,173,203,267,288,349],startup:[44,45,74,97,136,174,243,251,252,253,254,255,256,266,280,288,309,314,341,348,349,359,397,406,411],stat:[97,189,199,210,211,212,213,214,215,216,217,219,220,221,222,223,275,284,349,355,397,403],state:[1,4,13,19,36,41,44,46,47,55,56,58,61,66,74,80,88,89,92,97,98,99,100,102,104,106,108,110,145,147,168,178,182,183,184,185,186,187,188,191,195,200,223,230,236,238,239,240,241,242,251,252,253,254,255,256,269,274,275,278,281,286,288,290,309,314,343,349,352,372,397,403,406,444,447],statedir:97,stateless:[44,66,90,314],statement:[55,75,140,143,228,246],station:[268,440],statist:[3,98,99,275,284,349,352,397],statoverrid:267,statscleanup:397,statu:[4,27,47,52,58,61,66,80,88,93,97,106,178,180,181,182,183,184,185,186,187,188,233,245,266,274,275,280,286,288,300,343,349,354,373,374,410,431,434,439,441,447],statuscach:[4,46,47,57,96,106,110,145,146,266,267,280,349,447],statuscache_db:[10,160,349],statuscache_db_path:[10,96,267,280,349],statusdata:47,std:[49,51,100],stderr:[68,100,354,386,411],stdin:[74,156,349,365,386],stdio:[60,68,296],stdout:[44,45,68,74,140,354,358,375,386,408,427],stefan:[112,140],stefano:223,steinar:97,stem:349,stemmer:349,step:[18,41,44,48,49,56,72,74,76,80,88,95,266,267,277,288,289,302,355],stepanek:443,stephen:339,stick:[48,286],still:[3,9,11,19,30,41,44,45,47,50,51,56,58,59,65,71,74,75,79,81,88,97,98,99,104,108,138,153,158,160,178,182,183,184,185,186,187,188,189,191,200,251,252,253,254,255,256,266,274,275,276,286,287,292,302,307,320,321,326,330,339,341,342,344,348,349,355,374,404,406,410,417],stipul:278,stock:[82,83,86,87,267],stomach:11,stonith:11,stop:[56,74,75,77,90,97,154,267,275,287,309,318,349,355,386,388,411,444,445],stopper:231,stopword:349,storag:[3,4,15,19,34,44,58,93,96,160,178,180,181,182,183,184,185,186,187,188,269,276,278,279,280,282,283,284,297,310,344,347,349,353,355,368,374,402,406,410,435,437,441,442,445,446,447],store:[6,9,11,13,15,22,27,30,31,33,36,44,45,46,47,56,58,62,69,72,74,76,88,93,97,98,100,122,160,178,183,184,185,186,187,188,196,206,220,221,222,228,232,244,251,252,253,254,255,256,266,267,268,275,278,279,280,282,283,286,288,292,297,300,304,309,313,314,315,339,344,349,353,356,372,374,377,379,381,385,392,393,395,398,406,410,411,419,431,442,445,447],storm:[24,99,160],straight:[44,45,65,75],straightforward:[276,286],strang:[44,80,288,349],strarrai:200,strategi:11,strcmp:[55,196,232,244],strconcat:[80,140],strdup:55,stream:[26,55,56,60,74,79,97,126,226,290,296,339,355,363,431],strength:[82,83,84,86,87,349,353,379,381,393,395,398,413],strerror:97,stress:[11,70,72,420,421,423,424,426,428,429,430],stretch:[36,443],strict:[349,431],stricter:158,strictli:[11,15,152,160,173,278,279,332,349],strike:98,string:[6,33,41,44,45,55,56,58,62,74,75,88,93,95,97,98,99,100,137,162,196,198,225,232,243,244,247,251,252,253,254,255,256,257,273,278,282,283,288,309,348,349,360,373,374,406,410],stringi:[51,266],stringlist:[75,99],strip:[19,58,88,349],strlcpy:[99,447],strncpy:447,strndup:55,stromso:172,strong:[337,343,349],strongest:[420,421,422,423,424,426,428,429,430],strongli:[40,160,266,288,309,416],strstr:68,struct:[46,47,55,56,58,59,60,68,80,296],structur:[1,6,11,44,45,47,51,54,55,58,59,60,74,75,97,98,102,161,267,282,283,288,296,297,309,314,327,349,360,442,445,447],struggl:52,sts:55,stub:[99,229],stuck:204,student:442,studio:175,stuf:11,stuff:[52,74,97,296,339,373,419,448],stupend:267,stupid:97,style:[18,41,52,55,58,91,178,179,180,181,182,183,184,185,186,187,188,251,252,253,254,255,256,266,273,349,362,374,391,416,447,448],stylesheet:[91,349],styx:205,sub:[4,19,33,41,58,62,74,76,80,93,97,98,109,152,155,274,280,288,298,304,307,349,355,363,369,374,388,403,410,447,448],subaddress:[300,349,431],subcommand:[41,219,220,221,222,235,236,238,239,240,241,242,251,252,253,254,255,256,261,262],subdirectori:[41,51,58,88,97,197,233,245,275,328],subdivid:349,subfold:[9,19,30,33,41,63,102,139,141,142,191,272,276,304,315,349,447],subj:[304,387,417],subjct:417,subject:[3,7,8,11,27,49,58,66,79,98,100,125,163,179,180,181,182,183,184,185,186,187,188,190,200,226,271,274,304,349,352,373],submailbox:[63,74,288,370,405,406],submiss:[3,41,227,274,349],submit:[1,36,50,53,71,97,274,349,417,435,439,447],submitserv:349,submitt:439,subpart:58,subprotocol:[90,431],subscrib:[6,7,19,41,52,82,83,84,86,88,100,132,137,160,274,286,288,307,314,349,352,418,433],subscript:[4,7,27,44,74,77,86,97,98,99,108,125,143,246,275,277,280,281,288,349,371,447],subscription_db:[160,349],subsequ:[6,55,97,160,164,196,232,244,251,253,254,255,256,292,326,330,349,365,374],subset:[88,89,92,286,300,314,356,410],subshel:374,substanti:[100,203],substitut:[35,48,72,267,278,282,349,373],substr:[56,99,141,349],subsystem:[44,56,58,59,99,100,122,136,402,447],subtl:[80,98,304],subtract:349,succe:[44,45,47,59,68,77,80,82,83,84,86,87,109,160,178,179,180,181,182,183,184,185,186,187,188,266,274],succeed:[74,197,233,245],success:[4,11,18,19,26,41,44,45,47,55,68,74,80,82,83,84,86,87,99,164,267,274,286,290,297,344,349,445],successfulli:[11,19,82,83,84,86,87,106,219,220,221,222,274,288,290,348,349,355,422],successor:[274,339],suck:[44,46,59,72],suddenli:74,sudo:[49,51,80,87,266,267,333,445],suffer:160,suffici:[11,18,25,105,267,349,410,445],suffix:[74,216,217,219,220,221,222,349,368],suggest:[96,98,267,275,289,318,321,323,339,342,344,439],suid_dump:328,suit:[1,15,51,60,70,74,88,89,90,91,92,93,98,267,296,304,314,349,445,447],suitabl:[11,40,48,99,266,267,275,290,313,314,445,447,448],sum:[9,30,41,71,74,276,298,349],summari:[27,49,80,316,433],summer:440,sun:[97,174,175,417],sundai:330,superb:[268,440],supersed:378,supervis:108,suppli:[5,11,41,68,74,93,97,99,100,130,321,342,359,361,365,368,420,421,423,424,426,428,429,430,432],support:[2,4,7,10,13,23,27,34,40,42,44,49,52,55,56,58,59,68,69,71,74,80,82,83,85,86,87,88,90,96,97,98,99,100,102,104,105,107,109,113,114,115,117,121,122,125,130,131,132,133,136,138,140,142,145,146,147,153,156,161,162,163,164,174,175,176,178,179,180,181,182,183,184,185,186,187,188,189,192,193,197,199,200,203,204,206,209,210,211,212,213,214,215,216,217,219,220,221,222,227,229,233,235,236,238,239,240,241,242,245,251,252,253,254,255,256,262,266,267,268,269,271,275,277,278,283,284,286,288,292,297,309,314,315,316,321,330,336,337,339,342,348,349,358,363,365,368,373,374,389,402,403,410,411,417,420,421,422,423,424,426,428,429,430,435,441,442,444,446,447],support_referr:198,suppos:[3,5,7,9,11,30,59,63,97,100,274,275,276],suppress:[6,13,33,51,58,97,98,99,104,139,141,155,267,270,304,315,326,331,349,388,405,447],suppress_cap:[141,349],sure:[7,12,44,47,48,49,53,55,66,72,74,87,96,100,160,228,266,267,275,288,289,292,294,300,308,313,314,318,324,328,338,342,348,349,357,403,434,445],suri:[113,158],surnam:19,surpris:[84,288],surround:448,survei:266,surviv:267,suse:[12,98],suspect:[79,275,288,314],sustain:[160,444],svg:448,svn:[80,448],swap:[33,53,97,266],sweep:[59,386,400],swiftli:11,symbol:[80,193,231,349],symlink:[59,98,178,179,180,181,182,183,184,185,186,187,188,398],sync:[53,58,61,64,65,74,78,87,108,141,173,203,219,220,221,222,267,275,280,286,287,290,314,349,359,371,410,411],sync_:[139,275,309],sync_apply_renam:74,sync_authnam:[309,349],sync_batchs:[178,183,184,185,186,187,188,309,349],sync_cache_db:[236,238,239,240,241,242,349],sync_cache_db_path:[236,238,239,240,241,242,349],sync_client:[64,74,104,108,122,138,145,150,152,176,178,180,181,182,183,184,185,186,187,188,228,251,252,253,254,255,256,275,309,314,349,351,353,359,371,413,445,447],sync_compress:[110,309],sync_crc:[74,154,161],sync_crc_annot:74,sync_host:[309,349,411],sync_lock:411,sync_log:[65,74,275,309,314,349,410],sync_log_chain:[309,349],sync_log_channel:[65,74,275,309,349,410,411],sync_log_fil:411,sync_log_mailbox:47,sync_log_unsuppressable_channel:[309,349,410],sync_mailbox_ful:141,sync_password:[309,349],sync_port:[309,349],sync_realm:[309,349],sync_reconnect_maxwait:[251,252,253,254,255,256,349],sync_repeat_interv:[309,349],sync_reset:[139,153,351,447],sync_response_pars:314,sync_restart:[197,233,245],sync_rightnow_channel:[236,238,239,240,241,242,349],sync_send_lookup:314,sync_serv:[61,74,104,109,122,143,154,174,251,252,253,254,255,256,275,309,314,349,351,406,411,447],sync_shutdown_fil:[309,349,411],sync_sieve_list_gener:74,sync_timeout:349,sync_try_imap:[309,349],syncappli:200,syncclient:[309,359,411],syncget:200,synchron:[11,68,93,97,121,122,269,285,286,287,288,309,359,411,413,431,442,447],synchronis:[66,74,90,224,246,275,314],synclog:410,synclogfil:410,syncnew:97,syncproto:199,syncrestor:200,syncserv:[309,413],syncstop:309,synctest:[275,351,447],syndic:431,synopsi:[309,349,447],syntact:[97,359],syntax:[15,18,40,52,97,300,318,321,349,374,431,448],synthet:[309,349],sys:328,syscal:339,sysconfdir:280,sysconfig:313,sysctl:[41,273],sysexit:[215,216,217,219,220,221,222],sysflag:[387,417],syslog:[51,97,100,139,142,150,156,167,194,203,215,216,217,219,220,221,222,227,266,349,394,403,410,435,437,446,447],syslog_facil:349,syslog_prefix:[267,349],syslogd:100,system:[0,1,3,4,6,11,13,15,18,19,33,36,41,44,47,49,51,55,58,61,64,68,70,74,77,80,82,83,84,86,87,93,96,97,98,99,110,137,143,144,152,155,158,162,175,176,192,193,223,228,251,252,253,254,255,256,265,266,267,268,269,271,274,275,279,281,286,288,300,302,307,309,315,320,326,328,341,344,348,349,352,355,357,374,386,404,410,411,412,413,431,435,436,439,440,442,443,444,445,446,447,448],systemctl:[84,266],systemrc:374,t1searchpartit:65,t227:147,t229:147,tab:[6,41,55,71,97,140,312,355,365,448],tabl:[1,6,18,74,76,88,97,99,100,196,232,244,267,348,349,352,373,386,447],tabul:267,tag:[1,2,11,42,48,68,76,80,91,97,203,265,274,286,290,349,431,435,447],tagged_abov:27,tahr:87,tail:51,tailor:[41,266,295,297],takatukaland:98,take:[7,11,19,25,33,36,40,44,45,46,51,52,55,56,57,58,59,68,71,72,74,75,79,80,81,96,97,98,99,102,122,262,266,267,268,275,276,286,288,290,300,302,315,326,330,339,348,349,372,386,406,418,419,440,441,447],taken:[7,11,80,100,275,349],talk:[3,6,15,66,71,74,160,286,288,309,324,342,349],tamplin:102,tape:309,tar:[48,51,72,74,81,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,238,239,240,241,242,243,244,245,246,247,251,252,253,254,255,256,257,261,262],tarbal:[2,48,49,72,96,164,178,181,182,183,184,185,186,187,188,233,245,445,447],target:[3,7,9,11,27,30,36,52,61,63,64,76,80,98,152,178,179,180,181,182,183,184,185,186,187,188,266,274,275,309,317,349,373,411,413],tartaru:65,task:[11,33,36,47,49,58,59,66,90,109,126,146,161,162,169,170,171,172,174,175,275,280,348,349,368,374,410,447,448],tast:284,tasti:74,tcl:[97,98,266,374],tcl_rcfilenam:97,tclconfig:97,tclsh:97,tcp4:348,tcp6:348,tcp:[41,96,138,139,267,286,288,293,294,295,302,309,341,348,349,445],tcp_keepal:[341,349],tcp_keepalive_:341,tcp_keepalive_cnt:349,tcp_keepalive_idl:349,tcp_keepalive_intvl:349,team:[12,38,50,53,81,85,87,96,97,175,267,427,432],tear:44,tear_down:80,teardown:[1,447],tech:[41,52,81,352,358,403],technic:[3,40,56,233,245,410,439],techniqu:[11,339],technolog:[5,11,13,26,81,279,282,313,440,442],teged:191,tel:[251,252,253,254,255,256],telemetri:[41,51,97,99,131,134,280,296,315,349,353,379,381,392,393,395,398,447],telemetry_bysessionid:349,tell:[11,31,42,46,71,74,80,97,164,278,282,288,289,290,292,318,349,353,379,381,393,395,398,403,410,411,413,432,447],telnet:[266,267,300,312,432],temp:[74,283,312],temp_path:[275,349],tempfail:344,templat:[52,76,91,93,216,217,219,220,221,222,349,372,373],temporari:[4,41,45,74,77,88,97,99,267,297,302,344,349,410,442,447],temporarili:286,tempsearchpartit:283,ten:[196,232,244,331],tenant:33,tend:[9,11,30,44,84,275,276,280,330,348,381,398],term:[11,33,36,49,74,75,109,226,267,321,330,349,374,410,417,448],termin:[36,52,55,56,58,68,75,99,100,267,300,328,348,349,365,386,410,448],terminolog:[285,301,330],terribl:288,test:[0,27,40,42,44,49,50,52,53,59,71,74,75,90,97,98,99,100,178,179,180,181,182,183,184,185,186,187,188,191,196,199,203,207,209,210,211,212,213,214,215,216,217,220,221,222,223,226,227,234,235,236,248,249,258,259,263,264,265,266,269,287,288,289,292,328,333,341,349,364,394,417,420,421,423,424,425,426,428,429,430,431,435,441,443,446,447],test_iovec:80,test_map:80,test_uncast_nul:80,test_whatev:80,testabl:80,testb:154,testc:80,tester:[0,70],testfold:27,testfolder_renam:27,testrunn:[51,225,247],testsaslauthd:[18,82,83,84,86,87,267,445],testslist:75,text1:80,text2:80,text:[5,6,27,48,49,51,52,56,58,68,74,80,81,87,97,98,100,102,147,178,181,182,183,184,185,186,187,188,198,225,228,244,247,251,252,253,254,255,256,287,338,349,355,356,358,365,373,397,410,417,431,432,448],tfz:48,than:[0,6,7,9,11,12,15,18,19,27,30,33,35,36,40,41,44,45,46,47,48,49,55,56,58,59,61,62,74,75,82,83,86,87,97,100,102,104,107,108,131,132,133,136,137,139,145,156,157,160,161,191,198,216,217,219,220,221,222,223,225,233,245,247,251,252,253,254,255,256,257,262,266,267,271,274,275,276,278,282,286,288,290,297,300,304,309,319,326,330,332,343,348,349,352,353,354,355,356,357,358,359,360,361,362,363,365,366,367,368,369,370,371,372,373,374,376,377,378,379,380,381,382,383,384,386,387,388,389,390,392,393,394,395,396,397,398,399,400,402,403,405,406,407,408,409,410,411,412,413,414,415,416,417,420,421,423,424,426,428,429,430,439,447],thank:[97,98,100,109,110,112,113,137,139,140,141,146,147,150,151,154,158,160,161,162,163,164,165,166,168,172,173,174,175,176,178,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,198,199,202,203,205,206,216,217,219,220,221,222,223,225,226,227,228,229,230,231,233,236,238,239,240,241,242,243,245,246,247,251,252,253,254,255,256,262,448],thei:[3,7,9,11,15,19,22,25,30,33,36,38,40,41,44,45,47,48,51,55,57,58,65,72,74,78,79,80,81,88,93,96,97,99,141,160,162,166,174,178,181,182,183,184,185,186,187,188,193,208,223,251,252,253,254,255,256,262,266,267,268,274,275,276,278,279,280,286,287,288,290,292,294,298,300,307,308,309,314,321,327,330,332,333,339,342,343,348,349,357,368,369,374,381,386,389,397,398,406,440,442,445],them:[3,6,7,10,11,18,25,31,41,44,45,47,48,49,51,55,56,57,58,59,66,71,72,74,75,80,81,88,89,90,92,96,97,100,102,104,160,174,191,219,220,221,222,251,252,253,254,255,256,266,267,271,274,275,282,286,288,290,292,294,298,300,304,314,321,333,340,344,349,355,373,374,377,381,386,391,398,402,403,406,410,411,417,419,442,445],themovieposterpag:373,themselv:[6,28,41,55,56,76,96,146,160,270,271,278,286,288,348,349,403,414],theoret:[44,286],theori:[11,307],thereaft:5,therebi:[11,286],therefor:[3,9,11,26,36,38,41,58,84,96,191,275,311,329,330,343],therein:[11,280,313,387,410],thereof:[11,24,55],thewrittenword:100,thi:[0,1,3,4,5,6,7,8,9,10,11,12,13,14,15,18,19,25,26,27,28,30,31,33,34,35,36,38,40,41,44,45,46,47,48,49,50,51,52,53,55,56,57,58,59,60,61,62,63,64,65,66,68,69,70,71,72,74,75,76,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,96,97,98,99,100,102,104,105,107,109,141,143,144,145,146,147,152,154,155,158,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,219,220,221,222,225,233,234,235,236,238,239,240,241,242,245,247,248,249,251,252,253,254,255,256,257,258,259,261,262,263,264,265,266,267,268,271,272,273,274,275,276,277,278,279,280,281,282,283,284,286,287,288,289,290,292,295,296,297,298,300,302,304,307,309,310,311,312,313,314,315,317,318,320,321,323,326,328,330,331,333,335,337,338,339,340,341,342,343,344,348,349,352,354,355,356,357,359,360,362,363,364,365,366,368,369,371,372,373,374,376,378,379,381,383,384,386,387,390,392,394,396,397,398,403,404,406,410,411,412,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,433,435,440,441,442,443,444,445,447,448],thin:80,thing:[3,11,15,41,44,45,47,55,60,72,74,80,81,96,99,136,141,145,152,266,267,273,275,277,280,286,292,296,307,321,324,338,339,349,402,404,445,447,448],think:[0,11,40,44,46,55,61,72,74,80,81,287,339,349,403],third:[19,27,41,47,70,74,75,97,110,268,277,349,356,366,397,410,440],thoma:[27,110,113,140,147,172,174,225,373],thomas_cooper94:373,thomson:431,thorough:288,those:[1,3,5,6,9,11,30,33,40,44,47,71,72,74,76,80,87,88,89,91,92,96,99,133,160,262,266,267,274,275,276,280,281,282,285,286,287,288,290,300,309,314,320,338,339,348,349,353,356,359,365,366,369,376,379,381,382,383,384,392,393,395,396,398,409,410,411,414,420,421,423,424,426,428,429,430,445],though:[3,5,33,36,44,55,56,72,74,84,97,99,100,274,277,286,288,290,330,339,342,349,378,411],thought:[1,74,435,447],thousand:[3,36,196,232,244,339],thrash:55,thread:[56,80,82,83,84,86,87,98,100,139,141,146,157,178,179,180,181,182,183,184,185,186,187,188,267,288,292,326,342,349,431],threadid:[251,252,253,254,255,256,277,349],three:[3,5,6,7,24,33,36,40,44,45,56,75,274,283,286,290,330,410,431,448],threshold:[15,27,41,74,411],throttl:410,through:[4,7,11,12,13,19,22,35,36,41,44,46,47,50,55,58,72,75,80,86,93,96,97,99,157,160,267,271,273,274,275,276,286,298,300,330,331,347,348,349,374,387,410,431,432,435,439,442,447],throughout:[3,18,44,45,56,58,98,99,304],throughput:[104,286,324],thu:[7,9,30,33,41,56,104,267,273,275,276,278,286,288,304,348,349,387,448],thumb:11,tibbit:205,tibbitt:199,tick:350,ticket:[5,11,41,432],tickl:97,tidi:[74,141,154,199],tie:51,tied:71,tier1:[278,283,349],tier1searchpartit:[278,283,349],tier:[6,15,65,269,278,349,410,447],tilt:309,tim:[300,427,443],time:[0,3,6,7,9,11,12,15,25,27,30,36,41,44,47,48,53,55,56,58,60,64,72,74,79,80,89,92,93,96,97,98,99,102,104,106,109,122,126,132,136,140,141,154,155,156,158,160,216,217,219,220,221,222,236,238,239,240,241,242,262,266,273,275,276,277,286,288,289,290,292,296,304,309,314,319,320,326,330,338,339,341,348,349,352,353,355,363,368,374,377,378,379,380,381,382,383,384,386,389,393,394,395,396,397,398,406,409,410,417,420,421,423,424,426,428,429,430,431,433,442,443,444,447],time_t:[58,60,223,296,326],timefram:11,timeout:[41,80,100,114,138,147,163,223,251,252,253,254,255,256,324,349,353,378,379,381,383,384,393,394,395,396,398,409,411,431],timer:349,timespan:349,timespec_to_timev:228,timestamp:[6,27,58,61,72,74,97,145,277,304,308,349,355,377,431],timestamp_gener:64,timezon:[6,27,51,58,71,88,97,133,191,219,220,221,222,349,360],timonei:443,timotheu:205,timsiev:[33,87,96,97,98,99,100,105,120,139,150,173,203,267,288,294,300,314,348,349,351,379,381,383,384,386,392,395,396,398,409,413,428,445,447],tini:[136,223,275],tinyint:18,tip:[41,71,273,324,447,448],titl:[300,448],tld:[300,334,335,349],tls1_0:[146,160,349],tls1_1:[146,160,349],tls1_2:[146,160,349],tls1_3:[192,349],tls:[82,83,84,86,87,142,223,296,349,420,421,423,424,426,428,429,430],tls_:100,tls_ca_:160,tls_ca_fil:[160,349],tls_ca_path:[160,349],tls_cert_fil:[160,349],tls_cipher:349,tls_cipher_list:349,tls_client_ca_dir:[160,267,349],tls_client_ca_fil:[160,267,349],tls_client_cert:[160,349],tls_client_kei:[160,349],tls_compress:[146,160,174],tls_crl_file:349,tls_eccurv:[146,160,349],tls_key_fil:[160,349],tls_prefer_server_ciph:[146,160,349],tls_prune:[164,202,267,280,348,351,447],tls_requir:[93,173,349],tls_server_ca_dir:[160,349],tls_server_ca_fil:[160,349],tls_server_cert:[160,216,217,219,220,221,222,267,349],tls_server_dhparam:349,tls_server_kei:[160,216,217,219,220,221,222,267,349],tls_session:[4,96,164,202,266,267,280,349,447],tls_session_timeout:[267,349,415],tls_sessions_db:[160,280,349],tls_sessions_db_path:[96,160,267,280,349],tls_version:[146,160,174,349],tlscache_db:[160,349],tlscache_db_path:[160,349],tlskei:[173,374],tlsprune:[267,280,348],tlsv1:[82,83,84,86,87,98],tm_gmtoff:97,tmartin:427,tmp:[44,51,74,77,266,288,300,312,328,349,358,361],tmpf:[59,96,139,266,267,280,313,315,349,410,447],tmpfile:99,tocdepth:199,todai:[8,11,268,440],todd:352,todo:[6,298,447],toe:44,toedtmann:98,togeth:[7,52,58,71,160,267,349,386,445,447],token:[44,82,83,84,86,87,97,251,252,253,254,255,256,318,349],tokenis:227,told:[80,233,245,275,348],tom:[117,286],tombston:195,tomorrow:11,ton:[49,51],toni:98,too:[5,11,46,58,74,80,88,97,136,137,138,149,155,160,162,163,164,200,203,266,267,280,281,319,330,348,374],took:[46,309],tool:[1,2,22,49,51,58,74,80,88,100,109,133,142,143,144,154,156,161,168,193,194,195,197,229,233,236,238,239,240,241,242,245,251,252,253,254,255,256,262,266,267,269,314,330,333,349,355,362,363,364,369,389,402,403,406,408,419,435,441,447],toolkit:435,toolnam:[44,45],toomanyarg:55,top:[3,27,33,44,48,55,58,72,80,98,178,181,182,183,184,185,186,187,188,251,252,253,254,255,256,266,267,286,288,307,349,374],topic:[53,349],topicbox:433,toplevel:[52,88,89,91,92,109,160,292,349],topolog:[11,276,313,447],tortiou:81,total:[6,9,11,28,30,58,75,80,276,288,349,387],totalemail:66,totalthread:66,touch:[7,44,308,313,376],toward:[9,11,30,35,40,96,178,181,182,183,184,185,186,187,188,276,306,330],trace:[80,274,349],track:[6,47,58,70,74,90,97,99,106,110,117,156,267,280,284,292,339,349,377,403,406,439,447],tracker:432,trade:309,tradeoff:[6,341],tradit:[6,15,52,55,80,102,278,310,344,416],tradition:[3,75,276,286],traffic:[11,33,46,88,100,110,114,120,136,275,349,368,411,433],trail:[19,71,97,98,349,417],transact:[6,57,64,74,93,98,106,107,286,290,349,357,365,411,447],transcod:447,transfer:[3,7,27,74,81,174,266,275,286,314,374,431,447],transfig:[49,266],transform:56,transit:[56,98,266,310],translat:[3,6,33,41,69,106,266,273,300,349,388,416,447],translates:229,translatesiev:[33,195,199,300,351,447],transmiss:431,transmit:[5,267,290,343],transp:[76,251,252,253,254,255,256],transpar:[7,36,71,74,88,99,262,286,313,420,421,423,424,426,428,429,430,431],transport:[5,36,41,66,90,96,267,286,294,295,300,301,343,349,431,442,445],trap:55,trash:[19,33,41,66,251,252,253,254,255,256,300,304,307,314,349,354,370,372,387,403,417],travel:[268,440],travers:[75,98],travi:50,treat:[11,19,41,44,58,91,95,97,171,190,219,221,222,244,273,292,297,314,343,349,373],treatment:80,tree:[5,10,51,59,75,80,160,164,267,281,286,288,292,310,333,336,349,368,405,410],trend:98,tri:[97,138,142,164,192,197,233,245,267,333,343,406],trial:[164,165,166,190,191,192,193,205,206],trick:[41,273,340,447,448],tricki:44,trickier:[56,286],trigger:[24,27,60,87,100,277,296,309,314,330,349,410],trim:[74,76,406],trim_attende:447,trip:[11,97],tripl:11,trivial:[56,344],trojan:373,trojita:154,troubl:[74,164,165,166,190,191,192,193,205,206,288,324],troubleshoot:[35,82,83,84,86,87,285,435,446,447],truncat:[19,55,97,108,131,133,139,277,297,332,349],trust:[5,11,97,160,383,384,396],trusti:87,trycreat:97,tselina:373,tstampfil:377,ttest:27,tue:[373,387,389],tugowar:99,tune:[99,286],turbid:98,turn:[11,40,41,44,80,87,97,98,108,245,251,252,253,254,255,256,266,275,277,307,328,342,349,404,431],turnaround:[236,238,239,240,241,242],tweak:[11,97,98,269,447],twelv:80,twice:[100,145,314,348,411],two:[3,4,5,10,11,15,18,19,28,33,40,41,44,45,53,55,56,58,61,62,64,74,75,80,97,99,152,215,216,217,219,220,221,222,231,243,267,268,270,273,275,278,286,288,289,290,292,300,309,313,314,320,330,333,337,339,349,350,403,410,417,419,431,447,448],twoskip:[4,44,66,74,88,90,169,171,176,215,216,217,219,220,221,222,246,275,297,349,447],txt:[56,77,97,99,343,349,358],ty347:350,typ:349,type:[3,4,7,11,27,44,51,52,55,58,59,66,68,80,88,100,117,127,134,136,145,164,223,229,251,252,253,254,255,256,262,267,269,275,280,286,290,297,300,302,312,316,336,348,349,357,371,410,420,421,423,424,426,428,429,430,431,447,448],typedef:[44,60,68,296],typic:[5,11,27,33,36,41,52,61,64,80,271,274,278,280,297,309,313,330,336,348,349,353,363,365,410,411,432,445],typo:[97,98,225,228,230,245,247],tyq4:350,tyranni:71,tyrrel:443,tzdist:[49,93,219,220,221,222,349,360],tzid:[6,76,88,226],tzid_prefix:88,u00fcederli:27,u7f:56,u7n:56,u83:56,u83_2:56,u83_3:56,ubuntu:[2,70,80,81,94,266,267,445,447],ucd:98,ucs:100,udp4:348,udp6:348,udp:[87,99,267,302,348,378,379,381,383,384,392,394,395,396,398,409,413,414],udv:304,ufl:339,uggh:74,ugli:[55,62,139],uhura:[33,69],uid:[5,6,27,36,41,47,58,61,74,76,97,122,204,205,275,286,304,326,330,349,358,363,373,387,403,417],uidl:[58,178,180,181,182,183,184,185,186,187,188,326,349],uidl_format:[178,180,181,182,183,184,185,186,187,188,349],uidlast:61,uidnext:[27,58,97,277,349],uidonli:349,uidplu:[82,83,84,86,87,97,100,330,431],uidset:27,uidvalid:[27,47,58,74,97,137,326,349,387,406,410],uint32:80,uint32_t:[47,80],uint:349,uintptr_t:228,ulimit:328,ulmer:339,ultim:[5,11,160],umanitoba:98,umask:349,umbrella:81,ume:100,umemoto:100,umich:117,unabl:[3,11,68,74,97,142,196,219,220,221,222,231,243,267,315,338,403,447],unaffect:[98,349],unalign:223,unambigu:62,unanim:439,unauthent:[41,88,122,139,192,273,290,431],unavail:[25,41,74,160,208,209,210,211,212,213,214,215,216,217,226,227,235,236,249,259,264,285,286,289,330,338,406],unbind:88,unbound:349,unchang:[6,160,262],unclear:79,uncom:[87,267],uncommit:[48,72],uncommon:[11,24,36,39,331],uncomplet:126,uncompress:[74,275,355,363],uncondit:75,uncondition:410,unconfirm:160,uncov:[80,339],undefin:[233,245],undelet:[74,141,269,271,274,301,307,447],undeliver:373,under:[5,6,10,11,19,24,25,28,33,35,41,46,47,48,51,52,55,56,57,58,59,70,72,80,81,88,89,91,92,97,100,108,114,122,160,161,166,178,179,180,181,182,183,184,185,186,187,188,193,217,219,220,221,222,267,292,305,309,315,327,330,348,349,353,381,392,395,398,409,435,439,441,445,447],underestim:355,underflow:227,undergo:53,underli:[11,44,46,47,59,158,349,403],underlin:52,underneath:[41,288,298,330,403],underscor:309,understand:[0,11,41,44,56,98,266,267,288,374],understood:[11,374],undertaken:268,undesir:160,undetermin:330,undifferenti:74,undocu:[106,326],undump:[74,100,117,155,192,251,254,255,256,349,356,359],unencod:[56,120],unescap:[228,349],unexpect:[11,97,142,288],unexpectedli:348,unexpung:[25,47,74,106,109,142,145,304,330,349,351,447],unfortun:[59,98,277,304,381,398],unhappi:80,unicod:[49,136,138,156],unicorn:87,unidata2:56,unifi:[4,98,102,122,276,286,290,314,349,410,447],unifix:56,uniform:[285,288],unindex:410,uniniti:97,uninitialis:[191,200,228],uninterrupt:286,union:[41,74,75,100],uniqu:[3,5,6,11,27,33,55,58,74,137,215,216,217,219,220,221,222,286,288,309,314,348,349,387,389,403],uniqueid:[47,58,61,74,98,104,145,203,224,246,251,252,253,254,255,256,266,275,363,369,389,403,406],uniserv:98,unit:[9,15,19,30,48,49,51,72,158,191,196,199,216,217,219,220,221,222,266,276,277,284,297,339,349,368,374,417,435,444,447],univers:[3,81,100,102,160,268,435,440,442,443,444],unix:[27,33,52,71,87,96,97,98,99,122,164,206,267,280,288,293,294,295,304,309,339,348,349,355,374,388,394,416,445,447],unix_group_en:349,unix_pwcheck:97,unixheirsep:155,unixheriarchysep:139,unixhierarchi:[33,205],unixhierarchysep:[18,33,41,63,87,91,98,99,100,131,145,178,182,183,184,185,186,187,188,266,267,273,292,300,334,349,362,374,416,417,432],unixhiersep:99,unknown:[191,267,321,349,374],unlabel:321,unless:[3,11,19,24,26,28,41,55,56,58,65,71,97,179,180,181,182,183,184,185,186,187,188,214,215,216,217,219,220,221,222,262,274,275,286,288,330,334,349,352,353,354,355,356,357,358,359,360,361,363,364,365,366,367,368,369,370,371,372,373,374,376,377,378,379,380,381,382,383,384,386,387,388,389,392,393,394,395,396,397,398,399,400,402,403,405,406,409,410,411,412,413,414,415,416,417,431],unlik:[36,80,286,314,336,368],unlimit:[19,28,140,157,158,171,235,236,238,239,240,241,242,297,328,348,349],unlink:[24,25,47,58,97],unlock:[44,45,46,59,74,88,176,355,447],unmailbox:[74,371],unmaintain:[236,238,239,240,241,242],unmark:[75,262,266],unmodifi:99,unnecessari:[227,355],unnecessarili:200,unord:[91,349],unpack:74,unpars:[74,138],unpleas:84,unpredict:74,unqualifi:[40,267,349,374],unreach:286,unread:[38,74,275],unreademail:66,unreadthread:66,unrealm:33,unrecogn:369,unreport:156,unrespons:349,unseen:[6,74,212,213,214,215,216,217,219,220,221,222,227],unseenmessag:[27,277,349],unselect:[82,83,84,86,87,153,251,252,253,254,255,256,349,431],unset:[58,349,417],unsign:[47,56,68,97,228],unsolicit:[61,122,233,245],unspecifi:[97,267,355,406],unstabl:203,unsubscrib:[74,97,100,286,349],unsuccess:[41,309],unsuit:[88,89,92,319],unsupport:[163,174,441],untag:[49,68,97,271],until:[8,11,25,26,44,45,47,55,58,59,74,96,102,142,157,160,219,220,221,222,251,252,253,254,255,256,266,268,275,288,297,302,321,330,348,349,355,386,411],untouch:382,unus:[41,44,49,56,59,74,227,251,252,253,254,255,256,275,331,341,349,371],unusu:[56,98],unwrap_str:75,upcom:[96,197,233,245],updat:[1,6,7,12,18,36,41,42,45,46,47,49,53,57,58,61,64,72,74,78,82,83,84,86,87,88,97,98,99,100,102,103,106,109,125,145,155,158,160,163,192,198,203,225,233,243,245,247,257,275,286,287,288,289,302,309,310,311,314,320,349,355,356,359,380,397,403,406,410,411,431,435,445,446,447,448],updatenotifi:47,upgrad:[33,40,44,58,84,87,96,97,98,100,110,152,153,155,156,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,251,252,253,254,255,256,262,319,339,356,362,369,403,410,431,435,446,447],upload:[42,48,61,74,75,99,138,166,193,204,244,251,252,253,254,255,256,262,288,309,349,410,427,431,447],upon:[6,9,19,30,55,59,87,88,97,160,266,267,276,278,280,286,288,297,309,349,359,365,374,381,386,398,410,422,447],upper:[56,163,251,252,253,254,255,256,349,439],uppercas:[56,141],upstream:[11,48,51,53,65,72,100,174,189,227,277,292,393,432],urandom:[337,349],urg:98,urgent:72,uri:[27,36,122,192,349],url:[6,47,72,89,91,93,97,121,125,133,202,262,349,394,397,431],urlauth:[6,51,82,83,84,86,87,102,136,349,431],urlfetch:[113,115,146,147,162,171,174,431],urn:[66,349],usabl:[80,361,365],usag:[4,6,35,41,44,45,52,66,74,75,80,90,98,99,102,106,109,138,141,143,154,155,160,162,199,228,266,275,288,297,298,307,309,330,349,361,367,371,374,387,402,403,410,447,448],use:[3,5,6,7,8,9,11,12,13,15,19,27,28,30,33,36,38,40,41,45,46,47,48,49,51,52,53,55,56,58,59,64,65,66,68,69,70,71,72,74,79,80,81,88,89,90,91,92,93,95,96,97,98,99,100,103,107,113,129,130,138,139,140,145,146,151,153,154,156,160,161,163,164,166,168,173,176,178,179,180,181,182,183,184,185,186,187,188,189,193,195,202,203,206,215,216,217,219,220,221,222,223,228,230,231,238,241,242,243,245,251,252,253,254,255,256,266,267,271,273,275,276,277,278,279,280,282,283,284,285,286,288,290,292,295,297,299,302,304,309,310,312,313,314,315,318,319,320,323,324,326,328,330,332,333,337,339,344,349,359,361,362,365,369,373,374,377,378,386,387,388,403,406,410,411,416,420,421,422,423,424,426,427,428,429,430,431,433,442,443,445,447,448],used:[3,5,6,7,8,9,11,15,18,19,27,28,30,33,34,35,36,40,41,44,45,46,47,49,51,52,55,56,58,59,60,63,65,68,69,72,74,80,81,87,88,91,93,96,97,98,99,100,102,104,105,106,107,120,129,141,146,160,162,163,169,175,176,178,179,180,181,182,183,184,185,186,187,188,191,193,196,201,203,206,216,217,219,220,221,222,223,232,244,246,251,252,253,254,255,256,266,267,268,271,273,274,275,276,277,278,279,280,281,282,283,284,286,288,290,292,294,295,296,297,299,300,302,304,307,309,312,313,320,326,328,330,332,335,339,341,342,343,348,349,352,353,354,356,357,358,359,360,361,365,366,368,371,372,373,374,376,378,379,381,383,384,386,389,393,394,395,396,397,398,403,406,409,410,411,415,416,417,419,420,421,423,424,426,428,429,430,432,433,435,440,442,444,445,448],useful:[0,9,18,30,31,33,38,40,44,49,51,55,56,58,74,80,87,98,99,100,117,203,215,216,217,219,220,221,222,275,276,277,282,288,292,309,349,355,356,359,363,369,374,386,397,403,406,410,411,417,420,421,423,424,426,428,429,430,442],usefulli:80,usefulness:97,useless:56,usenet:[6,41,100,267,292,349,391,431],user1:267,user2:267,user:[3,4,7,9,10,13,18,24,25,26,27,28,30,35,36,38,39,40,44,46,47,51,55,56,57,58,59,61,63,64,66,68,69,70,74,77,78,80,82,83,84,86,87,88,89,90,91,92,96,97,98,99,100,102,104,105,108,109,110,114,127,128,130,136,138,139,145,146,150,152,153,155,156,157,158,161,164,166,174,178,180,181,182,183,184,185,186,187,188,189,191,193,196,197,200,201,205,208,216,217,219,220,221,222,223,231,232,233,235,236,238,239,240,241,242,243,244,245,251,252,253,254,255,256,266,269,270,271,272,273,274,276,277,278,279,281,282,284,286,287,288,289,290,292,297,298,300,304,306,307,309,310,312,313,314,315,317,326,334,335,339,340,344,347,349,350,352,353,354,355,356,362,363,365,366,368,369,370,371,372,373,374,376,378,379,381,382,385,387,388,389,390,391,392,393,395,398,402,403,405,406,410,411,412,414,416,417,419,420,421,422,423,424,426,427,428,429,430,435,436,442,444,447],user_column:18,user_deleteacl:99,user_deni:[4,110,136,269,280,301,349,365,366,447],user_deny_db:160,user_folder_limit:[110,369],user_som:61,useradd:[267,445],userdeni:[146,280,349],userdeny_db:349,userdeny_db_path:[280,349],userflag:[59,368,387,417],userid:[4,18,27,40,41,46,47,64,74,88,92,93,100,178,182,183,184,185,186,187,188,200,208,245,266,273,275,280,286,340,349,350,352,355,356,363,365,368,376,377,388,391,393,402,403,405,406,411,420,421,422,423,424,426,428,429,430,447],userid_list:419,usermod:[267,445],usernam:[3,5,18,19,33,40,49,51,53,63,66,88,89,93,99,267,281,288,292,312,329,334,340,349,368,374,378,410,411,420,421,423,424,426,428,429,430,445,448],username_idx:18,username_tolow:349,userpassword:87,userprefix:[33,349],userrc:374,userspac:55,uses:[5,6,7,19,30,33,40,41,44,45,51,52,56,58,61,68,74,88,89,91,92,93,97,98,99,100,147,161,174,175,196,200,232,244,251,252,253,254,255,256,265,266,267,278,280,281,286,290,292,293,300,309,313,314,326,349,353,356,369,370,378,379,381,383,384,385,387,388,390,393,394,395,396,398,405,409,427,442,445,448],using:[3,6,7,9,11,12,13,18,22,30,31,33,36,38,40,41,44,45,46,47,48,49,51,52,53,55,58,59,61,62,66,68,72,74,75,80,81,87,88,89,90,92,93,96,97,98,99,100,102,105,106,109,117,127,137,145,156,160,161,164,165,166,190,191,192,193,203,205,206,219,220,221,222,229,233,235,236,238,239,240,241,242,243,245,246,251,252,253,254,255,256,261,262,265,266,267,268,271,273,274,275,281,282,283,284,285,286,287,288,289,292,294,300,304,305,307,309,310,311,313,314,318,319,321,323,326,330,334,335,336,338,339,349,354,355,356,357,368,369,371,373,374,376,379,381,385,386,393,394,395,398,403,410,416,420,421,423,424,426,428,429,430,432,442,445,447,448],usr:[49,51,61,65,80,96,97,154,160,191,266,267,280,288,300,304,307,308,309,310,312,318,320,328,349,354,357,359,361,378,380,410,411,445],usual:[6,11,40,41,52,72,74,80,86,98,166,193,267,271,273,275,286,300,310,314,330,349,380,420,421,423,424,426,428,429,430,432,445],uta:98,utc:[226,417,434],utcdat:243,utdalla:[98,99],utf7:349,utf8:[62,321,349],utf8smtp:349,utf:[27,49,97,98,100,106,136,163,206,321,349,373,431],util:[55,80,81,87,98,99,100,104,121,122,154,160,191,200,280,281,288,292,297,300,305,307,309,330,349,374,390,412,417,420,421,422,423,424,426,428,429,430,441,447],utilis:355,utop:87,uuid:[49,51,64,122,251,252,253,254,255,256,262,266,389],uutari:203,v14:212,v16:[213,214,215,216,217,219,220,221,222],v17:[235,236,238,239,240,241,242],vacat:[6,75,97,98,99,100,102,139,163,226,300,315,317,349,387,431,447],vader:[314,340],vain:98,val:55,valarm:76,valentin:[176,225],valgrind:[1,49,51,74,129,130,132,133,447],valid:[6,19,33,41,44,45,68,74,98,100,131,166,173,192,193,194,227,251,252,253,254,255,256,266,273,290,312,321,348,349,359,368,378,397],validitii:58,valu:[3,5,6,9,15,19,24,25,30,33,41,44,45,47,49,52,56,58,62,68,74,75,79,80,87,88,89,90,91,92,93,97,100,109,122,133,160,200,209,210,211,212,213,214,215,216,217,219,220,221,222,227,228,238,241,242,243,267,271,272,275,276,277,278,280,282,284,288,292,297,309,314,321,326,330,341,348,349,353,365,368,369,371,373,374,378,379,381,382,383,384,386,393,394,395,396,398,402,409,410,411,420,421,423,424,426,428,429,430,445,448],value1:62,value3:62,van:[163,439,443],vansant:443,varchar:18,vari:[52,304],variabl:[41,44,45,47,49,55,58,71,80,88,91,97,98,102,157,178,185,186,187,188,192,203,300,303,349,355,386,431,448],variant:[41,164],varieti:[5,7,9,10,11,94],variou:[2,11,31,40,41,49,55,58,72,80,88,90,97,100,109,160,161,162,163,174,175,176,193,196,205,206,231,247,262,266,279,280,282,285,286,288,292,297,309,313,336,344,349,356,357,358,359,360,368,389,397,410,442,443,445,447],vast:[286,313],vastli:35,vavail:[23,125,349],vcard:[6,93,189,226,251,252,253,254,255,256,349,431],vcard_max_s:[251,252,253,254,255,256,262,349],vcard_obj:6,vcard_uid:6,vcardfast:51,velasco:[162,173,229],vendonr:368,vendor:[11,88,99,102,104,117,128,267,271,274,292,319,326,349,368,410,445],ver:374,verbatim:[56,226],verbos:[18,52,74,98,132,262,267,349,355,356,360,362,363,368,373,375,382,397,403,404,406,410,411,412,416,417,420,421,423,424,426,428,429,430],verdor:368,veri:[5,7,11,18,28,36,44,47,48,51,55,56,58,72,75,80,87,97,141,145,267,274,275,281,286,288,292,309,316,343,349,355,359,410,440,441,443],verif:[5,41,49,74,87,160,230,275,292,308,355,359,420,421,423,424,426,428,429,430],verifi:[5,7,28,41,80,82,83,84,86,87,88,100,122,130,160,267,275,286,290,302,335,349,355,359,409,435,446,447],versa:[36,290,314,416],version:[2,6,8,9,11,12,18,27,30,42,44,49,51,52,56,58,62,74,75,80,81,82,83,84,86,87,88,96,97,98,99,100,113,141,147,150,152,153,154,156,160,161,162,164,167,168,173,175,178,179,180,181,182,183,184,185,186,187,188,191,194,195,197,198,199,214,215,216,217,219,220,221,222,225,226,227,233,235,236,238,239,240,241,242,245,247,251,252,253,254,255,256,257,261,262,267,274,275,286,288,290,292,304,309,310,313,315,316,319,330,339,342,349,352,356,357,359,360,365,366,368,369,371,373,379,386,387,403,406,408,410,411,431,432,435,438,441,444,447,448],vertic:36,vervet:87,verysecret:5,vevent:[23,132,266,349,431],vfreebusi:[23,349],vg_replace_malloc:80,via:[6,11,15,19,28,36,40,41,49,50,51,55,71,74,88,89,91,93,95,96,98,99,100,102,107,132,137,164,165,166,167,168,189,190,191,192,193,194,195,196,197,198,205,206,208,209,210,211,212,213,214,215,216,217,228,233,235,236,245,249,251,252,253,254,255,256,259,262,264,266,267,273,278,280,283,286,287,288,292,294,295,297,300,304,307,309,312,314,326,344,349,357,365,373,374,393,394,403,406,410,416,419,427,432,434,445,447],viabil:11,viabl:342,vice:[36,290,314,416],video:39,videocharg:339,vidic:[176,225],viehmann:110,view:[11,33,42,46,49,52,53,66,79,178,181,182,183,184,185,186,187,188,286,314,315,330,344,422,441,447],vim:[49,266],violat:[44,47,288],virtdomain:[18,40,41,100,138,163,178,182,183,184,185,186,187,188,200,245,267,273,340,349,374,432],virthost:267,virtual:[3,6,8,11,13,18,33,56,98,100,120,160,189,267,339,349,374,447,448],virtual_destination_concurrency_limit:267,virtual_destination_recipient_limit:267,virtual_mailbox_domain:267,virtual_mailbox_map:267,virtual_recipi:267,virtual_recipient_domain:267,virtual_transport:267,virtus:267,virtusert:267,viru:[27,267,373,447],virus:[300,373],virusscan_notification_subject:[349,373],virusscan_notification_templ:[349,373],virustest:431,visibl:[41,88,160,231,274,286,349,374],visit:[44,403],visual:[48,448],visudo:51,vivid:87,vjournal:[23,349,431],vladimir:98,vnd:[27,235,236,238,239,240,241,242,251,252,253,254,255,256,277,349],volatil:10,volum:[3,289,292,310,313,324,393],volunt:85,vote:439,voter:447,vpath:199,vpoll:[23,125,175,349,431,447],vsd:339,vtimezon:[76,88,93],vtodo:[23,349,431],vulner:[156,431],vzic:[88,133,349],wai:[7,11,12,31,40,41,44,47,52,55,58,59,60,72,74,77,80,87,97,141,152,160,203,262,267,273,274,275,276,282,285,286,288,292,296,300,304,308,309,313,314,315,317,330,333,339,343,347,349,352,356,365,374,403,435,443,447,448],wait:[11,15,26,44,47,58,71,72,74,88,308,348,349,353,355,378,379,381,383,384,386,393,394,395,396,397,398,406,409,411],wait_interv:411,waitev:296,walk:330,walkthrough:53,wall:[49,51,79],wallet:11,walter:[98,443],walther:[225,247],wamerican:266,wan:309,want:[0,5,11,18,26,33,41,44,47,51,52,53,57,65,66,72,74,79,80,81,83,84,87,97,160,164,238,241,242,251,252,253,254,255,256,267,275,279,282,288,292,300,304,318,321,328,333,337,339,349,354,406,411,427,433,435,442,444,445,446,447],wanttowrit:68,warm:339,warmuth:161,warn:[47,49,51,68,97,98,99,100,141,150,160,162,164,167,190,194,196,201,203,223,226,227,229,245,280,297,320,349,356,359,403,447],warranti:81,wart:62,wasn:[97,98,100,158,275,443],wast:99,water:[97,292,377],wbreyha:140,wcw:98,web1:369,web2:369,web:[11,22,36,66,88,89,93,208,251,252,253,254,255,256,300,339,349,431],webdav:[6,88,93,228,349,431,447],webdav_attachments_baseurl:349,webdav_attachments_max_binary_attach_s:[262,349],webmast:33,webserv:36,websit:[11,42,48,52,56,90,163,219,221,222,447],websocket:[49,90,214,215,216,217,219,220,221,222,251,252,253,254,255,256,349,431],websocket_timeout:[251,252,253,254,255,256,349],wed:387,week:[39,330,417,439],weekend:[24,39],weekli:[267,349,434,435,447,449],weight:[4,30,75,276,288,349,447],weiler:443,weird:[44,97,100,102,267],welcom:[0,345],well:[5,7,10,11,13,19,25,31,33,40,44,45,46,47,48,51,55,58,61,68,74,79,97,98,99,100,122,133,152,160,223,267,271,274,276,282,286,287,288,290,304,309,315,330,339,349,365,374,376,404,439,445,447],went:[74,97,109,266],were:[9,11,30,38,41,44,58,74,80,96,97,98,99,108,127,139,141,147,160,174,191,194,195,196,223,226,227,228,231,238,241,242,243,244,251,252,253,254,255,256,266,267,273,274,275,276,287,302,304,307,310,344,348,349,368,372,377,387,388,403,406,410,417,440],werewolf:87,werror:[49,51],wes:117,wextra:[49,51],wget:266,what:[1,3,4,5,7,11,15,20,24,25,28,33,36,41,44,47,48,51,71,72,74,75,79,84,87,91,97,99,175,267,270,273,277,280,285,290,292,300,314,315,316,318,319,339,349,356,359,372,381,387,398,402,406,410,416,431,432,438,445,447],whatev:[41,44,45,55,80,88,97,266,267,273,275,288,338,339,349,432],whatsoev:81,whatwg:[219,221,222],wheaton:98,when:[3,4,5,6,8,11,12,13,15,18,19,24,25,27,33,36,39,40,44,47,48,49,52,53,55,56,58,59,60,63,65,66,68,69,70,71,72,74,80,82,83,84,86,87,88,89,92,96,97,98,99,100,102,105,106,108,109,114,122,139,141,145,146,147,150,152,154,155,156,157,160,161,162,163,164,166,167,168,169,170,171,174,175,178,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,202,203,204,205,206,219,220,221,222,223,225,226,227,228,229,233,235,236,238,239,240,241,242,243,244,245,246,247,251,252,253,254,255,256,257,261,262,266,267,272,274,275,285,288,290,292,296,297,298,299,300,302,303,304,305,307,308,309,310,312,313,314,315,318,324,326,335,339,341,342,343,345,348,349,355,356,359,363,365,368,373,374,376,377,378,384,386,393,396,397,401,402,403,406,410,411,417,427,431,432,435,439,442,444,445,447,448],whenev:[50,55,58,59,97,290,292,304,349],where:[1,3,5,7,11,13,26,33,36,41,44,47,49,51,55,56,58,59,60,61,74,75,81,88,97,98,99,100,108,109,126,127,128,131,133,137,140,153,157,191,206,251,252,253,254,255,256,266,267,274,276,278,280,282,283,288,290,292,295,296,300,304,313,314,318,335,339,348,349,359,362,374,406,410,411,441,442,445,447],where_claus:18,wherea:[75,275,309],wherein:283,wherev:133,whether:[3,7,38,44,45,53,56,68,74,80,81,87,88,93,97,98,100,102,104,120,160,251,252,253,254,255,256,265,267,271,274,276,284,304,309,326,348,349,374,406,410],whi:266,which:[3,5,6,7,9,10,11,15,19,24,25,27,30,31,33,34,36,38,40,41,44,45,46,47,49,51,52,53,55,56,58,60,61,62,64,65,66,68,71,72,74,75,79,80,82,83,84,86,87,88,89,91,92,93,96,97,99,100,102,104,106,109,110,121,122,125,137,138,139,145,152,154,155,156,158,160,178,179,180,181,182,183,184,185,186,187,188,191,196,199,215,216,217,219,220,221,222,232,235,236,238,239,240,241,242,244,251,252,253,254,255,256,261,262,266,267,268,272,273,274,275,276,277,278,281,282,283,284,286,288,289,292,296,297,298,300,309,310,313,314,315,320,323,326,328,330,331,333,339,341,342,343,348,349,350,352,355,356,357,359,363,365,366,368,369,373,374,377,380,381,382,388,389,393,397,398,400,403,405,406,409,410,411,412,413,416,417,419,432,433,439,440,442,443,445,447],whichev:[88,109,320],whilst:368,white:443,whitespac:[19,56,97,98,190,288,348,349,350,391],who:[0,5,18,19,33,41,71,72,80,97,158,174,267,272,273,285,286,288,297,300,314,330,335,349,352,369,410,411,414,418,435,438,442,444,447],whole:[11,19,58,80,160,268,297,330,349,440,442],whom:[27,270],whose:[9,30,41,88,219,220,221,222,235,236,238,239,240,241,242,251,252,253,254,255,256,261,262,266,288,332,349,355,363,369,374,406,411,419,420,421,423,424,426,427,428,429,430,444],why:[11,33,51,56,58,71,74,267,315,339,366,447],wide:[13,49,58,235,236,238,239,240,241,242,286,302,326,344,362,442,444],widespread:442,widget:72,width:[58,349],wierd:156,wiggl:275,wiki:[55,70,349],wikidb:358,wikipedia:[51,55,80,268],wildcard:[140,366,374,403],wildmat:[6,91,292,349,365,377,391],wili:87,wind:[74,349],window:[11,52,99,219,221,222,266,349,360,431,448],wire:[5,11,58,62,74,93,290,349,435],wisdom:[266,318],wise:442,wish:[8,41,47,87,97,178,181,182,183,184,185,186,187,188,203,266,273,275,281,286,300,302,304,309,349],with_ldap:156,within:[3,5,6,11,14,15,22,27,28,33,40,41,44,45,52,55,59,68,74,75,87,93,136,271,272,275,278,288,290,299,300,302,307,309,330,339,348,349,352,386,403,406,417,431,447,448],withing:278,without:[3,6,7,11,12,15,18,24,28,33,40,41,44,45,47,49,53,55,56,57,58,59,64,69,70,72,74,75,80,81,88,95,97,98,100,120,129,140,141,142,152,155,158,164,174,190,191,201,203,223,225,228,244,247,251,252,253,254,255,256,262,266,267,273,274,275,276,278,279,286,289,290,300,302,307,309,342,348,349,355,361,365,368,371,372,373,406,411,412,418,431,442,445],wno:[49,163],woefulli:296,wolfgang:[140,146,147,162,163,164,175,202,203],won:[15,47,48,74,98,141,178,183,184,185,186,187,188,274,286,287,288,297,328,340,349,406],wong:[98,443],word:[3,7,41,46,55,62,66,80,97,160,206,227,251,252,253,254,255,256,330,339,349,410,448],work:[0,1,5,11,18,33,40,44,45,46,47,48,51,53,56,57,59,61,65,66,68,70,71,72,74,75,79,80,85,87,88,95,97,98,99,100,104,105,106,109,110,125,132,136,137,140,141,142,143,145,152,155,156,160,163,164,171,174,178,179,180,181,182,183,184,185,186,187,188,192,193,197,199,203,206,214,215,216,217,219,220,221,222,233,235,236,238,239,240,241,242,245,266,267,269,275,286,287,288,289,292,300,302,309,314,315,318,319,330,331,333,339,349,365,366,373,382,389,406,419,427,435,442,445,447,448],workabl:275,workaround:[11,74,97,134,342,349],worker:349,workflow:74,workshop:11,world:[41,42,61,267,286,292,435,444,447],wors:307,worst:339,worth:[7,11,53,98,160,275,448],worthwhil:81,would:[3,5,7,8,9,11,16,17,18,26,29,30,33,34,36,37,38,40,41,44,47,48,49,52,56,58,59,69,72,74,75,80,81,88,89,92,96,97,98,99,109,138,156,160,166,191,193,220,221,222,226,251,252,253,254,255,256,266,267,274,275,276,278,279,286,287,288,297,302,309,313,330,339,342,348,349,355,359,365,372,373,374,382,390,411,416,432,440,445],wouldn:74,wrap:[47,105,206],wrapper:[44,45,55,74,80,97,98,203,292,323,348],writabl:[18,44,266,349],write:[0,3,6,7,11,13,16,17,26,29,34,36,37,41,45,48,51,55,56,57,58,68,72,74,80,85,88,97,98,99,140,160,236,238,239,240,241,242,268,269,273,274,277,286,292,314,316,328,333,339,340,348,349,374,377,391,407,408,410,440,442,443,444,445,447],write_bodi:131,writeabl:[10,300],writefil:140,writer:58,writeutf8:56,written:[6,7,11,16,17,29,36,37,46,47,55,56,58,68,80,81,85,97,98,144,160,292,336,357,374,410,416,440,448],wrong:[48,51,55,72,74,97,141,223,228,244,266,349,402,419],wrote:[44,47,48,71,79],wrt:74,wslai:49,www:[36,40,70,81,265,267,349,435],x86:223,x86_64:[49,65,229,320],xapian:[6,44,49,51,66,83,178,179,180,181,182,183,184,185,186,187,188,189,192,199,201,203,204,209,210,211,212,213,214,215,216,217,219,220,221,222,223,226,227,231,245,251,252,253,254,255,256,278,283,349,410,441,447],xapianact:[4,57,280,410,447],xapplepush:[178,180,181,182,183,184,185,186,187,188,277],xavier:[191,193,223,229],xbackup:[275,349],xbackup_en:[275,349],xcal:[133,431],xconv:[251,252,253,254,255,256],xconvers:[90,349],xconvmodseq:74,xconvmultisort:349,xfd:[48,72],xfer:[74,100,121,122,125,140,141,145,147,150,151,152,153,154,155,156,158,161,167,168,175,193,194,195,197,198,202,225,227,230,233,245,247,251,252,253,254,255,256,257,262,266,286,349,374],xfz:[48,72],xlist:[19,87,145,161,266,349,362],xlt:56,xmalloc:[55,68,80],xml:[27,49,51,142,169,251,252,253,254,255,256,349,360,431,448],xml_support:228,xmpp:431,xor:58,xpath:266,xrealloc:[55,100],xref:[9,100],xrunannot:349,xsha1:199,xsnippet:[204,349],xstrdup:68,xutil:266,xxd:49,xxx:[40,44,47,56,286,328],xzmalloc:55,xzvf:81,y2k:377,yacc:[75,97,100],yahoo:[27,277],yann:154,yapc12:160,yeah:74,year:[11,44,154,158,206,339,352,377,435,440],yep:74,yes:[0,19,40,49,72,74,76,80,87,217,219,220,221,222,235,236,238,239,240,241,242,266,267,275,277,279,284,286,349,404,416,417,445],yet:[11,19,38,44,45,46,47,51,66,72,74,85,98,152,176,223,226,243,249,259,264,275,286,297,313,330,348,349,445,448],yield:275,yingbo:247,yjh:205,yoni:443,york:431,you:[0,3,6,7,9,11,12,15,16,17,18,26,27,28,29,30,33,34,36,37,40,41,44,45,46,47,48,49,51,52,53,55,57,58,59,65,66,70,72,74,77,79,80,81,82,83,84,85,86,87,88,89,90,93,96,97,99,100,145,157,160,164,165,166,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,199,203,205,206,214,215,216,217,219,220,221,222,235,236,238,239,240,241,242,251,252,253,254,255,256,261,262,267,271,273,275,276,277,278,280,282,286,287,288,289,290,292,297,300,302,304,307,309,311,312,313,314,318,319,321,322,323,324,328,329,330,331,332,333,334,335,337,338,339,340,341,342,348,349,353,354,356,359,361,365,369,371,373,374,381,386,390,394,397,398,403,404,406,410,411,416,419,420,421,423,424,425,426,427,428,429,430,432,433,435,441,445,446,447,448],young:292,your:[1,3,7,8,9,11,12,18,19,26,28,30,40,41,44,45,48,49,51,52,65,66,70,71,72,74,77,79,82,83,84,86,87,88,89,90,91,92,93,94,95,96,97,100,158,160,178,179,180,181,182,183,184,185,186,187,188,189,192,214,215,216,217,219,220,221,222,223,235,236,238,239,240,241,242,266,275,276,277,280,284,285,286,287,288,289,292,293,300,312,314,316,318,319,320,328,335,338,339,341,348,349,359,368,369,373,374,378,386,403,404,410,416,432,435,441,442,443,447,448],your_fork:53,your_usernam:53,yourself:[2,3,44,45,51,55,83,338,435,447],yourserv:284,yum:[82,84,86],yyi:40,yyyi:377,zan:206,zephyr:[97,98,394],zephyrgram:394,zero:[19,41,44,45,47,55,56,58,59,68,80,97,98,107,147,156,196,266,273,275,290,292,297,348,349,350,353,378,379,381,383,384,393,394,395,396,398,403,409,410],zeroskip:[6,88,90,214,215,216,217,219,220,221,222,297,349],zhukov:[189,203,206],zlib1g:[49,266],zlib:[12,49,74,227],zone:[93,349,360,431],zoneinfo:[4,219,220,221,222,280,349,360,447],zoneinfo_db:[88,349],zoneinfo_db_path:[88,280,349,360],zoneinfo_dir:[88,219,220,221,222,349],zoom:[71,434],zstandard:431,zstd:431,zzz:[40,61,267]},titles:["We need your help","Developers","Download","Glossary","Configuration Guide","Authentication and Authorization","Databases","Deployment Scenarios","Known Protocol Limitations","Mailbox Creation Distribution","Performance Recommendations","Storage Considerations","Supported Platforms and System Requirements","Features","Access Control","Archiving","Kerberos Authentication","LDAP Authentication","SQL Authentication","Automatic Creation of Mailboxes","CalDAV Collections","CardDAV Support","DAV Collection Management","DAV Components","Delayed Delete","Delayed Expunge","Duplicate Message Delivery Suppression","Event Notifications","Mail Spool Partitions","Mailbox Annotations (METADATA)","Mailbox Distribution","Mailbox Metadata Partitions","Message Annotations (METADATA)","Mailbox Namespaces","Quota","Sealed System Design","Cyrus IMAP Murder (Server Aggregation)","Server Side Filtering (Sieve)","Shared Seen State","Single-Instance Store","Virtual Domains","Concepts","IMAP Developer Guide","Developer APIs","CyrusDB API","cyrusdb API","Index API","Mailbox API","Releasing new builds of ancient Cyrus IMAP versions","Compiling","Cyrus Works","Developer Test Environment","Documentation","GitHub guide","Developer Guidance","Cyrus IMAP Server: Hacking","Cyrus IMAP Server: Internationalization","Cyrus IMAP Server: Locking","Cyrus IMAP Server: Mailbox File Formats","Cyrus IMAP Server: Namelocks","Cyrus IMAP Server: prot layer","Cyrus IMAP Server: Replication Examples","Cyrus IMAP Server: Replication Protocol v2.4+","Cyrus IMAP Server: Special Characters","Cyrus IMAP Server: var directory structure","Xapian for searching","JMAP support","Developer Libraries","<strong>imclient</strong> library","Namespaces: a developer view","Overview of Cyrus development environment","Development Process","Releasing Cyrus IMAP","Developer Thoughts &amp; Notes","Notes for backup implementation","Cyrus IMAP Server: Sieve Bytecode","Cyrus CalDAV Scheduling Flowchart","Enabling improved_mboxlist_sort","Cyrus IMAP Server: Notes","Cyrus IMAP Server: Prot Events","Unit Tests","Get Cyrus","CentOS","Debian","Fedora","openSUSE","Red Hat Enterprise Linux","Ubuntu","CalDAV","CardDAV","JMAP","RSS Feeds","WebDAV","HTTP modules","Configuring the MTA","Virus Scanner","Notes for Packagers","Cyrus IMAP 1.x Release Notes","Cyrus IMAP 2.0.x Release Notes","Cyrus IMAP 2.1.x Release Notes","Cyrus IMAP 2.2.x Release Notes","Cyrus IMAP 2.3 Releases","Cyrus IMAP 2.3.0 Release Notes","Cyrus IMAP 2.3.1 Release Notes","Cyrus IMAP 2.3.10 Release Notes","Cyrus IMAP 2.3.11 Release Notes","Cyrus IMAP 2.3.12 Release Notes","Cyrus IMAP 2.3.13 Release Notes","Cyrus IMAP 2.3.14 Release Notes","Cyrus IMAP 2.3.15 Release Notes","Cyrus IMAP 2.3.16 Release Notes","Cyrus IMAP 2.3.17 Release Notes","Cyrus IMAP 2.3.18 Release Notes","Cyrus IMAP 2.3.19 Release Notes","Cyrus IMAP 2.3.2 Release Notes","Cyrus IMAP 2.3.20 Release Notes","Cyrus IMAP 2.3.3 Release Notes","Cyrus IMAP 2.3.4 Release Notes","Cyrus IMAP 2.3.5 Release Notes","Cyrus IMAP 2.3.6 Release Notes","Cyrus IMAP 2.3.7 Release Notes","Cyrus IMAP 2.3.8 Release Notes","Cyrus IMAP 2.3.9 Release Notes","Cyrus IMAP 2.4-caldav Releases","Cyrus IMAP 2.4.17-caldav-beta1 Release Notes","Cyrus IMAP 2.4.17-caldav-beta10 Release Notes","Cyrus IMAP 2.4.17-caldav-beta11 Release Notes","Cyrus IMAP 2.4.17-caldav-beta2 Release Notes","Cyrus IMAP 2.4.17-caldav-beta3 Release Notes","Cyrus IMAP 2.4.17-caldav-beta4 Release Notes","Cyrus IMAP 2.4.17-caldav-beta5 Release Notes","Cyrus IMAP 2.4.17-caldav-beta6 Release Notes","Cyrus IMAP 2.4.17-caldav-beta7 Release Notes","Cyrus IMAP 2.4.17-caldav-beta8 Release Notes","Cyrus IMAP 2.4.17-caldav-beta9 Release Notes","Cyrus IMAP 2.4 Releases","Cyrus IMAP 2.4.0 Release Notes","Cyrus IMAP 2.4.1 Release Notes","Cyrus IMAP 2.4.10 Release Notes","Cyrus IMAP 2.4.11 Release Notes","Cyrus IMAP 2.4.12 Release Notes","Cyrus IMAP 2.4.13 Release Notes","Cyrus IMAP 2.4.14 Release Notes","Cyrus IMAP 2.4.15 Release Notes","Cyrus IMAP 2.4.16 Release Notes","Cyrus IMAP 2.4.17 Release Notes","Cyrus IMAP 2.4.18 Release Notes","Cyrus IMAP 2.4.19 Release Notes","Cyrus IMAP 2.4.2 Release Notes","Cyrus IMAP 2.4.20 Release Notes","Cyrus IMAP 2.4.21 Release Notes","Cyrus IMAP 2.4.22 Release Notes","Cyrus IMAP 2.4.3 Release Notes","Cyrus IMAP 2.4.4 Release Notes","Cyrus IMAP 2.4.5 Release Notes","Cyrus IMAP 2.4.6 Release Notes","Cyrus IMAP 2.4.7 Release Notes","Cyrus IMAP 2.4.8 Release Notes","Cyrus IMAP 2.4.9 Release Notes","Cyrus IMAP 2.5 Releases","Cyrus IMAP 2.5.0 Release Notes","Cyrus IMAP 2.5.1 Release Notes","Cyrus IMAP 2.5.10 Release Notes","Cyrus IMAP 2.5.11 Release Notes","Cyrus IMAP 2.5.12 Release Notes","Cyrus IMAP 2.5.13 Release Notes","Cyrus IMAP 2.5.15 Release Notes","Cyrus IMAP 2.5.16 Release Notes","Cyrus IMAP 2.5.17 Release Notes","Cyrus IMAP 2.5.2 Release Notes","Cyrus IMAP 2.5.3 Release Notes","Cyrus IMAP 2.5.4 Release Notes","Cyrus IMAP 2.5.5 Release Notes","Cyrus IMAP 2.5.6 Release Notes","Cyrus IMAP 2.5.7 Release Notes","Cyrus IMAP 2.5.8 Release Notes","Cyrus IMAP 2.5.9 Release Notes","Cyrus IMAP 3.0 Releases","Cyrus IMAP 3.0.0 Release Notes","Cyrus IMAP 3.0.0 beta1 Release Notes","Cyrus IMAP 3.0.0 beta2 Release Notes","Cyrus IMAP 3.0.0 beta3 Release Notes","Cyrus IMAP 3.0.0 beta4 Release Notes","Cyrus IMAP 3.0.0 beta5 Release Notes","Cyrus IMAP 3.0.0 beta6 Release Notes","Cyrus IMAP 3.0.0 rc1 Release Notes","Cyrus IMAP 3.0.0 rc2 Release Notes","Cyrus IMAP 3.0.0 rc3 Release Notes","Cyrus IMAP 3.0.0 rc4 Release Notes","Cyrus IMAP 3.0.1 Release Notes","Cyrus IMAP 3.0.10 Release Notes","Cyrus IMAP 3.0.11 Release Notes","Cyrus IMAP 3.0.12 Release Notes","Cyrus IMAP 3.0.13 Release Notes","Cyrus IMAP 3.0.14 Release Notes","Cyrus IMAP 3.0.15 Release Notes","Cyrus IMAP 3.0.16 Release Notes","Cyrus IMAP 3.0.17 Release Notes","Cyrus IMAP 3.0.18 Release Notes","Cyrus IMAP 3.0.2 Release Notes","Cyrus IMAP 3.0.3 Release Notes","Cyrus IMAP 3.0.4 Release Notes","Cyrus IMAP 3.0.5 Release Notes","Cyrus IMAP 3.0.6 Release Notes","Cyrus IMAP 3.0.7 Release Notes","Cyrus IMAP 3.0.8 Release Notes","Cyrus IMAP 3.0.9 Release Notes","Cyrus IMAP 3.1 Tags","Cyrus IMAP 3.1.0-dev Release Notes","Cyrus IMAP 3.1.1 Tag Notes","Cyrus IMAP 3.1.2 Tag Notes","Cyrus IMAP 3.1.3 Tag Notes","Cyrus IMAP 3.1.4 Tag Notes","Cyrus IMAP 3.1.5 Tag Notes","Cyrus IMAP 3.1.6 Tag Notes","Cyrus IMAP 3.1.7 Tag Notes","Cyrus IMAP 3.1.8 Tag Notes","Cyrus IMAP 3.1.9 Tag Notes","Cyrus IMAP 3.2 Releases","Cyrus IMAP 3.2.0 Release Notes","Cyrus IMAP 3.2.0-beta3 Release Notes","Cyrus IMAP 3.2.0-beta4 Release Notes","Cyrus IMAP 3.2.0-rc1 Release Notes","Cyrus IMAP 3.2.1 Release Notes","Cyrus IMAP 3.2.10 Release Notes","Cyrus IMAP 3.2.11 Release Notes","Cyrus IMAP 3.2.2 Release Notes","Cyrus IMAP 3.2.3 Release Notes","Cyrus IMAP 3.2.4 Release Notes","Cyrus IMAP 3.2.5 Release Notes","Cyrus IMAP 3.2.6 Release Notes","Cyrus IMAP 3.2.7 Release Notes","Cyrus IMAP 3.2.8 Release Notes","Cyrus IMAP 3.2.9 Release Notes","Cyrus IMAP 3.3 Tags","Cyrus IMAP 3.3.0 Tag Notes","Cyrus IMAP 3.3.1 Tag Notes","Cyrus IMAP 3.4 Releases","Cyrus IMAP 3.4.0 Release Notes","Cyrus IMAP 3.4.0-beta1 Release Notes","Cyrus IMAP 3.4.0-beta2 Release Notes","Cyrus IMAP 3.4.0-beta3 Release Notes","Cyrus IMAP 3.4.0-rc1 Release Notes","Cyrus IMAP 3.4.1 Release Notes","Cyrus IMAP 3.4.2 Release Notes","Cyrus IMAP 3.4.3 Release Notes","Cyrus IMAP 3.4.4 Release Notes","Cyrus IMAP 3.4.5 Release Notes","Cyrus IMAP 3.5 Tags","Cyrus IMAP 3.5.0-alpha0 Tag Notes","Cyrus IMAP 3.6 Releases","Cyrus IMAP 3.6.0 Release Notes","Cyrus IMAP 3.6.0-beta1 Release Notes","Cyrus IMAP 3.6.0-beta2 Release Notes","Cyrus IMAP 3.6.0-beta3 Release Notes","Cyrus IMAP 3.6.0-rc1 Release Notes","Cyrus IMAP 3.6.0-rc2 Release Notes","Cyrus IMAP 3.6.1 Release Notes","Cyrus IMAP 3.7 Tags","Cyrus IMAP 3.7.0-alpha0 Tag Notes","Cyrus IMAP 3.8 Releases","Cyrus IMAP 3.8.0-alpha0 Release Notes","Cyrus IMAP 3.8.0-beta1 Release Notes","Cyrus IMAP 3.9 Tags","Cyrus IMAP 3.9.0-alpha0 Tag Notes","Release Notes","Upgrading to 3.8","Installing Cyrus","Introduction to Cyrus IMAP","Administrator Guide","Access Control","Combining Access Rights","Access Control Defaults","Access Control Identifier (ACI)","Access Control Lists Rights Reference","Cyrus Backups","Mailbox Distribution","Cyrus Event Source","File &amp; Directory Locations","Archive Partitions","Configuration file locations","Directory Hashing","Spool Directories","Search Tiers","Monitoring","Cyrus Murder","Cyrus Murder: Concepts","Cyrus Murder Failure Modes","Cyrus Murder: Installation and Administration","Cyrus Murder Mail Delivery","Cyrus Murder Mupdate Details","HOWTO: Using an NGINX IMAP Proxy","Cyrus NNTP","Ports and Sockets","Cyrus Service Definitions","Cyrus Socket Locations","Cyrus Prot Layer","Quotas","Quota Roots","Supported Quota Types","Cyrus Sieve","Standard Operating Procedures","Running Cyrus IMAP Services on Non-Standard Ports","Alternative Namespace","Deleting and Undeleting Messages and Folders","Mailbox Operations","Mailbox Folders exempt from quota","Reconstructing Mailboxes","Reloading Cyrus IMAP Services","Replication: Installation and Administration","Splitting Metadata from Partitions","Using Squatter for Faster IMAP SEARCH","Managing user_deny.db","Tweaking Cyrus IMAP","System Architecture","Frequently Asked Questions","Which database backend should I use for which databases?","Duplicate Delivery Suppression","Compilation errors about kssl.h and krb5.h on Red Hat Linux/Fedora","Help! There must be an easier way to get all this going...","OpenSSL Version Mismatches","Why does Cyrus reject 8-bit characters in the headers of my messages?","Why does Cyrus reject messages with &quot;bare newlines&quot;?","How do I get Cyrus Sieve to play nice with Exim?","Why does mail delivery go slow or hang sometimes?","How do I view ACLs on a mailbox?","What annotations are available?","Is it safe to put &lt;configdirectory&gt;/proc and &lt;configdirectory&gt;/lock on a tmpfs filesystem?","How to enable core dumps","Why can I not delete a mailbox as an admin user?","When is What ... Deleted, Expired, Expunged or Purged?","Why is deliver.db so large?","I have multiple imapd-SERVICES configured and experience occasional freezes when I try to log in!","How to run gdb on Cyrus components","Cyrus delivers claims that the mailbox does not exist","Why is mail being rejected with No Mailbox found due to MiXed CaSe incoming e-mail?","Can I use MySQL (or another SQL database) as the primary mail store?","Why do POP3 connections take so long, but once the connection is established all is well?","Why does reconstruct -m not work?","Shared File Systems GPFS for high availability","How to enable telemetry","The process count keeps growing!","&quot;unable to join environment&quot; error","Why does Cyrus set the MAIL FROM address of the sender of vacation responses to '&lt;&gt;'?","Does the Cyrus Murder support High Availability configurations?","Can I configure pop3d to log amount and size of messages fetched by user?","How can I make CyrusSieve work with public shared folders?","Can I have subfolders not appear under INBOX?","<strong>cyrus.conf</strong>","<strong>imapd.conf</strong>","<strong>krb.equiv</strong>","Man pages","<strong>arbitron</strong>","<strong>backupd</strong>","<strong>chk_cyrus</strong>","<strong>ctl_backups</strong>","<strong>ctl_conversationsdb</strong>","<strong>ctl_cyrusdb</strong>","<strong>ctl_deliver</strong>","<strong>ctl_mboxlist</strong>","<strong>ctl_zoneinfo</strong>","<strong>cvt_cyrusdb</strong>","<strong>cvt_xlist_specialuse</strong>","<strong>cyr_backup</strong>","<strong>cyr_buildinfo</strong>","<strong>cyr_dbtool</strong>","<strong>cyr_deny</strong>","<strong>cyr_df</strong>","<strong>cyr_expire</strong>","<strong>cyr_info</strong>","<strong>cyr_ls</strong>","<strong>cyr_synclog</strong>","<strong>cyr_userseen</strong>","<strong>cyr_virusscan</strong>","<strong>cyradm</strong>","<strong>cyrdump</strong>","<strong>deliver</strong>","<strong>fetchnews</strong>","<strong>fud</strong>","<strong>httpd</strong>","<strong>idled</strong>","<strong>imapd</strong>","<strong>ipurge</strong>","<strong>lmtpd</strong>","<strong>lmtpproxyd</strong>","<strong>masssievec</strong>","<strong>master</strong>","<strong>mbexamine</strong>","<strong>mbpath</strong>","<strong>mbtool</strong>","<strong>mkimap</strong>","<strong>mknewsgroups</strong>","<strong>mupdate</strong>","<strong>nntpd</strong>","<strong>notifyd</strong>","<strong>pop3d</strong>","<strong>pop3proxyd</strong>","<strong>promstatsd</strong>","<strong>proxyd</strong>","<strong>ptdump</strong>","<strong>ptexpire</strong>","<strong>ptloader</strong>","<strong>quota</strong>","<strong>reconstruct</strong>","<strong>rehash</strong>","<strong>relocate_by_id</strong>","<strong>restore</strong>","<strong>sievec</strong>","<strong>sieved</strong>","<strong>smmapd</strong>","<strong>squatter</strong>","<strong>sync_client</strong>","<strong>sync_reset</strong>","<strong>sync_server</strong>","<strong>timsieved</strong>","<strong>tls_prune</strong>","<strong>translatesieve</strong>","<strong>unexpunge</strong>","<strong>arbitronsort.pl</strong>","<strong>dav_reconstruct</strong>","<strong>httptest</strong>","<strong>imtest</strong>","<strong>installsieve</strong>","<strong>lmtptest</strong>","<strong>mupdatetest</strong>","<strong>nntptest</strong>","<strong>pop3test</strong>","<strong>sieveshell</strong>","<strong>sivtest</strong>","<strong>smtptest</strong>","<strong>synctest</strong>","RFCs Supported by Cyrus IMAP","Reporting Bugs","Mailing Lists","Online Meetings","What is Cyrus IMAP?","Operations","Overview","About Cyrus","Cyrus Bylaws","Cyrus History","Cyrus Roadmap","About Cyrus","Who Is Cyrus","Preface","Quickstart Guide","Setup","Sitemap","Document Conventions","Support/Community"],titleterms:{"2839":191,"5464":160,"case":[9,30,36,276,335],"char":[44,45],"const":[44,45],"default":[12,41,49,96,160,178,182,183,184,185,186,187,188,208,209,210,211,212,213,214,215,216,217,219,220,221,222,235,236,238,239,240,241,242,249,251,252,253,254,255,256,259,261,262,264,272,282,283],"export":288,"function":[49,55],"int":[44,45],"long":337,"new":[6,41,48,80,96,146,160,173,205,206,266,292],"public":346,"short":61,"switch":[160,303],"true":286,"try":332,"var":64,"void":[44,45],Adding:[80,288],And:80,Are:80,DNS:286,For:93,Has:41,NFS:11,Near:41,Not:90,One:275,PTS:6,TLS:[6,267],The:[7,41,44,46,70,80,96,296,341,439],There:319,Use:[36,81],Used:28,Useful:71,Uses:63,Using:[52,71,80,275,291,292,311,313],With:278,about:[44,45,50,74,88,90,91,93,95,275,318,438,442,444],acap:56,access:[6,14,33,41,88,89,92,270,271,272,273,274,277,348],account:53,aci:[41,273],acl:[41,271,272,325],aclchang:27,action:[47,61],activ:290,actual:276,add:[53,76,267],addit:[49,65,282,288],address:[40,343],addressbook:89,addressbookprefix:89,adjust:[56,267],admin:329,administr:[33,40,41,66,88,89,92,269,272,275,288,309],again:287,aggreg:[7,36,41],all:[76,271,319,337],alloc:55,allow:160,allowplaintext:93,alpha0:[249,259,261,264],also:[68,348,349,350,352,353,354,355,356,357,358,359,360,361,362,363,365,366,367,368,369,370,371,372,373,374,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,420,421,422,423,424,426,428,429,430],altern:[41,49,273,303],altnamespac:33,amount:345,analysi:286,ancient:48,anfi_vcyru:267,ani:266,annot:[6,29,32,160,326],anonym:[41,273],anoth:336,anyon:[41,273],api:[43,44,45,46,47,59,296],appear:347,append:[47,271],appendic:286,appendix:286,appl:277,applepushservic:27,applic:[11,276],arbitron:352,arbitronsort:418,architectur:[269,275,286,288,309,314],archiv:[15,278,279],argument:374,articl:292,ask:315,assumpt:286,atom:[62,290],attende:76,authent:[5,13,16,17,18,41,49,93,267,286,290,374,445],author:[5,41,55,273,374,427],autoconf:160,autocr:[19,88,160],autom:19,automat:19,avail:[9,11,27,30,276,287,326,339,344],back:288,backend:[9,30,36,44,45,160,276,286,288,290,316],background:448,backup:[6,74,266,275,288],backupd:[74,353],bad:290,balanc:286,bare:322,basic:33,befor:71,begin:71,behavior:[41,297],being:335,benefit:286,beta10:125,beta11:126,beta1:[124,179,239,252,262],beta2:[127,180,240,253],beta3:[128,181,220,241,254],beta4:[129,182,221],beta5:[130,183],beta6:[131,184],beta7:132,beta8:133,beta9:134,between:[61,288],binari:96,bit:321,blow:287,board:439,bold:448,boyer:56,buffer:11,bug:[68,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,223,224,225,226,227,228,229,230,231,232,233,243,244,245,246,247,378,432],bugfix:[178,179,180,181,182,183,184,185,186,187,188,208,209,210,211,212,213,214,215,216,217,219,220,221,222,235,236,238,239,240,241,242,249,251,252,253,254,255,256,259,261,262,264],build:[12,48,49,52,81,192,193,194,196,198,223,224,225,226,227,228,229,231,233,243,244,245,246,247],busytim:76,busytime_query_loc:76,busytime_query_remot:76,bylaw:439,bytecod:75,cach:[6,47,58,266],calcul:41,caldav:[6,20,49,76,88,123,124,125,126,127,128,129,130,131,132,133,134,160,266,267],caldav_allowcalendaradmin:88,caldav_allowschedul:88,caldav_delete_sch:76,caldav_post:76,caldav_put:76,calendar:[13,76,88],calendaralarm:27,calendarprefix:88,callout:160,can:[160,329,336,345,346,347],cancel:76,canon:56,capac:11,carddav:[6,21,49,89,160,267],carddav_allowaddressbookadmin:89,cassandan:51,catchal:160,cento:82,certif:[10,267],chain:309,chang:[41,71,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,208,209,210,211,212,213,214,215,216,217,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,235,236,238,239,240,241,242,243,244,245,246,247,249,251,252,253,254,255,256,257,259,261,262,264,266,288,302,439],channel:[309,314],charact:[56,63,321],charset:56,chartabl:56,chat:74,chdir:374,check:[49,267],child:341,chk_cyru:354,claim:334,clamav:95,clean:341,clean_compon:76,client:[5,40,66,90,286,292,330,378],close:[46,47],cmd:160,code:[45,55,56,71],collect:[13,20,22],combin:271,come:286,command:[74,290,351,374],commit:47,common:315,commun:[71,267,449],compact:74,compar:56,compil:[49,56,65,66,277,318],complet:[266,307],compon:[12,23,70,76,267,333],compress:309,comput:9,concept:[40,41,286],conf:[96,160,173,314,348,349],config:[88,266,267],configdirectori:[267,327,445],configur:[4,18,24,25,40,41,44,45,51,65,80,88,89,90,91,92,93,94,95,96,146,160,178,182,183,184,185,186,187,188,205,206,208,209,210,211,212,213,214,215,216,217,219,220,221,222,235,236,238,239,240,241,242,249,251,252,253,254,255,256,259,261,262,264,266,277,280,284,288,292,300,309,332,344,345,351,386,445],connect:[337,341],consid:75,consider:[11,58,59,309],consist:72,contact:[13,289],content:[48,72,80,275,300],context:304,contributor:443,control:[14,15,41,56,88,89,92,270,272,273,274,292,294,295,297,348],convent:[52,448],converg:9,convers:6,convert:297,copi:[266,286],core:[328,439,443],corrupt:74,cost:11,count:341,counter:6,creat:[18,41,47,53,76,267,272],createmailbox:374,creation:[9,19],cross:48,ctl_backup:[74,275,355],ctl_conversationsdb:356,ctl_cyrusdb:[44,357],ctl_deliv:358,ctl_mboxlist:359,ctl_zoneinfo:360,current:63,cvt_cyrusdb:[44,361],cvt_xlist_specialus:362,cyr_backup:[74,275,363],cyr_buildinfo:364,cyr_dbtool:[44,365],cyr_deni:366,cyr_df:367,cyr_expir:368,cyr_info:369,cyr_l:370,cyr_synclog:371,cyr_userseen:372,cyr_virusscan:373,cyradm:[161,173,292,374],cyrdump:375,cyru:[1,6,7,8,12,18,24,25,30,36,41,48,49,50,51,55,56,57,58,59,60,61,62,63,64,65,66,70,72,75,76,78,79,81,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,266,267,268,275,277,285,286,287,288,289,290,292,294,295,296,300,302,308,313,314,321,322,323,333,334,343,344,348,431,435,438,439,440,441,442,443,444,445],cyrusdb:[44,45],cyrusdb_:44,cyrusdb_abort:[44,45],cyrusdb_clos:[44,45],cyrusdb_commit:[44,45],cyrusdb_consist:[44,45],cyrusdb_cr:[44,45],cyrusdb_delet:[44,45],cyrusdb_don:[44,45],cyrusdb_dump:[44,45],cyrusdb_fetch:[44,45],cyrusdb_fetchlock:[44,45],cyrusdb_foreach:[44,45],cyrusdb_foron:[44,45],cyrusdb_init:[44,45],cyrusdb_open:[44,45],cyrusdb_stor:[44,45],cyrusdb_sync:[44,45],cyrusman:52,cyrussiev:346,cyrusv2:267,daemon:[333,348],data:[9,11,44,45,56,74,191,266,276,290],databas:[6,10,18,42,49,74,160,266,280,286,288,290,297,316,336],datalen:[44,45],dav:[6,13,22,23],dav_reconstruct:419,davdriveprefix:92,debian:[83,174],debug:[51,80],declin:76,defin:[15,292],definit:[286,294,304],delai:[24,25,47],delet:[24,47,76,271,290,304,329,330],delete_mod:160,deleteaclmailbox:374,deletemailbox:374,deliv:[6,40,76,288,331,334,376],deliver_merge_pollstatu:76,deliver_merge_repli:76,deliver_merge_request:76,deliver_merge_vpoll_repli:76,deliveri:[6,26,41,267,286,289,317,324,445],depend:[49,65,162,163,164,176,189,199,206],deploy:7,descript:[15,68,348,349,350,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,426,427,428,429,430],design:35,detail:[44,45,58,290],determin:305,dev:208,develop:[1,42,43,49,51,54,66,67,69,70,71,73,90,160,265,439],devic:[9,30],differ:275,directori:[41,64,267,278,280,281,282,307],disconnect:374,discret:[7,36],discretionari:270,disk:11,displai:91,distribut:[9,30,81,88,160,276,288,313],dlist:62,document:[52,160,448],doe:[160,321,322,324,334,338,343,344],domain:40,down:266,download:2,draft:431,due:335,dump:328,duplic:[6,26,41,317],each:76,earlier:441,easi:287,easier:319,email:[267,292],enabl:[12,15,77,328,340],end:[93,288],engin:439,enhanc:[160,302],enterpris:86,environ:[7,51,70,267,342],ephemer:[96,267,280],equal:[9,30,276],equiv:350,erratum:200,error:[318,342],establish:337,etc:[96,275],evalu:75,event:[27,60,76,79,160,277,296,348],everyon:275,everyth:18,exampl:[27,30,33,44,45,52,59,61,68,276,348,350,352,353,354,355,356,357,358,359,360,361,362,363,365,366,367,368,369,370,371,372,373,376,379,380,381,382,383,384,387,388,389,390,392,395,396,397,398,402,403,405,406,409,410,411,413,414,417,418,420,421,423,424,426,428,429,430],exclud:[30,76],exclus:[9,276],exempt:306,exim:323,exist:[266,334],exit:374,experi:332,experiment:[203,223],expir:[292,304,330],expung:[25,330],expunge_mod:160,extend:160,extens:[223,226,243,300],extern:[56,81],facil:41,fail:80,failov:309,failur:[286,287],faster:311,featur:[13,96,160,203,223,266,267,271,315,435],fedora:[84,318],feed:[91,292],fetch:345,fetchnew:[6,377],field:349,file:[6,41,42,52,58,62,96,266,267,275,278,280,286,313,314,339,350,351,352,353,355,356,357,358,359,360,361,362,363,365,366,367,368,369,370,371,372,373,376,377,378,379,380,381,382,383,384,386,387,388,389,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,409,410,411,412,413,414,415,417],filesystem:[10,96,327],filter:[37,41],find:[286,290],finish:48,first:47,fit:[9,30,276],fix:[160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,210,211,212,213,214,215,216,217,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,235,236,238,239,240,241,242,243,244,245,246,247,249,251,252,253,254,255,256,259,261,262,264],fixup:56,flag:[44,45,62,330],flagsclear:27,flagsset:27,flat:6,flowchart:76,fname:[44,45],folder:[11,19,61,160,300,304,306,307,330,346],footprint:160,forc:[44,45],foreach_p:[44,45],fork:53,form:56,format:[49,58,75,160,290],found:335,freebusi:88,freez:332,frequent:315,from:[76,81,266,267,275,288,306,310,343,445],front:288,frontend:[9,30,276,286],fud:378,full:[44,45],further:[66,292],futur:[56,58,63,286,441],gdb:333,gener:[11,55,56,75,93,95,311],get:[42,81,319,323],getmetadata:374,git:81,github:[52,53,71],global:302,glossari:3,going:319,goodp:[44,45],gotcha:[44,288],govern:439,gpf:339,greater:160,group:[267,275,439,445],groupwar:11,grow:341,guid:[4,42,53,269,445],guidanc:54,guidelin:276,hack:55,handl:56,hang:324,happen:[9,30,276,286,287],hard:287,hash:281,hat:[86,318],have:[287,332,347],header:[58,321],help:[0,319,374],hex32:62,hex:62,high:[314,339,344,441],hint:55,histori:[353,355,356,360,362,363,366,368,369,371,373,379,397,403,406,410,411,422,440],host:[7,160],how:[44,50,266,323,325,328,333,340,346],howto:291,http:[76,93],httpd:[49,93,379],httpmodul:93,httptest:420,hub:70,idempot:309,identifi:[41,273],idl:[12,380],ietf:431,iii:439,imap4:442,imap:[7,8,12,24,25,30,36,41,42,44,48,55,56,57,58,59,60,61,62,63,64,72,75,78,79,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,268,275,286,291,302,308,311,313,330,431,435,442],imap_current_stable_vers:52,imapd:[96,173,314,332,349,381],imapfe:292,imaptest:51,imclient:68,imip:76,imip_send:76,impact:160,implement:[8,56,59,74,90,286],implicit:[41,272],improv:96,improved_mboxlist_sort:77,imtest:421,inbox:347,includ:160,incom:335,index:[6,46,58,74,160,311],individu:[274,307,443],info:374,inform:[30,71,93,292],initi:[41,272,275,290],input:56,instal:[51,66,74,81,266,267,275,288,300,309,315,445],installsiev:422,instanc:[39,41,76],instruct:74,integr:[11,267],inter:72,interfac:[44,56],intern:1,internation:56,interoper:315,intro:[45,46,47,58,59],introduct:[48,56,61,80,268,275,300],invoc:311,invok:314,ipurg:382,isched_send:76,ischedul:[76,88],iscsi:11,issu:[53,191],ital:448,item:[266,276],itip:76,jmap:[49,66,90,223,226,243,266],join:342,just:302,keep:[288,341],kei:[6,44,45,53],kerbero:[16,41,273],keylen:[44,45],keyword:68,known:8,krb5:318,krb:350,kssl:318,kvlist:62,languag:41,larg:331,launch:[267,445],layer:[60,296],layout:45,ldap:17,ldap_tls_:160,level:[11,314,441],librari:[67,68],libtool:160,licens:81,lifetim:57,limit:[8,19,275],line:[74,374],link:72,linux:[86,302,318],lirstw:271,list:[6,41,52,62,67,71,74,91,274,286,290,355,433],listaclmailbox:374,listmailbox:374,listquota:374,listquotaroot:374,lmtp:[41,160],lmtp_catchall_mailbox:160,lmtp_fuzzy_mailbox_match:160,lmtpd:383,lmtpproxyd:384,lmtptest:423,load:[13,275,286],local:[41,76,289],locat:[278,280,282,283,295],lock:[8,47,57,58,59,74,275,313,327,355],log:[41,314,332,345],login:[27,41,160],logout:[27,290],longer:341,loss:191,lrs:271,lrsip:271,lrsp:271,lrswipkxtecd:271,lrswipkxtecda:271,lrxte:271,lun:11,machin:80,macro:[56,271],mail:[28,40,41,49,52,71,267,278,286,288,289,300,313,324,335,336,343,433,445],mailbox:[5,6,8,9,13,18,19,29,30,31,33,41,47,57,58,74,91,160,272,276,286,288,289,290,304,305,306,307,313,325,329,334,335],mailboxcr:27,mailboxdelet:27,mailboxrenam:27,mailboxsubscrib:27,mailboxunsubscrib:27,mailer:267,major:[178,179,180,181,182,183,184,185,186,187,188,208,209,210,211,212,213,214,215,216,217,219,220,221,222,235,236,238,239,240,241,242,249,251,252,253,254,255,256,259,261,262,264],make:[56,71,80,346],man:[52,351],manag:[13,22,269,300,312],manual:309,map:62,map_fre:55,map_refresh:55,masssievec:385,master:[96,287,288,290,309,386],maximum:341,mbexamin:387,mboxconfig:374,mboxkei:6,mbpath:388,mbtool:389,meet:434,member:76,memcpi:55,memori:[55,160],messag:[13,26,32,41,58,61,74,76,292,304,321,322,330,345],messageappend:27,messagecopi:27,messageexpir:27,messageexpung:27,messagemov:27,messagenew:27,messageread:27,messagetrash:27,metadata:[29,31,32,160,271,278,282,310,313],method:394,mime:442,minim:56,miscellan:160,mismatch:320,mix:335,mkchartabl:56,mkimap:390,mknewsgroup:391,mode:[9,30,33,276,286,287,309,355,363,406],model:46,modifi:76,modul:[55,93],monitor:[41,284,297],mono:448,moor:56,more:56,most:[9,30,276],motiv:75,move:[275,288,330],mta:[94,267,445],multi:7,multipath:11,multipl:[40,275,332],multiplex:286,mupdat:[286,287,288,289,290,392],mupdatetest:424,murder:[7,9,12,30,36,41,49,160,175,266,285,286,287,288,289,290,314,344],must:319,mysql:[18,336],name:[96,160,283,286,374,427],namelock:[59,160],namespac:[33,69,303],need:0,neg:41,network:55,newli:[41,272],newlin:322,newsgroup:292,nginx:291,nice:323,nntp:292,nntpd:393,nntptest:425,non:[302,448],none:271,nonstandard:[223,226,243],noop:290,normal:56,note:[11,48,58,72,73,74,78,96,97,98,99,100,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,208,209,210,211,212,213,214,215,216,217,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,235,236,238,239,240,241,242,243,244,245,246,247,249,251,252,253,254,255,256,257,259,261,262,264,265,266,374,376,386,448],notif:[27,41,160,373,394],notifyd:394,now:275,num32:62,num:62,numer:[41,299],object:[62,267],occasion:332,octet:56,off:33,older:265,onc:337,one:[76,275],onli:49,onlin:434,open:[46,47],openssl:320,opensus:85,oper:[72,286,301,305,309,313,315,436],option:[12,49,66,88,146,160,173,205,206,267,277,284,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,419,420,421,422,423,424,426,427,428,429,430],order:[57,72],organ:76,other:[33,41,49,75,76,162,163,164,175,176,189,192,197,198,199,200,201,202,203,224,225,229,233,245,246,247,257,272,275,309],outbox:76,outgo:300,over:41,overal:75,overview:[6,52,70,266,277,286,292,437],own:80,owner:[41,272],packag:[81,96,445],page:[52,351],pam:18,pam_mysql:18,particip:[71,290],particular:275,partit:[9,28,30,31,41,74,160,275,278,279,282,283,310,313],past:443,patch:[52,71,174,267],path:160,pattern:56,per:280,perform:[10,11,15,76],period:309,person:33,phabric:160,place:266,plai:323,plaintext:41,plan:266,platform:12,point:[9,30],pollin:48,pop3:[8,41,337],pop3d:[345,395],pop3proxyd:396,pop3test:426,pop:286,port:[267,293,294,302,445],post:[76,271,292],postfix:267,pre:[18,48,70,72],predefin:96,prefac:444,prefix:[44,45],prefixlen:[44,45],prepar:[266,267],prerequisit:[48,72],primari:336,problem:315,proc:[41,327],procedur:301,process:[36,71,341,439],process_attende:76,procp:[44,45],product:265,program:96,promstatsd:397,proport:448,prot:[60,79,296],proto:267,protocol:[8,11,41,62,267,445],provis:92,provok:275,proxi:[7,291],proxyd:398,ptdump:399,ptexpir:400,ptloader:401,ptscach:6,pull:[52,53,275,292,448],purg:330,purpos:[15,96],push:[275,277,288,292],put:[76,80,327],queri:[76,289],question:[74,315],quick:[40,445],quickstart:445,quot:448,quota:[6,19,34,41,160,297,298,299,306,402],quotachang:27,quotaexce:27,quotalegaci:6,quotawithin:27,rc1:[185,222,242,255],rc2:[186,256],rc3:187,rc4:188,read:[44,47,271,292],readahead:11,rebuild:51,recipi:76,recommend:[10,12],reconstruct:[41,74,266,307,338,374,403],record:[47,58],recov:[287,307],recoveri:[41,287],recurr:76,red:[86,318],reduc:275,redund:11,refer:[44,45,56,274,427],referr:286,regular:56,rehash:404,reindex:74,reject:[321,322,335],releas:[42,48,72,81,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,208,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,237,238,239,240,241,242,243,244,245,246,247,250,251,252,253,254,255,256,257,260,261,262,265,439],reload:308,relocate_by_id:405,remot:76,remov:[41,76,223],renam:[41,47,74],renamemailbox:374,repair:[41,297],repli:76,replic:[7,11,12,36,49,61,62,266,275,309,314],replica:309,report:432,repositori:53,represent:276,request:[52,53,76,315],requir:[12,49,56,65,275,288,309],requisit:[18,70],reserv:290,reset:[9,30,276],resourc:[42,76],respons:[76,290,343],restor:[74,275,406],restrict:[28,160],retdb:[44,45],retent:11,reus:341,rfc822:62,rfc:[52,160,431],right:[41,271,272,274,275],roadmap:[439,441],rock:[44,45],roll:[275,309],root:[41,298],rss:91,rss_feed:91,rss_feedlist_templ:91,run:[51,80,267,302,333],safe:327,same:[9,30,276],sampl:[41,66,96],sanit:76,sasl:[18,49,267,435,445],saslauthd:18,scalabl:11,scan:95,scanner:95,scenario:[7,30],sched_busytime_queri:76,sched_cancel:76,sched_declin:76,sched_deliv:76,sched_deliver_loc:76,sched_deliver_remot:76,sched_exclud:76,sched_pollstatu:76,sched_repli:76,sched_request:76,sched_vpoll_repli:76,schedul:[76,275],script:[19,80,300],seal:35,search:[6,56,65,278,283,311],secret:41,section:[96,348],secur:[13,165,166,174,190,192,193,196,200,210,211,212,213,214,215,216,217,219,220,221,222,231,232,235,236,238,239,240,241,242,243,244,249,251,252,253,254,255,256,259,261,262,264,302],see:[68,348,349,350,352,353,354,355,356,357,358,359,360,361,362,363,365,366,367,368,369,370,371,372,373,374,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,420,421,422,423,424,426,428,429,430],seen:[6,38],select:[9,30,41,160,276],selector:388,send:267,sender:343,sendmail:[40,267],seri:[178,180,181,182,183,184,185,186,187,188,208,209,210,211,212,213,214,215,216,217,219,220,221,222,235,236,238,239,240,241,242,249,251,252,253,254,255,256,259,261,262,264,265],server:[7,18,36,37,41,55,56,57,58,59,60,61,62,63,64,75,78,79,275,286,288,289,290,300,309,374],serverlist_select_soft_usage_limit:276,servic:[88,96,277,294,302,308,332,333,348],set:[19,49,80,96,267,288,343,445],setaclmailbox:374,setinfo:374,setmetadata:[160,374],setquota:374,setup:[80,275,284,292,445,446],share:[7,11,33,38,41,160,300,339,346],should:316,shut:266,side:37,siev:[6,12,19,37,41,56,75,266,300,323,408],sievec:407,sieveshel:427,signific:[178,179,180,181,182,183,184,185,186,187,188,208,209,210,211,212,213,214,215,216,217,219,220,221,222,235,236,238,239,240,241,242,249,251,252,253,254,255,256,259,261,262,264],sinc:[161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,178,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,208,209,210,211,212,213,214,215,216,217,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,235,236,238,239,240,241,242,243,244,245,246,247,249,251,252,253,254,255,256,257,259,261,262,264],singl:[7,39,41],sitemap:447,sivtest:428,size:[305,345],size_t:[44,45],skiplist:6,slave:290,slow:324,smmapd:409,smtp:[76,442],smtptest:429,snapshot:265,socket:[293,294,295],softwar:12,sometim:324,sourc:[70,81,277],space:448,special:[9,30,52,63,266,276,300],specif:[93,266],specifi:41,sphinx:160,split:310,spool:[28,64,278,282,307,313],sql:[6,18,336],squat:6,squatter:[311,410],ssh:53,ssl:[146,174],stabl:265,stacktrac:51,standard:[55,289,301,302],start:[40,42,266,348],startup:36,state:[6,38,280],statu:[6,76,90],statuscach:6,storag:[6,11,13,28,41,92,251,252,253,254,255,256,261,262,266,267,275,299,313],store:[39,41,336],string:290,strlcpy:55,strncpy:55,struct:[44,45],structur:[18,64],style:71,sub:[6,160],subfold:347,submit:52,subscrib:374,subscript:[6,19,41,286],subsystem:49,suck:292,suit:80,suitabl:76,summari:286,support:[12,21,41,65,66,93,95,160,265,299,300,344,431,449],suppress:[26,41,317],sync:[288,309],sync_client:411,sync_reset:412,sync_serv:413,synchron:[290,313],synctest:430,synopsi:[52,68,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,426,427,428,429,430],syslog:[41,267],system:[12,35,42,314,339,351],tabl:[56,80],tag:[52,72,207,209,210,211,212,213,214,215,216,217,234,235,236,248,249,258,259,263,264],take:337,tape:275,tarbal:[81,266],target:160,task:76,teardown:80,telemetri:340,tell:72,temporari:[10,96],termin:309,terminolog:[288,304,309],test:[1,18,48,51,66,70,72,80,267,300],than:76,thi:[160,319],thing:75,thought:73,through:[9,52,71],tid:[44,45],tidptr:[44,45],tier:[11,28,283,313],time:[88,267],timsiev:414,tip:51,tls:146,tls_:160,tls_prune:415,tls_session:6,tmpf:327,todo:[7,9,16,17,26,27,29,34,36,37,41,55,74,82,83,84,86,87,90,273,276,302,304,307,310,311,432,448],togeth:18,tool:[44,52,70,81,275,300],topolog:[36,160],track:61,tradit:292,transact:[44,45],transcod:56,transfer:41,translat:56,translatesiev:416,transport:309,trash:330,trick:51,trim_attende:76,troubleshoot:[267,288],tweak:[309,313],two:[9,30,276],twoskip:[6,160],txn:[44,45],type:[6,41,62,160,277,278,299],typograph:448,tzdist:88,ubuntu:87,unabl:342,unavail:287,undefin:160,undelet:304,under:[64,347],underscor:160,unexpung:417,unicod:56,unifi:[7,36],unit:[1,80],unix:[41,273],unlock:47,unsubscrib:374,updat:[48,52,76,178,182,183,184,185,186,187,188,208,209,210,211,212,213,214,215,216,217,219,220,221,222,235,236,238,239,240,241,242,249,251,252,253,254,255,256,259,261,262,264,266,290],upgrad:[160,266],upload:72,upon:41,url:88,usag:[9,30,276],use:[18,44,76,300,316,336,341],user:[5,6,11,19,33,41,76,93,160,267,275,280,329,330,345,351,445],user_deni:[6,312],userid:6,using:[56,276],utf:56,util:74,vacat:343,valgrind:80,variou:96,verifi:[74,266],version:[48,72,265,266,320,374,442],via:76,view:[69,325],virtual:40,viru:95,volum:11,voter:76,vpoll:76,wai:[289,319],want:266,warn:[41,448],webdav:[49,92],websit:72,weight:9,well:337,what:[9,30,40,80,88,266,268,275,276,286,287,326,330,333,435,442],when:[9,30,41,276,286,287,330,332],where:[80,286,330],which:316,white:448,who:[266,443],why:[321,322,324,329,331,335,337,338,343],wishlist:431,within:[18,286],work:[41,50,278,338,346],world:72,write:[44,47,271,300],xapian:[57,65],xapianact:6,xfermailbox:374,you:[71,266],your:[0,53,80,267,445],yourself:81,zone:88,zoneinfo:[6,88]}})
0 Search.setIndex({docnames:["contribute","developers","download","glossary","imap/concepts/deployment","imap/concepts/deployment/authentication_and_authorization","imap/concepts/deployment/databases","imap/concepts/deployment/deployment_scenarios","imap/concepts/deployment/known_protocol_limitations","imap/concepts/deployment/mailbox_creation_distribution","imap/concepts/deployment/performance_recommendations","imap/concepts/deployment/storage","imap/concepts/deployment/supported-platforms","imap/concepts/features","imap/concepts/features/access-control","imap/concepts/features/archiving","imap/concepts/features/authentication-kerberos","imap/concepts/features/authentication-ldap","imap/concepts/features/authentication-sql","imap/concepts/features/automatic-creation-of-mailboxes","imap/concepts/features/caldav-collections","imap/concepts/features/carddav","imap/concepts/features/dav-collection-mgmt","imap/concepts/features/dav-components","imap/concepts/features/delayed-delete","imap/concepts/features/delayed-expunge","imap/concepts/features/duplicate-message-delivery-suppression","imap/concepts/features/event-notifications","imap/concepts/features/mail-spool-partitions","imap/concepts/features/mailbox-annotations","imap/concepts/features/mailbox-distribution","imap/concepts/features/mailbox-metadata-partitions","imap/concepts/features/message-annotations","imap/concepts/features/namespaces","imap/concepts/features/quota","imap/concepts/features/sealed-system","imap/concepts/features/server-aggregation","imap/concepts/features/server-side-filtering","imap/concepts/features/shared-seen-state","imap/concepts/features/single-instance-store","imap/concepts/features/virtual-domains","imap/concepts/overview_and_concepts","imap/developer","imap/developer/API","imap/developer/API/cyrusdb","imap/developer/API/cyrusdb2","imap/developer/API/index-api","imap/developer/API/mailbox-api","imap/developer/ancient-releasing","imap/developer/compiling","imap/developer/cyrusworks","imap/developer/developer-testing","imap/developer/documentation","imap/developer/github-guide","imap/developer/guidance","imap/developer/guidance/hacking","imap/developer/guidance/internationalization","imap/developer/guidance/locking","imap/developer/guidance/mailbox-format","imap/developer/guidance/namelocks","imap/developer/guidance/prot","imap/developer/guidance/replication_examples","imap/developer/guidance/replication_protocol","imap/developer/guidance/special_chars","imap/developer/guidance/var_directory_structure","imap/developer/install-xapian","imap/developer/jmap","imap/developer/libraries","imap/developer/libraries/imclient","imap/developer/namespaces","imap/developer/overview","imap/developer/process","imap/developer/releasing","imap/developer/thoughts","imap/developer/thoughts/backup","imap/developer/thoughts/bytecode","imap/developer/thoughts/caldav_scheduling_flowchart","imap/developer/thoughts/improved_mboxlist_sort","imap/developer/thoughts/notes","imap/developer/thoughts/prot-events","imap/developer/unit-tests","imap/download/getcyrus","imap/download/installation/distributions/centos","imap/download/installation/distributions/debian","imap/download/installation/distributions/fedora","imap/download/installation/distributions/opensuse","imap/download/installation/distributions/rhel","imap/download/installation/distributions/ubuntu","imap/download/installation/http/caldav","imap/download/installation/http/carddav","imap/download/installation/http/jmap","imap/download/installation/http/rss","imap/download/installation/http/webdav","imap/download/installation/manage-dav","imap/download/installation/mta/configuration","imap/download/installation/virus","imap/download/packagers","imap/download/release-notes/1/1.x.x","imap/download/release-notes/2.0/2.0.x","imap/download/release-notes/2.1/2.1.x","imap/download/release-notes/2.2/2.2.x","imap/download/release-notes/2.3/index","imap/download/release-notes/2.3/x/2.3.0","imap/download/release-notes/2.3/x/2.3.1","imap/download/release-notes/2.3/x/2.3.10","imap/download/release-notes/2.3/x/2.3.11","imap/download/release-notes/2.3/x/2.3.12","imap/download/release-notes/2.3/x/2.3.13","imap/download/release-notes/2.3/x/2.3.14","imap/download/release-notes/2.3/x/2.3.15","imap/download/release-notes/2.3/x/2.3.16","imap/download/release-notes/2.3/x/2.3.17","imap/download/release-notes/2.3/x/2.3.18","imap/download/release-notes/2.3/x/2.3.19","imap/download/release-notes/2.3/x/2.3.2","imap/download/release-notes/2.3/x/2.3.20","imap/download/release-notes/2.3/x/2.3.3","imap/download/release-notes/2.3/x/2.3.4","imap/download/release-notes/2.3/x/2.3.5","imap/download/release-notes/2.3/x/2.3.6","imap/download/release-notes/2.3/x/2.3.7","imap/download/release-notes/2.3/x/2.3.8","imap/download/release-notes/2.3/x/2.3.9","imap/download/release-notes/2.4-dav/index","imap/download/release-notes/2.4-dav/x/2.4.17-caldav-beta1","imap/download/release-notes/2.4-dav/x/2.4.17-caldav-beta10","imap/download/release-notes/2.4-dav/x/2.4.17-caldav-beta11","imap/download/release-notes/2.4-dav/x/2.4.17-caldav-beta2","imap/download/release-notes/2.4-dav/x/2.4.17-caldav-beta3","imap/download/release-notes/2.4-dav/x/2.4.17-caldav-beta4","imap/download/release-notes/2.4-dav/x/2.4.17-caldav-beta5","imap/download/release-notes/2.4-dav/x/2.4.17-caldav-beta6","imap/download/release-notes/2.4-dav/x/2.4.17-caldav-beta7","imap/download/release-notes/2.4-dav/x/2.4.17-caldav-beta8","imap/download/release-notes/2.4-dav/x/2.4.17-caldav-beta9","imap/download/release-notes/2.4/index","imap/download/release-notes/2.4/x/2.4.0","imap/download/release-notes/2.4/x/2.4.1","imap/download/release-notes/2.4/x/2.4.10","imap/download/release-notes/2.4/x/2.4.11","imap/download/release-notes/2.4/x/2.4.12","imap/download/release-notes/2.4/x/2.4.13","imap/download/release-notes/2.4/x/2.4.14","imap/download/release-notes/2.4/x/2.4.15","imap/download/release-notes/2.4/x/2.4.16","imap/download/release-notes/2.4/x/2.4.17","imap/download/release-notes/2.4/x/2.4.18","imap/download/release-notes/2.4/x/2.4.19","imap/download/release-notes/2.4/x/2.4.2","imap/download/release-notes/2.4/x/2.4.20","imap/download/release-notes/2.4/x/2.4.21","imap/download/release-notes/2.4/x/2.4.22","imap/download/release-notes/2.4/x/2.4.3","imap/download/release-notes/2.4/x/2.4.4","imap/download/release-notes/2.4/x/2.4.5","imap/download/release-notes/2.4/x/2.4.6","imap/download/release-notes/2.4/x/2.4.7","imap/download/release-notes/2.4/x/2.4.8","imap/download/release-notes/2.4/x/2.4.9","imap/download/release-notes/2.5/index","imap/download/release-notes/2.5/x/2.5.0","imap/download/release-notes/2.5/x/2.5.1","imap/download/release-notes/2.5/x/2.5.10","imap/download/release-notes/2.5/x/2.5.11","imap/download/release-notes/2.5/x/2.5.12","imap/download/release-notes/2.5/x/2.5.13","imap/download/release-notes/2.5/x/2.5.15","imap/download/release-notes/2.5/x/2.5.16","imap/download/release-notes/2.5/x/2.5.17","imap/download/release-notes/2.5/x/2.5.2","imap/download/release-notes/2.5/x/2.5.3","imap/download/release-notes/2.5/x/2.5.4","imap/download/release-notes/2.5/x/2.5.5","imap/download/release-notes/2.5/x/2.5.6","imap/download/release-notes/2.5/x/2.5.7","imap/download/release-notes/2.5/x/2.5.8","imap/download/release-notes/2.5/x/2.5.9","imap/download/release-notes/3.0/index","imap/download/release-notes/3.0/x/3.0.0","imap/download/release-notes/3.0/x/3.0.0-beta1","imap/download/release-notes/3.0/x/3.0.0-beta2","imap/download/release-notes/3.0/x/3.0.0-beta3","imap/download/release-notes/3.0/x/3.0.0-beta4","imap/download/release-notes/3.0/x/3.0.0-beta5","imap/download/release-notes/3.0/x/3.0.0-beta6","imap/download/release-notes/3.0/x/3.0.0-rc1","imap/download/release-notes/3.0/x/3.0.0-rc2","imap/download/release-notes/3.0/x/3.0.0-rc3","imap/download/release-notes/3.0/x/3.0.0-rc4","imap/download/release-notes/3.0/x/3.0.1","imap/download/release-notes/3.0/x/3.0.10","imap/download/release-notes/3.0/x/3.0.11","imap/download/release-notes/3.0/x/3.0.12","imap/download/release-notes/3.0/x/3.0.13","imap/download/release-notes/3.0/x/3.0.14","imap/download/release-notes/3.0/x/3.0.15","imap/download/release-notes/3.0/x/3.0.16","imap/download/release-notes/3.0/x/3.0.17","imap/download/release-notes/3.0/x/3.0.18","imap/download/release-notes/3.0/x/3.0.2","imap/download/release-notes/3.0/x/3.0.3","imap/download/release-notes/3.0/x/3.0.4","imap/download/release-notes/3.0/x/3.0.5","imap/download/release-notes/3.0/x/3.0.6","imap/download/release-notes/3.0/x/3.0.7","imap/download/release-notes/3.0/x/3.0.8","imap/download/release-notes/3.0/x/3.0.9","imap/download/release-notes/3.1/index","imap/download/release-notes/3.1/x/3.1.0-dev","imap/download/release-notes/3.1/x/3.1.1","imap/download/release-notes/3.1/x/3.1.2","imap/download/release-notes/3.1/x/3.1.3","imap/download/release-notes/3.1/x/3.1.4","imap/download/release-notes/3.1/x/3.1.5","imap/download/release-notes/3.1/x/3.1.6","imap/download/release-notes/3.1/x/3.1.7","imap/download/release-notes/3.1/x/3.1.8","imap/download/release-notes/3.1/x/3.1.9","imap/download/release-notes/3.2/index","imap/download/release-notes/3.2/x/3.2.0","imap/download/release-notes/3.2/x/3.2.0-beta3","imap/download/release-notes/3.2/x/3.2.0-beta4","imap/download/release-notes/3.2/x/3.2.0-rc1","imap/download/release-notes/3.2/x/3.2.1","imap/download/release-notes/3.2/x/3.2.10","imap/download/release-notes/3.2/x/3.2.11","imap/download/release-notes/3.2/x/3.2.2","imap/download/release-notes/3.2/x/3.2.3","imap/download/release-notes/3.2/x/3.2.4","imap/download/release-notes/3.2/x/3.2.5","imap/download/release-notes/3.2/x/3.2.6","imap/download/release-notes/3.2/x/3.2.7","imap/download/release-notes/3.2/x/3.2.8","imap/download/release-notes/3.2/x/3.2.9","imap/download/release-notes/3.3/index","imap/download/release-notes/3.3/x/3.3.0","imap/download/release-notes/3.3/x/3.3.1","imap/download/release-notes/3.4/index","imap/download/release-notes/3.4/x/3.4.0","imap/download/release-notes/3.4/x/3.4.0-beta1","imap/download/release-notes/3.4/x/3.4.0-beta2","imap/download/release-notes/3.4/x/3.4.0-beta3","imap/download/release-notes/3.4/x/3.4.0-rc1","imap/download/release-notes/3.4/x/3.4.1","imap/download/release-notes/3.4/x/3.4.2","imap/download/release-notes/3.4/x/3.4.3","imap/download/release-notes/3.4/x/3.4.4","imap/download/release-notes/3.4/x/3.4.5","imap/download/release-notes/3.5/index","imap/download/release-notes/3.5/x/3.5.0-alpha0","imap/download/release-notes/3.6/index","imap/download/release-notes/3.6/x/3.6.0","imap/download/release-notes/3.6/x/3.6.0-beta1","imap/download/release-notes/3.6/x/3.6.0-beta2","imap/download/release-notes/3.6/x/3.6.0-beta3","imap/download/release-notes/3.6/x/3.6.0-rc1","imap/download/release-notes/3.6/x/3.6.0-rc2","imap/download/release-notes/3.6/x/3.6.1","imap/download/release-notes/3.7/index","imap/download/release-notes/3.7/x/3.7.0-alpha0","imap/download/release-notes/3.8/index","imap/download/release-notes/3.8/x/3.8.0-alpha0","imap/download/release-notes/3.8/x/3.8.0-beta1","imap/download/release-notes/3.8/x/3.8.0-beta2","imap/download/release-notes/3.9/index","imap/download/release-notes/3.9/x/3.9.0-alpha0","imap/download/release-notes/index","imap/download/upgrade","imap/installing","imap/quickstart/introduction","imap/reference/admin","imap/reference/admin/access-control","imap/reference/admin/access-control/combining-rights","imap/reference/admin/access-control/defaults","imap/reference/admin/access-control/identifiers","imap/reference/admin/access-control/rights-reference","imap/reference/admin/backups","imap/reference/admin/config-mailboxdistribution","imap/reference/admin/eventsource","imap/reference/admin/locations","imap/reference/admin/locations/archive-partitions","imap/reference/admin/locations/configuration-state","imap/reference/admin/locations/hashing","imap/reference/admin/locations/mailspool","imap/reference/admin/locations/searchtiers","imap/reference/admin/monitoring","imap/reference/admin/murder/murder","imap/reference/admin/murder/murder-concepts","imap/reference/admin/murder/murder-failure-modes","imap/reference/admin/murder/murder-installation","imap/reference/admin/murder/murder-mail-delivery","imap/reference/admin/murder/murder-mupdate-details","imap/reference/admin/nginx-proxy","imap/reference/admin/nntp","imap/reference/admin/ports-sockets","imap/reference/admin/ports/services","imap/reference/admin/ports/sockets","imap/reference/admin/protlayer","imap/reference/admin/quotas","imap/reference/admin/quotas/quotaroots","imap/reference/admin/quotas/quotatypes","imap/reference/admin/sieve","imap/reference/admin/sop","imap/reference/admin/sop/administration-running","imap/reference/admin/sop/altnamespace","imap/reference/admin/sop/deleting","imap/reference/admin/sop/mailbox-operations","imap/reference/admin/sop/mailbox-quota","imap/reference/admin/sop/reconstructing","imap/reference/admin/sop/reloading","imap/reference/admin/sop/replication","imap/reference/admin/sop/splitting-metadata","imap/reference/admin/sop/squatter","imap/reference/admin/sop/userdeny","imap/reference/admin/tweaking","imap/reference/architecture","imap/reference/faq","imap/reference/faqs/feature-database-backend","imap/reference/faqs/feature-duplicate-delivery","imap/reference/faqs/install-compilationerrors","imap/reference/faqs/install-install-help","imap/reference/faqs/install-linkerwarnings","imap/reference/faqs/interop-8bit","imap/reference/faqs/interop-barenewlines","imap/reference/faqs/interop-sieve-exim","imap/reference/faqs/interop-slow-delivery","imap/reference/faqs/o-acls","imap/reference/faqs/o-annotations","imap/reference/faqs/o-configdir-tempfs","imap/reference/faqs/o-coredump","imap/reference/faqs/o-delete-mailbox","imap/reference/faqs/o-deleted-expired-expunged-purged","imap/reference/faqs/o-deliverdb-size","imap/reference/faqs/o-freezes","imap/reference/faqs/o-gdb","imap/reference/faqs/o-mailbox-doesnotexist","imap/reference/faqs/o-mixedcase","imap/reference/faqs/o-otherdatabases","imap/reference/faqs/o-pop3slow","imap/reference/faqs/o-reconstruct","imap/reference/faqs/o-sharedfilesystem-gpfs","imap/reference/faqs/o-telemetry","imap/reference/faqs/o-toomanyprocesses","imap/reference/faqs/o-unable-join-environment","imap/reference/faqs/o-vacation-mailfrom","imap/reference/faqs/r-murder-ha","imap/reference/faqs/r-pop3-logging","imap/reference/faqs/r-publicssharedfolders","imap/reference/faqs/r-subfolders","imap/reference/manpages/configs/cyrus.conf","imap/reference/manpages/configs/imapd.conf","imap/reference/manpages/configs/krb.equiv","imap/reference/manpages/index","imap/reference/manpages/systemcommands/arbitron","imap/reference/manpages/systemcommands/backupd","imap/reference/manpages/systemcommands/chk_cyrus","imap/reference/manpages/systemcommands/ctl_backups","imap/reference/manpages/systemcommands/ctl_conversationsdb","imap/reference/manpages/systemcommands/ctl_cyrusdb","imap/reference/manpages/systemcommands/ctl_deliver","imap/reference/manpages/systemcommands/ctl_mboxlist","imap/reference/manpages/systemcommands/ctl_zoneinfo","imap/reference/manpages/systemcommands/cvt_cyrusdb","imap/reference/manpages/systemcommands/cvt_xlist_specialuse","imap/reference/manpages/systemcommands/cyr_backup","imap/reference/manpages/systemcommands/cyr_buildinfo","imap/reference/manpages/systemcommands/cyr_dbtool","imap/reference/manpages/systemcommands/cyr_deny","imap/reference/manpages/systemcommands/cyr_df","imap/reference/manpages/systemcommands/cyr_expire","imap/reference/manpages/systemcommands/cyr_info","imap/reference/manpages/systemcommands/cyr_ls","imap/reference/manpages/systemcommands/cyr_synclog","imap/reference/manpages/systemcommands/cyr_userseen","imap/reference/manpages/systemcommands/cyr_virusscan","imap/reference/manpages/systemcommands/cyradm","imap/reference/manpages/systemcommands/cyrdump","imap/reference/manpages/systemcommands/deliver","imap/reference/manpages/systemcommands/fetchnews","imap/reference/manpages/systemcommands/fud","imap/reference/manpages/systemcommands/httpd","imap/reference/manpages/systemcommands/idled","imap/reference/manpages/systemcommands/imapd","imap/reference/manpages/systemcommands/ipurge","imap/reference/manpages/systemcommands/lmtpd","imap/reference/manpages/systemcommands/lmtpproxyd","imap/reference/manpages/systemcommands/masssievec","imap/reference/manpages/systemcommands/master","imap/reference/manpages/systemcommands/mbexamine","imap/reference/manpages/systemcommands/mbpath","imap/reference/manpages/systemcommands/mbtool","imap/reference/manpages/systemcommands/mkimap","imap/reference/manpages/systemcommands/mknewsgroups","imap/reference/manpages/systemcommands/mupdate","imap/reference/manpages/systemcommands/nntpd","imap/reference/manpages/systemcommands/notifyd","imap/reference/manpages/systemcommands/pop3d","imap/reference/manpages/systemcommands/pop3proxyd","imap/reference/manpages/systemcommands/promstatsd","imap/reference/manpages/systemcommands/proxyd","imap/reference/manpages/systemcommands/ptdump","imap/reference/manpages/systemcommands/ptexpire","imap/reference/manpages/systemcommands/ptloader","imap/reference/manpages/systemcommands/quota","imap/reference/manpages/systemcommands/reconstruct","imap/reference/manpages/systemcommands/rehash","imap/reference/manpages/systemcommands/relocate_by_id","imap/reference/manpages/systemcommands/restore","imap/reference/manpages/systemcommands/sievec","imap/reference/manpages/systemcommands/sieved","imap/reference/manpages/systemcommands/smmapd","imap/reference/manpages/systemcommands/squatter","imap/reference/manpages/systemcommands/sync_client","imap/reference/manpages/systemcommands/sync_reset","imap/reference/manpages/systemcommands/sync_server","imap/reference/manpages/systemcommands/timsieved","imap/reference/manpages/systemcommands/tls_prune","imap/reference/manpages/systemcommands/translatesieve","imap/reference/manpages/systemcommands/unexpunge","imap/reference/manpages/usercommands/arbitronsort.pl","imap/reference/manpages/usercommands/dav_reconstruct","imap/reference/manpages/usercommands/httptest","imap/reference/manpages/usercommands/imtest","imap/reference/manpages/usercommands/installsieve","imap/reference/manpages/usercommands/lmtptest","imap/reference/manpages/usercommands/mupdatetest","imap/reference/manpages/usercommands/nntptest","imap/reference/manpages/usercommands/pop3test","imap/reference/manpages/usercommands/sieveshell","imap/reference/manpages/usercommands/sivtest","imap/reference/manpages/usercommands/smtptest","imap/reference/manpages/usercommands/synctest","imap/rfc-support","imap/support/feedback-bugs","imap/support/feedback-mailing-lists","imap/support/feedback-meetings","index","operations","overview","overview/about_cyrus","overview/cyrus_bylaws","overview/cyrus_history","overview/cyrus_roadmap","overview/what_is_cyrus","overview/who_is_cyrus","preface","quickstart","setup","sitemap","styles","support"],envversion:{"sphinx.domains.c":2,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":3,"sphinx.domains.index":1,"sphinx.domains.javascript":2,"sphinx.domains.math":2,"sphinx.domains.python":2,"sphinx.domains.rst":2,"sphinx.domains.std":1,"sphinx.ext.intersphinx":1,"sphinx.ext.todo":2,sphinx:56},filenames:["contribute.rst","developers.rst","download.rst","glossary.rst","imap/concepts/deployment.rst","imap/concepts/deployment/authentication_and_authorization.rst","imap/concepts/deployment/databases.rst","imap/concepts/deployment/deployment_scenarios.rst","imap/concepts/deployment/known_protocol_limitations.rst","imap/concepts/deployment/mailbox_creation_distribution.rst","imap/concepts/deployment/performance_recommendations.rst","imap/concepts/deployment/storage.rst","imap/concepts/deployment/supported-platforms.rst","imap/concepts/features.rst","imap/concepts/features/access-control.rst","imap/concepts/features/archiving.rst","imap/concepts/features/authentication-kerberos.rst","imap/concepts/features/authentication-ldap.rst","imap/concepts/features/authentication-sql.rst","imap/concepts/features/automatic-creation-of-mailboxes.rst","imap/concepts/features/caldav-collections.rst","imap/concepts/features/carddav.rst","imap/concepts/features/dav-collection-mgmt.rst","imap/concepts/features/dav-components.rst","imap/concepts/features/delayed-delete.rst","imap/concepts/features/delayed-expunge.rst","imap/concepts/features/duplicate-message-delivery-suppression.rst","imap/concepts/features/event-notifications.rst","imap/concepts/features/mail-spool-partitions.rst","imap/concepts/features/mailbox-annotations.rst","imap/concepts/features/mailbox-distribution.rst","imap/concepts/features/mailbox-metadata-partitions.rst","imap/concepts/features/message-annotations.rst","imap/concepts/features/namespaces.rst","imap/concepts/features/quota.rst","imap/concepts/features/sealed-system.rst","imap/concepts/features/server-aggregation.rst","imap/concepts/features/server-side-filtering.rst","imap/concepts/features/shared-seen-state.rst","imap/concepts/features/single-instance-store.rst","imap/concepts/features/virtual-domains.rst","imap/concepts/overview_and_concepts.rst","imap/developer.rst","imap/developer/API.rst","imap/developer/API/cyrusdb.rst","imap/developer/API/cyrusdb2.rst","imap/developer/API/index-api.rst","imap/developer/API/mailbox-api.rst","imap/developer/ancient-releasing.rst","imap/developer/compiling.rst","imap/developer/cyrusworks.rst","imap/developer/developer-testing.rst","imap/developer/documentation.rst","imap/developer/github-guide.rst","imap/developer/guidance.rst","imap/developer/guidance/hacking.rst","imap/developer/guidance/internationalization.rst","imap/developer/guidance/locking.rst","imap/developer/guidance/mailbox-format.rst","imap/developer/guidance/namelocks.rst","imap/developer/guidance/prot.rst","imap/developer/guidance/replication_examples.rst","imap/developer/guidance/replication_protocol.rst","imap/developer/guidance/special_chars.rst","imap/developer/guidance/var_directory_structure.rst","imap/developer/install-xapian.rst","imap/developer/jmap.rst","imap/developer/libraries.rst","imap/developer/libraries/imclient.rst","imap/developer/namespaces.rst","imap/developer/overview.rst","imap/developer/process.rst","imap/developer/releasing.rst","imap/developer/thoughts.rst","imap/developer/thoughts/backup.rst","imap/developer/thoughts/bytecode.rst","imap/developer/thoughts/caldav_scheduling_flowchart.rst","imap/developer/thoughts/improved_mboxlist_sort.rst","imap/developer/thoughts/notes.rst","imap/developer/thoughts/prot-events.rst","imap/developer/unit-tests.rst","imap/download/getcyrus.rst","imap/download/installation/distributions/centos.rst","imap/download/installation/distributions/debian.rst","imap/download/installation/distributions/fedora.rst","imap/download/installation/distributions/opensuse.rst","imap/download/installation/distributions/rhel.rst","imap/download/installation/distributions/ubuntu.rst","imap/download/installation/http/caldav.rst","imap/download/installation/http/carddav.rst","imap/download/installation/http/jmap.rst","imap/download/installation/http/rss.rst","imap/download/installation/http/webdav.rst","imap/download/installation/manage-dav.rst","imap/download/installation/mta/configuration.rst","imap/download/installation/virus.rst","imap/download/packagers.rst","imap/download/release-notes/1/1.x.x.rst","imap/download/release-notes/2.0/2.0.x.rst","imap/download/release-notes/2.1/2.1.x.rst","imap/download/release-notes/2.2/2.2.x.rst","imap/download/release-notes/2.3/index.rst","imap/download/release-notes/2.3/x/2.3.0.rst","imap/download/release-notes/2.3/x/2.3.1.rst","imap/download/release-notes/2.3/x/2.3.10.rst","imap/download/release-notes/2.3/x/2.3.11.rst","imap/download/release-notes/2.3/x/2.3.12.rst","imap/download/release-notes/2.3/x/2.3.13.rst","imap/download/release-notes/2.3/x/2.3.14.rst","imap/download/release-notes/2.3/x/2.3.15.rst","imap/download/release-notes/2.3/x/2.3.16.rst","imap/download/release-notes/2.3/x/2.3.17.rst","imap/download/release-notes/2.3/x/2.3.18.rst","imap/download/release-notes/2.3/x/2.3.19.rst","imap/download/release-notes/2.3/x/2.3.2.rst","imap/download/release-notes/2.3/x/2.3.20.rst","imap/download/release-notes/2.3/x/2.3.3.rst","imap/download/release-notes/2.3/x/2.3.4.rst","imap/download/release-notes/2.3/x/2.3.5.rst","imap/download/release-notes/2.3/x/2.3.6.rst","imap/download/release-notes/2.3/x/2.3.7.rst","imap/download/release-notes/2.3/x/2.3.8.rst","imap/download/release-notes/2.3/x/2.3.9.rst","imap/download/release-notes/2.4-dav/index.rst","imap/download/release-notes/2.4-dav/x/2.4.17-caldav-beta1.rst","imap/download/release-notes/2.4-dav/x/2.4.17-caldav-beta10.rst","imap/download/release-notes/2.4-dav/x/2.4.17-caldav-beta11.rst","imap/download/release-notes/2.4-dav/x/2.4.17-caldav-beta2.rst","imap/download/release-notes/2.4-dav/x/2.4.17-caldav-beta3.rst","imap/download/release-notes/2.4-dav/x/2.4.17-caldav-beta4.rst","imap/download/release-notes/2.4-dav/x/2.4.17-caldav-beta5.rst","imap/download/release-notes/2.4-dav/x/2.4.17-caldav-beta6.rst","imap/download/release-notes/2.4-dav/x/2.4.17-caldav-beta7.rst","imap/download/release-notes/2.4-dav/x/2.4.17-caldav-beta8.rst","imap/download/release-notes/2.4-dav/x/2.4.17-caldav-beta9.rst","imap/download/release-notes/2.4/index.rst","imap/download/release-notes/2.4/x/2.4.0.rst","imap/download/release-notes/2.4/x/2.4.1.rst","imap/download/release-notes/2.4/x/2.4.10.rst","imap/download/release-notes/2.4/x/2.4.11.rst","imap/download/release-notes/2.4/x/2.4.12.rst","imap/download/release-notes/2.4/x/2.4.13.rst","imap/download/release-notes/2.4/x/2.4.14.rst","imap/download/release-notes/2.4/x/2.4.15.rst","imap/download/release-notes/2.4/x/2.4.16.rst","imap/download/release-notes/2.4/x/2.4.17.rst","imap/download/release-notes/2.4/x/2.4.18.rst","imap/download/release-notes/2.4/x/2.4.19.rst","imap/download/release-notes/2.4/x/2.4.2.rst","imap/download/release-notes/2.4/x/2.4.20.rst","imap/download/release-notes/2.4/x/2.4.21.rst","imap/download/release-notes/2.4/x/2.4.22.rst","imap/download/release-notes/2.4/x/2.4.3.rst","imap/download/release-notes/2.4/x/2.4.4.rst","imap/download/release-notes/2.4/x/2.4.5.rst","imap/download/release-notes/2.4/x/2.4.6.rst","imap/download/release-notes/2.4/x/2.4.7.rst","imap/download/release-notes/2.4/x/2.4.8.rst","imap/download/release-notes/2.4/x/2.4.9.rst","imap/download/release-notes/2.5/index.rst","imap/download/release-notes/2.5/x/2.5.0.rst","imap/download/release-notes/2.5/x/2.5.1.rst","imap/download/release-notes/2.5/x/2.5.10.rst","imap/download/release-notes/2.5/x/2.5.11.rst","imap/download/release-notes/2.5/x/2.5.12.rst","imap/download/release-notes/2.5/x/2.5.13.rst","imap/download/release-notes/2.5/x/2.5.15.rst","imap/download/release-notes/2.5/x/2.5.16.rst","imap/download/release-notes/2.5/x/2.5.17.rst","imap/download/release-notes/2.5/x/2.5.2.rst","imap/download/release-notes/2.5/x/2.5.3.rst","imap/download/release-notes/2.5/x/2.5.4.rst","imap/download/release-notes/2.5/x/2.5.5.rst","imap/download/release-notes/2.5/x/2.5.6.rst","imap/download/release-notes/2.5/x/2.5.7.rst","imap/download/release-notes/2.5/x/2.5.8.rst","imap/download/release-notes/2.5/x/2.5.9.rst","imap/download/release-notes/3.0/index.rst","imap/download/release-notes/3.0/x/3.0.0.rst","imap/download/release-notes/3.0/x/3.0.0-beta1.rst","imap/download/release-notes/3.0/x/3.0.0-beta2.rst","imap/download/release-notes/3.0/x/3.0.0-beta3.rst","imap/download/release-notes/3.0/x/3.0.0-beta4.rst","imap/download/release-notes/3.0/x/3.0.0-beta5.rst","imap/download/release-notes/3.0/x/3.0.0-beta6.rst","imap/download/release-notes/3.0/x/3.0.0-rc1.rst","imap/download/release-notes/3.0/x/3.0.0-rc2.rst","imap/download/release-notes/3.0/x/3.0.0-rc3.rst","imap/download/release-notes/3.0/x/3.0.0-rc4.rst","imap/download/release-notes/3.0/x/3.0.1.rst","imap/download/release-notes/3.0/x/3.0.10.rst","imap/download/release-notes/3.0/x/3.0.11.rst","imap/download/release-notes/3.0/x/3.0.12.rst","imap/download/release-notes/3.0/x/3.0.13.rst","imap/download/release-notes/3.0/x/3.0.14.rst","imap/download/release-notes/3.0/x/3.0.15.rst","imap/download/release-notes/3.0/x/3.0.16.rst","imap/download/release-notes/3.0/x/3.0.17.rst","imap/download/release-notes/3.0/x/3.0.18.rst","imap/download/release-notes/3.0/x/3.0.2.rst","imap/download/release-notes/3.0/x/3.0.3.rst","imap/download/release-notes/3.0/x/3.0.4.rst","imap/download/release-notes/3.0/x/3.0.5.rst","imap/download/release-notes/3.0/x/3.0.6.rst","imap/download/release-notes/3.0/x/3.0.7.rst","imap/download/release-notes/3.0/x/3.0.8.rst","imap/download/release-notes/3.0/x/3.0.9.rst","imap/download/release-notes/3.1/index.rst","imap/download/release-notes/3.1/x/3.1.0-dev.rst","imap/download/release-notes/3.1/x/3.1.1.rst","imap/download/release-notes/3.1/x/3.1.2.rst","imap/download/release-notes/3.1/x/3.1.3.rst","imap/download/release-notes/3.1/x/3.1.4.rst","imap/download/release-notes/3.1/x/3.1.5.rst","imap/download/release-notes/3.1/x/3.1.6.rst","imap/download/release-notes/3.1/x/3.1.7.rst","imap/download/release-notes/3.1/x/3.1.8.rst","imap/download/release-notes/3.1/x/3.1.9.rst","imap/download/release-notes/3.2/index.rst","imap/download/release-notes/3.2/x/3.2.0.rst","imap/download/release-notes/3.2/x/3.2.0-beta3.rst","imap/download/release-notes/3.2/x/3.2.0-beta4.rst","imap/download/release-notes/3.2/x/3.2.0-rc1.rst","imap/download/release-notes/3.2/x/3.2.1.rst","imap/download/release-notes/3.2/x/3.2.10.rst","imap/download/release-notes/3.2/x/3.2.11.rst","imap/download/release-notes/3.2/x/3.2.2.rst","imap/download/release-notes/3.2/x/3.2.3.rst","imap/download/release-notes/3.2/x/3.2.4.rst","imap/download/release-notes/3.2/x/3.2.5.rst","imap/download/release-notes/3.2/x/3.2.6.rst","imap/download/release-notes/3.2/x/3.2.7.rst","imap/download/release-notes/3.2/x/3.2.8.rst","imap/download/release-notes/3.2/x/3.2.9.rst","imap/download/release-notes/3.3/index.rst","imap/download/release-notes/3.3/x/3.3.0.rst","imap/download/release-notes/3.3/x/3.3.1.rst","imap/download/release-notes/3.4/index.rst","imap/download/release-notes/3.4/x/3.4.0.rst","imap/download/release-notes/3.4/x/3.4.0-beta1.rst","imap/download/release-notes/3.4/x/3.4.0-beta2.rst","imap/download/release-notes/3.4/x/3.4.0-beta3.rst","imap/download/release-notes/3.4/x/3.4.0-rc1.rst","imap/download/release-notes/3.4/x/3.4.1.rst","imap/download/release-notes/3.4/x/3.4.2.rst","imap/download/release-notes/3.4/x/3.4.3.rst","imap/download/release-notes/3.4/x/3.4.4.rst","imap/download/release-notes/3.4/x/3.4.5.rst","imap/download/release-notes/3.5/index.rst","imap/download/release-notes/3.5/x/3.5.0-alpha0.rst","imap/download/release-notes/3.6/index.rst","imap/download/release-notes/3.6/x/3.6.0.rst","imap/download/release-notes/3.6/x/3.6.0-beta1.rst","imap/download/release-notes/3.6/x/3.6.0-beta2.rst","imap/download/release-notes/3.6/x/3.6.0-beta3.rst","imap/download/release-notes/3.6/x/3.6.0-rc1.rst","imap/download/release-notes/3.6/x/3.6.0-rc2.rst","imap/download/release-notes/3.6/x/3.6.1.rst","imap/download/release-notes/3.7/index.rst","imap/download/release-notes/3.7/x/3.7.0-alpha0.rst","imap/download/release-notes/3.8/index.rst","imap/download/release-notes/3.8/x/3.8.0-alpha0.rst","imap/download/release-notes/3.8/x/3.8.0-beta1.rst","imap/download/release-notes/3.8/x/3.8.0-beta2.rst","imap/download/release-notes/3.9/index.rst","imap/download/release-notes/3.9/x/3.9.0-alpha0.rst","imap/download/release-notes/index.rst","imap/download/upgrade.rst","imap/installing.rst","imap/quickstart/introduction.rst","imap/reference/admin.rst","imap/reference/admin/access-control.rst","imap/reference/admin/access-control/combining-rights.rst","imap/reference/admin/access-control/defaults.rst","imap/reference/admin/access-control/identifiers.rst","imap/reference/admin/access-control/rights-reference.rst","imap/reference/admin/backups.rst","imap/reference/admin/config-mailboxdistribution.rst","imap/reference/admin/eventsource.rst","imap/reference/admin/locations.rst","imap/reference/admin/locations/archive-partitions.rst","imap/reference/admin/locations/configuration-state.rst","imap/reference/admin/locations/hashing.rst","imap/reference/admin/locations/mailspool.rst","imap/reference/admin/locations/searchtiers.rst","imap/reference/admin/monitoring.rst","imap/reference/admin/murder/murder.rst","imap/reference/admin/murder/murder-concepts.rst","imap/reference/admin/murder/murder-failure-modes.rst","imap/reference/admin/murder/murder-installation.rst","imap/reference/admin/murder/murder-mail-delivery.rst","imap/reference/admin/murder/murder-mupdate-details.rst","imap/reference/admin/nginx-proxy.rst","imap/reference/admin/nntp.rst","imap/reference/admin/ports-sockets.rst","imap/reference/admin/ports/services.rst","imap/reference/admin/ports/sockets.rst","imap/reference/admin/protlayer.rst","imap/reference/admin/quotas.rst","imap/reference/admin/quotas/quotaroots.rst","imap/reference/admin/quotas/quotatypes.rst","imap/reference/admin/sieve.rst","imap/reference/admin/sop.rst","imap/reference/admin/sop/administration-running.rst","imap/reference/admin/sop/altnamespace.rst","imap/reference/admin/sop/deleting.rst","imap/reference/admin/sop/mailbox-operations.rst","imap/reference/admin/sop/mailbox-quota.rst","imap/reference/admin/sop/reconstructing.rst","imap/reference/admin/sop/reloading.rst","imap/reference/admin/sop/replication.rst","imap/reference/admin/sop/splitting-metadata.rst","imap/reference/admin/sop/squatter.rst","imap/reference/admin/sop/userdeny.rst","imap/reference/admin/tweaking.rst","imap/reference/architecture.rst","imap/reference/faq.rst","imap/reference/faqs/feature-database-backend.rst","imap/reference/faqs/feature-duplicate-delivery.rst","imap/reference/faqs/install-compilationerrors.rst","imap/reference/faqs/install-install-help.rst","imap/reference/faqs/install-linkerwarnings.rst","imap/reference/faqs/interop-8bit.rst","imap/reference/faqs/interop-barenewlines.rst","imap/reference/faqs/interop-sieve-exim.rst","imap/reference/faqs/interop-slow-delivery.rst","imap/reference/faqs/o-acls.rst","imap/reference/faqs/o-annotations.rst","imap/reference/faqs/o-configdir-tempfs.rst","imap/reference/faqs/o-coredump.rst","imap/reference/faqs/o-delete-mailbox.rst","imap/reference/faqs/o-deleted-expired-expunged-purged.rst","imap/reference/faqs/o-deliverdb-size.rst","imap/reference/faqs/o-freezes.rst","imap/reference/faqs/o-gdb.rst","imap/reference/faqs/o-mailbox-doesnotexist.rst","imap/reference/faqs/o-mixedcase.rst","imap/reference/faqs/o-otherdatabases.rst","imap/reference/faqs/o-pop3slow.rst","imap/reference/faqs/o-reconstruct.rst","imap/reference/faqs/o-sharedfilesystem-gpfs.rst","imap/reference/faqs/o-telemetry.rst","imap/reference/faqs/o-toomanyprocesses.rst","imap/reference/faqs/o-unable-join-environment.rst","imap/reference/faqs/o-vacation-mailfrom.rst","imap/reference/faqs/r-murder-ha.rst","imap/reference/faqs/r-pop3-logging.rst","imap/reference/faqs/r-publicssharedfolders.rst","imap/reference/faqs/r-subfolders.rst","imap/reference/manpages/configs/cyrus.conf.rst","imap/reference/manpages/configs/imapd.conf.rst","imap/reference/manpages/configs/krb.equiv.rst","imap/reference/manpages/index.rst","imap/reference/manpages/systemcommands/arbitron.rst","imap/reference/manpages/systemcommands/backupd.rst","imap/reference/manpages/systemcommands/chk_cyrus.rst","imap/reference/manpages/systemcommands/ctl_backups.rst","imap/reference/manpages/systemcommands/ctl_conversationsdb.rst","imap/reference/manpages/systemcommands/ctl_cyrusdb.rst","imap/reference/manpages/systemcommands/ctl_deliver.rst","imap/reference/manpages/systemcommands/ctl_mboxlist.rst","imap/reference/manpages/systemcommands/ctl_zoneinfo.rst","imap/reference/manpages/systemcommands/cvt_cyrusdb.rst","imap/reference/manpages/systemcommands/cvt_xlist_specialuse.rst","imap/reference/manpages/systemcommands/cyr_backup.rst","imap/reference/manpages/systemcommands/cyr_buildinfo.rst","imap/reference/manpages/systemcommands/cyr_dbtool.rst","imap/reference/manpages/systemcommands/cyr_deny.rst","imap/reference/manpages/systemcommands/cyr_df.rst","imap/reference/manpages/systemcommands/cyr_expire.rst","imap/reference/manpages/systemcommands/cyr_info.rst","imap/reference/manpages/systemcommands/cyr_ls.rst","imap/reference/manpages/systemcommands/cyr_synclog.rst","imap/reference/manpages/systemcommands/cyr_userseen.rst","imap/reference/manpages/systemcommands/cyr_virusscan.rst","imap/reference/manpages/systemcommands/cyradm.rst","imap/reference/manpages/systemcommands/cyrdump.rst","imap/reference/manpages/systemcommands/deliver.rst","imap/reference/manpages/systemcommands/fetchnews.rst","imap/reference/manpages/systemcommands/fud.rst","imap/reference/manpages/systemcommands/httpd.rst","imap/reference/manpages/systemcommands/idled.rst","imap/reference/manpages/systemcommands/imapd.rst","imap/reference/manpages/systemcommands/ipurge.rst","imap/reference/manpages/systemcommands/lmtpd.rst","imap/reference/manpages/systemcommands/lmtpproxyd.rst","imap/reference/manpages/systemcommands/masssievec.rst","imap/reference/manpages/systemcommands/master.rst","imap/reference/manpages/systemcommands/mbexamine.rst","imap/reference/manpages/systemcommands/mbpath.rst","imap/reference/manpages/systemcommands/mbtool.rst","imap/reference/manpages/systemcommands/mkimap.rst","imap/reference/manpages/systemcommands/mknewsgroups.rst","imap/reference/manpages/systemcommands/mupdate.rst","imap/reference/manpages/systemcommands/nntpd.rst","imap/reference/manpages/systemcommands/notifyd.rst","imap/reference/manpages/systemcommands/pop3d.rst","imap/reference/manpages/systemcommands/pop3proxyd.rst","imap/reference/manpages/systemcommands/promstatsd.rst","imap/reference/manpages/systemcommands/proxyd.rst","imap/reference/manpages/systemcommands/ptdump.rst","imap/reference/manpages/systemcommands/ptexpire.rst","imap/reference/manpages/systemcommands/ptloader.rst","imap/reference/manpages/systemcommands/quota.rst","imap/reference/manpages/systemcommands/reconstruct.rst","imap/reference/manpages/systemcommands/rehash.rst","imap/reference/manpages/systemcommands/relocate_by_id.rst","imap/reference/manpages/systemcommands/restore.rst","imap/reference/manpages/systemcommands/sievec.rst","imap/reference/manpages/systemcommands/sieved.rst","imap/reference/manpages/systemcommands/smmapd.rst","imap/reference/manpages/systemcommands/squatter.rst","imap/reference/manpages/systemcommands/sync_client.rst","imap/reference/manpages/systemcommands/sync_reset.rst","imap/reference/manpages/systemcommands/sync_server.rst","imap/reference/manpages/systemcommands/timsieved.rst","imap/reference/manpages/systemcommands/tls_prune.rst","imap/reference/manpages/systemcommands/translatesieve.rst","imap/reference/manpages/systemcommands/unexpunge.rst","imap/reference/manpages/usercommands/arbitronsort.pl.rst","imap/reference/manpages/usercommands/dav_reconstruct.rst","imap/reference/manpages/usercommands/httptest.rst","imap/reference/manpages/usercommands/imtest.rst","imap/reference/manpages/usercommands/installsieve.rst","imap/reference/manpages/usercommands/lmtptest.rst","imap/reference/manpages/usercommands/mupdatetest.rst","imap/reference/manpages/usercommands/nntptest.rst","imap/reference/manpages/usercommands/pop3test.rst","imap/reference/manpages/usercommands/sieveshell.rst","imap/reference/manpages/usercommands/sivtest.rst","imap/reference/manpages/usercommands/smtptest.rst","imap/reference/manpages/usercommands/synctest.rst","imap/rfc-support.rst","imap/support/feedback-bugs.rst","imap/support/feedback-mailing-lists.rst","imap/support/feedback-meetings.rst","index.rst","operations.rst","overview.rst","overview/about_cyrus.rst","overview/cyrus_bylaws.rst","overview/cyrus_history.rst","overview/cyrus_roadmap.rst","overview/what_is_cyrus.rst","overview/who_is_cyrus.rst","preface.rst","quickstart.rst","setup.rst","sitemap.rst","styles.rst","support.rst"],objects:{"":{"-c":[350,0,1,"cmdoption-c"],"-m":[350,0,1,"cmdoption-m"],"-p":[350,0,1,"cmdoption-p"],"-u":[350,0,1,"cmdoption-u"],"arbitron(8)":[353,1,1,"std-cyrusman-arbitron-8"],"backupd(8)":[354,1,1,"std-cyrusman-backupd-8"],"chk_cyrus(8)":[355,1,1,"std-cyrusman-chk_cyrus-8"],"conf-all":[370,0,1,"cmdoption-arg-conf-all"],"conf-default":[370,0,1,"cmdoption-arg-conf-default"],"conf-lint":[370,0,1,"cmdoption-arg-conf-lint"],"ctl_backups(8)":[356,1,1,"std-cyrusman-ctl_backups-8"],"ctl_conversationsdb(8)":[357,1,1,"std-cyrusman-ctl_conversationsdb-8"],"ctl_cyrusdb(8)":[358,1,1,"std-cyrusman-ctl_cyrusdb-8"],"ctl_deliver(8)":[359,1,1,"std-cyrusman-ctl_deliver-8"],"ctl_mboxlist(8)":[360,1,1,"std-cyrusman-ctl_mboxlist-8"],"ctl_zoneinfo(8)":[361,1,1,"std-cyrusman-ctl_zoneinfo-8"],"cvt_cyrusdb(8)":[362,1,1,"std-cyrusman-cvt_cyrusdb-8"],"cvt_xlist_specialuse(8)":[363,1,1,"std-cyrusman-cvt_xlist_specialuse-8"],"cyr_backup(8)":[364,1,1,"std-cyrusman-cyr_backup-8"],"cyr_buildinfo(8)":[365,1,1,"std-cyrusman-cyr_buildinfo-8"],"cyr_dbtool(8)":[366,1,1,"std-cyrusman-cyr_dbtool-8"],"cyr_deny(8)":[367,1,1,"std-cyrusman-cyr_deny-8"],"cyr_df(8)":[368,1,1,"std-cyrusman-cyr_df-8"],"cyr_expire(8)":[369,1,1,"std-cyrusman-cyr_expire-8"],"cyr_info(8)":[370,1,1,"std-cyrusman-cyr_info-8"],"cyr_ls(8)":[371,1,1,"std-cyrusman-cyr_ls-8"],"cyr_synclog(8)":[372,1,1,"std-cyrusman-cyr_synclog-8"],"cyr_userseen(8)":[373,1,1,"std-cyrusman-cyr_userseen-8"],"cyr_virusscan(8)":[374,1,1,"std-cyrusman-cyr_virusscan-8"],"cyradm(8)":[375,1,1,"std-cyrusman-cyradm-8"],"cyrdump(8)":[376,1,1,"std-cyrusman-cyrdump-8"],"dav_reconstruct(1)":[420,1,1,"std-cyrusman-dav_reconstruct-1"],"deliver(8)":[377,1,1,"std-cyrusman-deliver-8"],"fetchnews(8)":[378,1,1,"std-cyrusman-fetchnews-8"],"fud(8)":[379,1,1,"std-cyrusman-fud-8"],"httpd(8)":[380,1,1,"std-cyrusman-httpd-8"],"httptest(1)":[421,1,1,"std-cyrusman-httptest-1"],"idled(8)":[381,1,1,"std-cyrusman-idled-8"],"imapd(8)":[382,1,1,"std-cyrusman-imapd-8"],"imclient(3)":[68,1,1,"std-cyrusman-imclient-3"],"imtest(1)":[422,1,1,"std-cyrusman-imtest-1"],"installsieve(1)":[423,1,1,"std-cyrusman-installsieve-1"],"ipurge(8)":[383,1,1,"std-cyrusman-ipurge-8"],"lmtpd(8)":[384,1,1,"std-cyrusman-lmtpd-8"],"lmtpproxyd(8)":[385,1,1,"std-cyrusman-lmtpproxyd-8"],"lmtptest(1)":[424,1,1,"std-cyrusman-lmtptest-1"],"masssievec(8)":[386,1,1,"std-cyrusman-masssievec-8"],"master(8)":[387,1,1,"std-cyrusman-master-8"],"mbexamine(8)":[388,1,1,"std-cyrusman-mbexamine-8"],"mbpath(8)":[389,1,1,"std-cyrusman-mbpath-8"],"mbtool(8)":[390,1,1,"std-cyrusman-mbtool-8"],"mkimap(8)":[391,1,1,"std-cyrusman-mkimap-8"],"mknewsgroups(8)":[392,1,1,"std-cyrusman-mknewsgroups-8"],"mupdate(8)":[393,1,1,"std-cyrusman-mupdate-8"],"mupdatetest(1)":[425,1,1,"std-cyrusman-mupdatetest-1"],"nntpd(8)":[394,1,1,"std-cyrusman-nntpd-8"],"nntptest(1)":[426,1,1,"std-cyrusman-nntptest-1"],"notifyd(8)":[395,1,1,"std-cyrusman-notifyd-8"],"pop3d(8)":[396,1,1,"std-cyrusman-pop3d-8"],"pop3proxyd(8)":[397,1,1,"std-cyrusman-pop3proxyd-8"],"pop3test(1)":[427,1,1,"std-cyrusman-pop3test-1"],"promstatsd(8)":[398,1,1,"std-cyrusman-promstatsd-8"],"proxyd(8)":[399,1,1,"std-cyrusman-proxyd-8"],"ptdump(8)":[400,1,1,"std-cyrusman-ptdump-8"],"ptexpire(8)":[401,1,1,"std-cyrusman-ptexpire-8"],"ptloader(8)":[402,1,1,"std-cyrusman-ptloader-8"],"quota(8)":[403,1,1,"std-cyrusman-quota-8"],"reconstruct(8)":[404,1,1,"std-cyrusman-reconstruct-8"],"rehash(8)":[405,1,1,"std-cyrusman-rehash-8"],"relocate_by_id(8)":[406,1,1,"std-cyrusman-relocate_by_id-8"],"restore(8)":[407,1,1,"std-cyrusman-restore-8"],"sievec(8)":[408,1,1,"std-cyrusman-sievec-8"],"sieved(8)":[409,1,1,"std-cyrusman-sieved-8"],"sieveshell(1)":[428,1,1,"std-cyrusman-sieveshell-1"],"sivtest(1)":[429,1,1,"std-cyrusman-sivtest-1"],"smmapd(8)":[410,1,1,"std-cyrusman-smmapd-8"],"smtptest(1)":[430,1,1,"std-cyrusman-smtptest-1"],"squatter(8)":[411,1,1,"std-cyrusman-squatter-8"],"sync_client(8)":[412,1,1,"std-cyrusman-sync_client-8"],"sync_reset(8)":[413,1,1,"std-cyrusman-sync_reset-8"],"sync_server(8)":[414,1,1,"std-cyrusman-sync_server-8"],"synctest(1)":[431,1,1,"std-cyrusman-synctest-1"],"timsieved(8)":[415,1,1,"std-cyrusman-timsieved-8"],"tls_prune(8)":[416,1,1,"std-cyrusman-tls_prune-8"],"translatesieve(8)":[417,1,1,"std-cyrusman-translatesieve-8"],"unexpunge(8)":[418,1,1,"std-cyrusman-unexpunge-8"],conf:[370,0,1,"cmdoption-arg-conf"],dump:[364,0,1,"cmdoption-arg-dump"],json:[364,0,1,"cmdoption-arg-json"],list:[364,0,1,"cmdoption-arg-list"],proc:[370,0,1,"cmdoption-arg-proc"],show:[364,0,1,"cmdoption-arg-show"]},"**ctl_zoneinfo**":{"--rebuild":[361,0,1,"cmdoption-ctl_zoneinfo-r"],"--verbose":[361,0,1,"cmdoption-ctl_zoneinfo-v"],"--windows-zone-xml":[361,0,1,"cmdoption-ctl_zoneinfo-w"],"-C":[361,0,1,"cmdoption-ctl_zoneinfo-C"],"-r":[361,0,1,"cmdoption-ctl_zoneinfo-r"],"-v":[361,0,1,"cmdoption-ctl_zoneinfo-v"],"-w":[361,0,1,"cmdoption-ctl_zoneinfo-w"]},"masssievec.imapd":{conf:[386,0,1,"cmdoption-masssievec-arg-imapd.conf"]},"rehash.imapd":{conf:[405,0,1,"cmdoption-rehash-arg-imapd.conf"]},CMD:{"-C":[416,0,1,"cmdoption-CMD-C"]},arbitron:{"--date":[353,0,1,"cmdoption-arbitron-D"],"--days":[353,0,1,"cmdoption-arbitron-0"],"--detailed":[353,0,1,"cmdoption-arbitron-l"],"--include-userids":[353,0,1,"cmdoption-arbitron-u"],"--no-subscribers":[353,0,1,"cmdoption-arbitron-o"],"--prune-seen":[353,0,1,"cmdoption-arbitron-p"],"-C":[353,0,1,"cmdoption-arbitron-C"],"-D":[353,0,1,"cmdoption-arbitron-D"],"-d":[353,0,1,"cmdoption-arbitron-0"],"-l":[353,0,1,"cmdoption-arbitron-l"],"-o":[353,0,1,"cmdoption-arbitron-o"],"-p":[353,0,1,"cmdoption-arbitron-p"],"-u":[353,0,1,"cmdoption-arbitron-u"]},arbitronsort:{"pl(1)":[419,1,1,"std-cyrusman-arbitronsort.pl-1"]},backupd:{"-C":[354,0,1,"cmdoption-backupd-C"],"-D":[354,0,1,"cmdoption-backupd-D"],"-T":[354,0,1,"cmdoption-backupd-T"],"-U":[354,0,1,"cmdoption-backupd-U"],"-p":[354,0,1,"cmdoption-backupd-p"]},chk_cyrus:{"--mailbox":[355,0,1,"cmdoption-chk_cyrus-M"],"--partition":[355,0,1,"cmdoption-chk_cyrus-P"],"-C":[355,0,1,"cmdoption-chk_cyrus-C"],"-M":[355,0,1,"cmdoption-chk_cyrus-M"],"-P":[355,0,1,"cmdoption-chk_cyrus-P"]},ctl_backups:{"--all":[356,0,1,"cmdoption-ctl_backups-A"],"--create":[356,0,1,"cmdoption-ctl_backups-c"],"--domains":[356,0,1,"cmdoption-ctl_backups-D"],"--execute":[356,0,1,"cmdoption-ctl_backups-x"],"--filenames":[356,0,1,"cmdoption-ctl_backups-f"],"--force":[356,0,1,"cmdoption-ctl_backups-F"],"--json":[356,0,1,"cmdoption-ctl_backups-j"],"--mailboxes":[356,0,1,"cmdoption-ctl_backups-m"],"--no-verify":[356,0,1,"cmdoption-ctl_backups-V"],"--pause":[356,0,1,"cmdoption-ctl_backups-p"],"--prefixes":[356,0,1,"cmdoption-ctl_backups-P"],"--sqlite3":[356,0,1,"cmdoption-ctl_backups-s"],"--stale":[356,0,1,"cmdoption-ctl_backups-t"],"--stop-on-error":[356,0,1,"cmdoption-ctl_backups-S"],"--userids":[356,0,1,"cmdoption-ctl_backups-u"],"--verbose":[356,0,1,"cmdoption-ctl_backups-v"],"--wait-for-locks":[356,0,1,"cmdoption-ctl_backups-w"],"-A":[356,0,1,"cmdoption-ctl_backups-A"],"-C":[356,0,1,"cmdoption-ctl_backups-C"],"-D":[356,0,1,"cmdoption-ctl_backups-D"],"-F":[356,0,1,"cmdoption-ctl_backups-F"],"-P":[356,0,1,"cmdoption-ctl_backups-P"],"-S":[356,0,1,"cmdoption-ctl_backups-S"],"-V":[356,0,1,"cmdoption-ctl_backups-V"],"-c":[356,0,1,"cmdoption-ctl_backups-c"],"-f":[356,0,1,"cmdoption-ctl_backups-f"],"-j":[356,0,1,"cmdoption-ctl_backups-j"],"-m":[356,0,1,"cmdoption-ctl_backups-m"],"-p":[356,0,1,"cmdoption-ctl_backups-p"],"-s":[356,0,1,"cmdoption-ctl_backups-s"],"-t":[356,0,1,"cmdoption-ctl_backups-t"],"-u":[356,0,1,"cmdoption-ctl_backups-u"],"-v":[356,0,1,"cmdoption-ctl_backups-v"],"-w":[356,0,1,"cmdoption-ctl_backups-w"],"-x":[356,0,1,"cmdoption-ctl_backups-x"],compact:[356,0,1,"cmdoption-ctl_backups-arg-compact"],list:[356,0,1,"cmdoption-ctl_backups-arg-list"],lock:[356,0,1,"cmdoption-ctl_backups-arg-lock"],reindex:[356,0,1,"cmdoption-ctl_backups-arg-reindex"],stat:[356,0,1,"cmdoption-ctl_backups-arg-stat"],verify:[356,0,1,"cmdoption-ctl_backups-arg-verify"]},ctl_conversationsdb:{"--clear":[357,0,1,"cmdoption-ctl_conversationsdb-z"],"--dump":[357,0,1,"cmdoption-ctl_conversationsdb-d"],"--rebuild":[357,0,1,"cmdoption-ctl_conversationsdb-b"],"--recursive":[357,0,1,"cmdoption-ctl_conversationsdb-r"],"--split":[357,0,1,"cmdoption-ctl_conversationsdb-S"],"--undump":[357,0,1,"cmdoption-ctl_conversationsdb-u"],"--update-counts":[357,0,1,"cmdoption-ctl_conversationsdb-R"],"--verbose":[357,0,1,"cmdoption-ctl_conversationsdb-v"],"-C":[357,0,1,"cmdoption-ctl_conversationsdb-C"],"-R":[357,0,1,"cmdoption-ctl_conversationsdb-R"],"-S":[357,0,1,"cmdoption-ctl_conversationsdb-S"],"-b":[357,0,1,"cmdoption-ctl_conversationsdb-b"],"-d":[357,0,1,"cmdoption-ctl_conversationsdb-d"],"-r":[357,0,1,"cmdoption-ctl_conversationsdb-r"],"-u":[357,0,1,"cmdoption-ctl_conversationsdb-u"],"-v":[357,0,1,"cmdoption-ctl_conversationsdb-v"],"-z":[357,0,1,"cmdoption-ctl_conversationsdb-z"]},ctl_cyrusdb:{"--checkpoint":[358,0,1,"cmdoption-ctl_cyrusdb-c"],"--no-cleanup":[358,0,1,"cmdoption-ctl_cyrusdb-x"],"--recover":[358,0,1,"cmdoption-ctl_cyrusdb-r"],"-C":[358,0,1,"cmdoption-ctl_cyrusdb-C"],"-c":[358,0,1,"cmdoption-ctl_cyrusdb-c"],"-r":[358,0,1,"cmdoption-ctl_cyrusdb-r"],"-x":[358,0,1,"cmdoption-ctl_cyrusdb-x"]},ctl_deliver:{"--dump":[359,0,1,"cmdoption-ctl_deliver-d"],"--filename":[359,0,1,"cmdoption-ctl_deliver-f"],"-C":[359,0,1,"cmdoption-ctl_deliver-C"],"-d":[359,0,1,"cmdoption-ctl_deliver-d"],"-f":[359,0,1,"cmdoption-ctl_deliver-f"]},ctl_mboxlist:{"--authoritative":[360,0,1,"cmdoption-ctl_mboxlist-a"],"--dump":[360,0,1,"cmdoption-ctl_mboxlist-d"],"--filename":[360,0,1,"cmdoption-ctl_mboxlist-f"],"--include-intermediaries":[360,0,1,"cmdoption-ctl_mboxlist-y"],"--interactive":[360,0,1,"cmdoption-ctl_mboxlist-i"],"--legacy":[360,0,1,"cmdoption-ctl_mboxlist-L"],"--partition":[360,0,1,"cmdoption-ctl_mboxlist-p"],"--remove-dumped":[360,0,1,"cmdoption-ctl_mboxlist-x"],"--sync-mupdate":[360,0,1,"cmdoption-ctl_mboxlist-m"],"--undump":[360,0,1,"cmdoption-ctl_mboxlist-u"],"--verify":[360,0,1,"cmdoption-ctl_mboxlist-v"],"--warn-only":[360,0,1,"cmdoption-ctl_mboxlist-w"],"-C":[360,0,1,"cmdoption-ctl_mboxlist-C"],"-L":[360,0,1,"cmdoption-ctl_mboxlist-L"],"-a":[360,0,1,"cmdoption-ctl_mboxlist-a"],"-d":[360,0,1,"cmdoption-ctl_mboxlist-d"],"-f":[360,0,1,"cmdoption-ctl_mboxlist-f"],"-i":[360,0,1,"cmdoption-ctl_mboxlist-i"],"-m":[360,0,1,"cmdoption-ctl_mboxlist-m"],"-p":[360,0,1,"cmdoption-ctl_mboxlist-p"],"-u":[360,0,1,"cmdoption-ctl_mboxlist-u"],"-v":[360,0,1,"cmdoption-ctl_mboxlist-v"],"-w":[360,0,1,"cmdoption-ctl_mboxlist-w"],"-x":[360,0,1,"cmdoption-ctl_mboxlist-x"],"-y":[360,0,1,"cmdoption-ctl_mboxlist-y"]},cvt_cyrusdb:{"-C":[362,0,1,"cmdoption-cvt_cyrusdb-C"]},cvt_xlist_specialuse:{"--verbose":[363,0,1,"cmdoption-cvt_xlist_specialuse-v"],"-C":[363,0,1,"cmdoption-cvt_xlist_specialuse-C"],"-v":[363,0,1,"cmdoption-cvt_xlist_specialuse-v"]},cyr_backup:{"--filename":[364,0,1,"cmdoption-cyr_backup-f"],"--mailbox":[364,0,1,"cmdoption-cyr_backup-m"],"--userid":[364,0,1,"cmdoption-cyr_backup-u"],"--verbose":[364,0,1,"cmdoption-cyr_backup-v"],"-C":[364,0,1,"cmdoption-cyr_backup-C"],"-f":[364,0,1,"cmdoption-cyr_backup-f"],"-m":[364,0,1,"cmdoption-cyr_backup-m"],"-u":[364,0,1,"cmdoption-cyr_backup-u"],"-v":[364,0,1,"cmdoption-cyr_backup-v"]},cyr_buildinfo:{"-C":[365,0,1,"cmdoption-cyr_buildinfo-C"],format:[365,0,1,"cmdoption-cyr_buildinfo-arg-format"]},cyr_dbtool:{"--create":[366,0,1,"cmdoption-cyr_dbtool-n"],"--improved-mboxlist-sort":[366,0,1,"cmdoption-cyr_dbtool-M"],"--use-transaction":[366,0,1,"cmdoption-cyr_dbtool-T"],"-C":[366,0,1,"cmdoption-cyr_dbtool-C"],"-M":[366,0,1,"cmdoption-cyr_dbtool-M"],"-T":[366,0,1,"cmdoption-cyr_dbtool-T"],"-n":[366,0,1,"cmdoption-cyr_dbtool-n"]},cyr_deny:{"--allow":[367,0,1,"cmdoption-cyr_deny-a"],"--list":[367,0,1,"cmdoption-cyr_deny-l"],"--message":[367,0,1,"cmdoption-cyr_deny-m"],"--services":[367,0,1,"cmdoption-cyr_deny-s"],"-C":[367,0,1,"cmdoption-cyr_deny-C"],"-a":[367,0,1,"cmdoption-cyr_deny-a"],"-l":[367,0,1,"cmdoption-cyr_deny-l"],"-m":[367,0,1,"cmdoption-cyr_deny-m"],"-s":[367,0,1,"cmdoption-cyr_deny-s"]},cyr_df:{"--metadata":[368,0,1,"cmdoption-cyr_df-m"],"-C":[368,0,1,"cmdoption-cyr_df-C"],"-m":[368,0,1,"cmdoption-cyr_df-m"]},cyr_expire:{"--archive-duration":[369,0,1,"cmdoption-cyr_expire-A"],"--delete-duration":[369,0,1,"cmdoption-cyr_expire-D"],"--expire-duration":[369,0,1,"cmdoption-cyr_expire-E"],"--expunge-duration":[369,0,1,"cmdoption-cyr_expire-X"],"--ignore-annotations":[369,0,1,"cmdoption-cyr_expire-a"],"--no-conversations":[369,0,1,"cmdoption-cyr_expire-c"],"--no-expunge":[369,0,1,"cmdoption-cyr_expire-x"],"--prefix":[369,0,1,"cmdoption-cyr_expire-p"],"--prune-userflags":[369,0,1,"cmdoption-cyr_expire-t"],"--userid":[369,0,1,"cmdoption-cyr_expire-u"],"--verbose":[369,0,1,"cmdoption-cyr_expire-v"],"-A":[369,0,1,"cmdoption-cyr_expire-A"],"-C":[369,0,1,"cmdoption-cyr_expire-C"],"-D":[369,0,1,"cmdoption-cyr_expire-D"],"-E":[369,0,1,"cmdoption-cyr_expire-E"],"-X":[369,0,1,"cmdoption-cyr_expire-X"],"-a":[369,0,1,"cmdoption-cyr_expire-a"],"-c":[369,0,1,"cmdoption-cyr_expire-c"],"-p":[369,0,1,"cmdoption-cyr_expire-p"],"-t":[369,0,1,"cmdoption-cyr_expire-t"],"-u":[369,0,1,"cmdoption-cyr_expire-u"],"-v":[369,0,1,"cmdoption-cyr_expire-v"],"-x":[369,0,1,"cmdoption-cyr_expire-x"]},cyr_info:{"--service":[370,0,1,"cmdoption-cyr_info-n"],"--since":[370,0,1,"cmdoption-cyr_info-s"],"-C":[370,0,1,"cmdoption-cyr_info-C"],"-M":[370,0,1,"cmdoption-cyr_info-M"],"-n":[370,0,1,"cmdoption-cyr_info-n"],"-s":[370,0,1,"cmdoption-cyr_info-s"]},cyr_ls:{"--long":[371,0,1,"cmdoption-cyr_ls-l"],"--metadata":[371,0,1,"cmdoption-cyr_ls-m"],"--one-per-line":[371,0,1,"cmdoption-cyr_ls-1"],"--recursive":[371,0,1,"cmdoption-cyr_ls-R"],"-1":[371,0,1,"cmdoption-cyr_ls-1"],"-C":[371,0,1,"cmdoption-cyr_ls-C"],"-R":[371,0,1,"cmdoption-cyr_ls-R"],"-l":[371,0,1,"cmdoption-cyr_ls-l"],"-m":[371,0,1,"cmdoption-cyr_ls-m"]},cyr_synclog:{"--acl":[372,0,1,"cmdoption-cyr_synclog-c"],"--annotation":[372,0,1,"cmdoption-cyr_synclog-n"],"--append":[372,0,1,"cmdoption-cyr_synclog-a"],"--mailbox":[372,0,1,"cmdoption-cyr_synclog-m"],"--quota":[372,0,1,"cmdoption-cyr_synclog-q"],"--seen":[372,0,1,"cmdoption-cyr_synclog-s"],"--sieve":[372,0,1,"cmdoption-cyr_synclog-v"],"--subscription":[372,0,1,"cmdoption-cyr_synclog-b"],"--unmailbox":[372,0,1,"cmdoption-cyr_synclog-M"],"--unuser":[372,0,1,"cmdoption-cyr_synclog-U"],"--user":[372,0,1,"cmdoption-cyr_synclog-u"],"-C":[372,0,1,"cmdoption-cyr_synclog-C"],"-M":[372,0,1,"cmdoption-cyr_synclog-M"],"-U":[372,0,1,"cmdoption-cyr_synclog-U"],"-a":[372,0,1,"cmdoption-cyr_synclog-a"],"-b":[372,0,1,"cmdoption-cyr_synclog-b"],"-c":[372,0,1,"cmdoption-cyr_synclog-c"],"-m":[372,0,1,"cmdoption-cyr_synclog-m"],"-n":[372,0,1,"cmdoption-cyr_synclog-n"],"-q":[372,0,1,"cmdoption-cyr_synclog-q"],"-s":[372,0,1,"cmdoption-cyr_synclog-s"],"-u":[372,0,1,"cmdoption-cyr_synclog-u"],"-v":[372,0,1,"cmdoption-cyr_synclog-v"]},cyr_userseen:{"--delete":[373,0,1,"cmdoption-cyr_userseen-d"],"-C":[373,0,1,"cmdoption-cyr_userseen-C"],"-d":[373,0,1,"cmdoption-cyr_userseen-d"]},cyr_virusscan:{"--notify":[374,0,1,"cmdoption-cyr_virusscan-n"],"--remove-infected":[374,0,1,"cmdoption-cyr_virusscan-r"],"--search":[374,0,1,"cmdoption-cyr_virusscan-s"],"--verbose":[374,0,1,"cmdoption-cyr_virusscan-v"],"-C":[374,0,1,"cmdoption-cyr_virusscan-C"],"-n":[374,0,1,"cmdoption-cyr_virusscan-n"],"-r":[374,0,1,"cmdoption-cyr_virusscan-r"],"-s":[374,0,1,"cmdoption-cyr_virusscan-s"],"-v":[374,0,1,"cmdoption-cyr_virusscan-v"]},cyrdump:{"--verbose":[376,0,1,"cmdoption-cyrdump-v"],"-C":[376,0,1,"cmdoption-cyrdump-C"],"-v":[376,0,1,"cmdoption-cyrdump-v"]},cyrus:{"conf(5)":[349,1,1,"std-cyrusman-cyrus.conf-5"]},dav_reconstruct:{"--all":[420,0,1,"cmdoption-dav_reconstruct-a"],"--audit-tool":[420,0,1,"cmdoption-dav_reconstruct-A"],"-A":[420,0,1,"cmdoption-dav_reconstruct-A"],"-C":[420,0,1,"cmdoption-dav_reconstruct-C"],"-a":[420,0,1,"cmdoption-dav_reconstruct-a"],userid_list:[420,0,1,"cmdoption-dav_reconstruct-arg-userid_list"]},deliver:{"--auth-id":[377,0,1,"cmdoption-deliver-a"],"--ignore-quota":[377,0,1,"cmdoption-deliver-q"],"--lmtp":[377,0,1,"cmdoption-deliver-l"],"--mailbox":[377,0,1,"cmdoption-deliver-m"],"--return-path":[377,0,1,"cmdoption-deliver-r"],"-C":[377,0,1,"cmdoption-deliver-C"],"-a":[377,0,1,"cmdoption-deliver-a"],"-d":[377,0,1,"cmdoption-deliver-d"],"-f":[377,0,1,"cmdoption-deliver-f"],"-l":[377,0,1,"cmdoption-deliver-l"],"-m":[377,0,1,"cmdoption-deliver-m"],"-q":[377,0,1,"cmdoption-deliver-q"],"-r":[377,0,1,"cmdoption-deliver-r"]},fetchnews:{"--auth-id":[378,0,1,"cmdoption-fetchnews-a"],"--groups":[378,0,1,"cmdoption-fetchnews-w"],"--newsstamp-file":[378,0,1,"cmdoption-fetchnews-f"],"--no-newnews":[378,0,1,"cmdoption-fetchnews-n"],"--password":[378,0,1,"cmdoption-fetchnews-p"],"--server":[378,0,1,"cmdoption-fetchnews-s"],"--yyyy":[378,0,1,"cmdoption-fetchnews-y"],"-C":[378,0,1,"cmdoption-fetchnews-C"],"-a":[378,0,1,"cmdoption-fetchnews-a"],"-f":[378,0,1,"cmdoption-fetchnews-f"],"-n":[378,0,1,"cmdoption-fetchnews-n"],"-p":[378,0,1,"cmdoption-fetchnews-p"],"-s":[378,0,1,"cmdoption-fetchnews-s"],"-w":[378,0,1,"cmdoption-fetchnews-w"],"-y":[378,0,1,"cmdoption-fetchnews-y"]},fud:{"-C":[379,0,1,"cmdoption-fud-C"],"-D":[379,0,1,"cmdoption-fud-D"],"-T":[379,0,1,"cmdoption-fud-T"],"-U":[379,0,1,"cmdoption-fud-U"]},httpd:{"-C":[380,0,1,"cmdoption-httpd-C"],"-D":[380,0,1,"cmdoption-httpd-D"],"-T":[380,0,1,"cmdoption-httpd-T"],"-U":[380,0,1,"cmdoption-httpd-U"],"-p":[380,0,1,"cmdoption-httpd-p"],"-q":[380,0,1,"cmdoption-httpd-q"],"-s":[380,0,1,"cmdoption-httpd-s"]},idled:{"-C":[381,0,1,"cmdoption-idled-C"]},imapd:{"-C":[399,0,1,"cmdoption-imapd-C"],"-D":[399,0,1,"cmdoption-imapd-D"],"-N":[399,0,1,"cmdoption-imapd-N"],"-T":[399,0,1,"cmdoption-imapd-T"],"-U":[399,0,1,"cmdoption-imapd-U"],"-p":[399,0,1,"cmdoption-imapd-p"],"-s":[399,0,1,"cmdoption-imapd-s"],"conf(5)":[350,1,1,"std-cyrusman-imapd.conf-5"]},imtest:{"--authname":[431,0,1,"cmdoption-imtest-a"],"--do-challenge":[431,0,1,"cmdoption-imtest-c"],"--input-filename":[431,0,1,"cmdoption-imtest-f"],"--keyfile":[431,0,1,"cmdoption-imtest-t"],"--maxssf":[431,0,1,"cmdoption-imtest-l"],"--mechanism":[431,0,1,"cmdoption-imtest-m"],"--minssf":[431,0,1,"cmdoption-imtest-k"],"--no-initial-response":[431,0,1,"cmdoption-imtest-i"],"--output-socket":[431,0,1,"cmdoption-imtest-x"],"--password":[431,0,1,"cmdoption-imtest-w"],"--pidfile":[431,0,1,"cmdoption-imtest-I"],"--port":[431,0,1,"cmdoption-imtest-p"],"--realm":[431,0,1,"cmdoption-imtest-r"],"--reauth-attempts":[431,0,1,"cmdoption-imtest-n"],"--require-compression":[431,0,1,"cmdoption-imtest-q"],"--require-tls":[431,0,1,"cmdoption-imtest-s"],"--run-stress-test":[431,0,1,"cmdoption-imtest-z"],"--sasl-option":[431,0,1,"cmdoption-imtest-o"],"--username":[431,0,1,"cmdoption-imtest-u"],"--verbose":[431,0,1,"cmdoption-imtest-v"],"-I":[431,0,1,"cmdoption-imtest-I"],"-X":[431,0,1,"cmdoption-imtest-X"],"-a":[431,0,1,"cmdoption-imtest-a"],"-c":[431,0,1,"cmdoption-imtest-c"],"-f":[431,0,1,"cmdoption-imtest-f"],"-i":[431,0,1,"cmdoption-imtest-i"],"-k":[431,0,1,"cmdoption-imtest-k"],"-l":[431,0,1,"cmdoption-imtest-l"],"-m":[431,0,1,"cmdoption-imtest-m"],"-n":[431,0,1,"cmdoption-imtest-n"],"-o":[431,0,1,"cmdoption-imtest-o"],"-p":[431,0,1,"cmdoption-imtest-p"],"-q":[431,0,1,"cmdoption-imtest-q"],"-r":[431,0,1,"cmdoption-imtest-r"],"-s":[431,0,1,"cmdoption-imtest-s"],"-t":[431,0,1,"cmdoption-imtest-t"],"-u":[431,0,1,"cmdoption-imtest-u"],"-v":[431,0,1,"cmdoption-imtest-v"],"-w":[431,0,1,"cmdoption-imtest-w"],"-x":[431,0,1,"cmdoption-imtest-x"],"-z":[431,0,1,"cmdoption-imtest-z"]},installsieve:{"-a":[423,0,1,"cmdoption-installsieve-a"],"-d":[423,0,1,"cmdoption-installsieve-d"],"-g":[423,0,1,"cmdoption-installsieve-g"],"-i":[423,0,1,"cmdoption-installsieve-i"],"-l":[423,0,1,"cmdoption-installsieve-l"],"-m":[423,0,1,"cmdoption-installsieve-m"],"-p":[423,0,1,"cmdoption-installsieve-p"],"-u":[423,0,1,"cmdoption-installsieve-u"],"-v":[423,0,1,"cmdoption-installsieve-v"]},ipurge:{"--bytes":[383,0,1,"cmdoption-ipurge-b"],"--days":[383,0,1,"cmdoption-ipurge-d"],"--delivery-time":[383,0,1,"cmdoption-ipurge-X"],"--dry-run":[383,0,1,"cmdoption-ipurge-n"],"--exact-match":[383,0,1,"cmdoption-ipurge-x"],"--include-user-mailboxes":[383,0,1,"cmdoption-ipurge-f"],"--invert-match":[383,0,1,"cmdoption-ipurge-i"],"--kbytes":[383,0,1,"cmdoption-ipurge-k"],"--mbytes":[383,0,1,"cmdoption-ipurge-m"],"--only-deleted":[383,0,1,"cmdoption-ipurge-o"],"--skip-flagged":[383,0,1,"cmdoption-ipurge-s"],"--verbose":[383,0,1,"cmdoption-ipurge-v"],"-C":[383,0,1,"cmdoption-ipurge-C"],"-X":[383,0,1,"cmdoption-ipurge-X"],"-b":[383,0,1,"cmdoption-ipurge-b"],"-d":[383,0,1,"cmdoption-ipurge-d"],"-f":[383,0,1,"cmdoption-ipurge-f"],"-i":[383,0,1,"cmdoption-ipurge-i"],"-k":[383,0,1,"cmdoption-ipurge-k"],"-m":[383,0,1,"cmdoption-ipurge-m"],"-n":[383,0,1,"cmdoption-ipurge-n"],"-o":[383,0,1,"cmdoption-ipurge-o"],"-s":[383,0,1,"cmdoption-ipurge-s"],"-v":[383,0,1,"cmdoption-ipurge-v"],"-x":[383,0,1,"cmdoption-ipurge-x"]},krb:{"equiv(5)":[351,1,1,"std-cyrusman-krb.equiv-5"]},lmtpd:{"-C":[397,0,1,"cmdoption-lmtpd-C"],"-D":[397,0,1,"cmdoption-lmtpd-D"],"-T":[397,0,1,"cmdoption-lmtpd-T"],"-U":[397,0,1,"cmdoption-lmtpd-U"],"-a":[397,0,1,"cmdoption-lmtpd-a"]},master:{"-C":[387,0,1,"cmdoption-master-C"],"-D":[387,0,1,"cmdoption-master-D"],"-L":[387,0,1,"cmdoption-master-L"],"-M":[387,0,1,"cmdoption-master-M"],"-d":[387,0,1,"cmdoption-master-d"],"-j":[387,0,1,"cmdoption-master-j"],"-l":[387,0,1,"cmdoption-master-l"],"-p":[387,0,1,"cmdoption-master-p"]},mbexamine:{"--check-message-files":[388,0,1,"cmdoption-mbexamine-0"],"--check-quota":[388,0,1,"cmdoption-mbexamine-q"],"--seq":[388,0,1,"cmdoption-mbexamine-s"],"--uid":[388,0,1,"cmdoption-mbexamine-u"],"-C":[388,0,1,"cmdoption-mbexamine-C"],"-c":[388,0,1,"cmdoption-mbexamine-0"],"-q":[388,0,1,"cmdoption-mbexamine-q"],"-s":[388,0,1,"cmdoption-mbexamine-s"],"-u":[388,0,1,"cmdoption-mbexamine-u"]},mbpath:{"--all":[389,0,1,"cmdoption-mbpath-0"],"--archive":[389,0,1,"cmdoption-mbpath-A"],"--data":[389,0,1,"cmdoption-mbpath-D"],"--local-only":[389,0,1,"cmdoption-mbpath-l"],"--metadata":[389,0,1,"cmdoption-mbpath-M"],"--paths":[389,0,1,"cmdoption-mbpath-p"],"--quiet":[389,0,1,"cmdoption-mbpath-q"],"--sieve":[389,0,1,"cmdoption-mbpath-S"],"--stop":[389,0,1,"cmdoption-mbpath-s"],"--user-files":[389,0,1,"cmdoption-mbpath-U"],"--userids":[389,0,1,"cmdoption-mbpath-u"],"-A":[389,0,1,"cmdoption-mbpath-A"],"-C":[389,0,1,"cmdoption-mbpath-C"],"-D":[389,0,1,"cmdoption-mbpath-D"],"-M":[389,0,1,"cmdoption-mbpath-M"],"-S":[389,0,1,"cmdoption-mbpath-S"],"-U":[389,0,1,"cmdoption-mbpath-U"],"-a":[389,0,1,"cmdoption-mbpath-0"],"-l":[389,0,1,"cmdoption-mbpath-l"],"-m":[389,0,1,"cmdoption-mbpath-m"],"-p":[389,0,1,"cmdoption-mbpath-p"],"-q":[389,0,1,"cmdoption-mbpath-q"],"-s":[389,0,1,"cmdoption-mbpath-s"],"-u":[389,0,1,"cmdoption-mbpath-u"]},mbtool:{"--new-uniqueid":[390,0,1,"cmdoption-mbtool-r"],"--normalize-internaldate":[390,0,1,"cmdoption-mbtool-t"],"-C":[390,0,1,"cmdoption-mbtool-C"],"-r":[390,0,1,"cmdoption-mbtool-r"],"-t":[390,0,1,"cmdoption-mbtool-t"]},mkimap:{"config-file":[391,0,1,"cmdoption-mkimap-arg-config-file"]},mknewsgroups:{"-C":[392,0,1,"cmdoption-mknewsgroups-C"],"-a":[392,0,1,"cmdoption-mknewsgroups-a"],"-f":[392,0,1,"cmdoption-mknewsgroups-f"],"-h":[392,0,1,"cmdoption-mknewsgroups-h"],"-n":[392,0,1,"cmdoption-mknewsgroups-n"],"-p":[392,0,1,"cmdoption-mknewsgroups-p"],"-u":[392,0,1,"cmdoption-mknewsgroups-u"],"-w":[392,0,1,"cmdoption-mknewsgroups-w"]},mupdate:{"-C":[393,0,1,"cmdoption-mupdate-C"],"-a":[393,0,1,"cmdoption-mupdate-a"],"-m":[393,0,1,"cmdoption-mupdate-m"]},nntpd:{"-C":[394,0,1,"cmdoption-nntpd-C"],"-D":[394,0,1,"cmdoption-nntpd-D"],"-T":[394,0,1,"cmdoption-nntpd-T"],"-U":[394,0,1,"cmdoption-nntpd-U"],"-f":[394,0,1,"cmdoption-nntpd-f"],"-p":[394,0,1,"cmdoption-nntpd-p"],"-r":[394,0,1,"cmdoption-nntpd-r"],"-s":[394,0,1,"cmdoption-nntpd-s"]},notifyd:{"-C":[395,0,1,"cmdoption-notifyd-C"],"-D":[395,0,1,"cmdoption-notifyd-D"],"-T":[395,0,1,"cmdoption-notifyd-T"],"-U":[395,0,1,"cmdoption-notifyd-U"]},pop3d:{"-C":[396,0,1,"cmdoption-pop3d-C"],"-D":[396,0,1,"cmdoption-pop3d-D"],"-T":[396,0,1,"cmdoption-pop3d-T"],"-U":[396,0,1,"cmdoption-pop3d-U"],"-k":[396,0,1,"cmdoption-pop3d-k"],"-p":[396,0,1,"cmdoption-pop3d-p"],"-s":[396,0,1,"cmdoption-pop3d-s"]},promstatsd:{"-1":[398,0,1,"cmdoption-promstatsd-1"],"-C":[398,0,1,"cmdoption-promstatsd-C"],"-D":[398,0,1,"cmdoption-promstatsd-D"],"-c":[398,0,1,"cmdoption-promstatsd-0"],"-d":[398,0,1,"cmdoption-promstatsd-2"],"-f":[398,0,1,"cmdoption-promstatsd-f"],"-v":[398,0,1,"cmdoption-promstatsd-v"]},ptdump:{"-C":[400,0,1,"cmdoption-ptdump-C"]},ptexpire:{"--expire-duration":[401,0,1,"cmdoption-ptexpire-E"],"-C":[401,0,1,"cmdoption-ptexpire-C"],"-E":[401,0,1,"cmdoption-ptexpire-E"]},ptloader:{"-d":[402,0,1,"cmdoption-ptloader-d"]},quota:{"--domain":[403,0,1,"cmdoption-quota-d"],"--fix":[403,0,1,"cmdoption-quota-f"],"--json":[403,0,1,"cmdoption-quota-J"],"--quiet":[403,0,1,"cmdoption-quota-q"],"--report-only":[403,0,1,"cmdoption-quota-n"],"--userids":[403,0,1,"cmdoption-quota-u"],"-C":[403,0,1,"cmdoption-quota-C"],"-J":[403,0,1,"cmdoption-quota-J"],"-d":[403,0,1,"cmdoption-quota-d"],"-f":[403,0,1,"cmdoption-quota-f"],"-n":[403,0,1,"cmdoption-quota-n"],"-q":[403,0,1,"cmdoption-quota-q"],"-u":[403,0,1,"cmdoption-quota-u"],"mailbox-spec":[403,0,1,"cmdoption-quota-arg-mailbox-spec"]},reconstruct:{"--delete-odd-files":[404,0,1,"cmdoption-reconstruct-O"],"--dry-run":[404,0,1,"cmdoption-reconstruct-n"],"--force-reparse":[404,0,1,"cmdoption-reconstruct-G"],"--guid-mismatch-discard":[404,0,1,"cmdoption-reconstruct-U"],"--guid-mismatch-keep":[404,0,1,"cmdoption-reconstruct-R"],"--header-paths":[404,0,1,"cmdoption-reconstruct-P"],"--ignore-disk-metadata":[404,0,1,"cmdoption-reconstruct-x"],"--ignore-odd-files":[404,0,1,"cmdoption-reconstruct-o"],"--no-stat":[404,0,1,"cmdoption-reconstruct-s"],"--partition":[404,0,1,"cmdoption-reconstruct-p"],"--prefer-mboxlist":[404,0,1,"cmdoption-reconstruct-M"],"--quiet":[404,0,1,"cmdoption-reconstruct-q"],"--recursive":[404,0,1,"cmdoption-reconstruct-r"],"--scan-filesystem":[404,0,1,"cmdoption-reconstruct-f"],"--set-version":[404,0,1,"cmdoption-reconstruct-V"],"--update-uniqueids":[404,0,1,"cmdoption-reconstruct-I"],"--userids":[404,0,1,"cmdoption-reconstruct-0"],"-C":[404,0,1,"cmdoption-reconstruct-C"],"-G":[404,0,1,"cmdoption-reconstruct-G"],"-I":[404,0,1,"cmdoption-reconstruct-I"],"-M":[404,0,1,"cmdoption-reconstruct-M"],"-O":[404,0,1,"cmdoption-reconstruct-O"],"-P":[404,0,1,"cmdoption-reconstruct-P"],"-R":[404,0,1,"cmdoption-reconstruct-R"],"-U":[404,0,1,"cmdoption-reconstruct-U"],"-V":[404,0,1,"cmdoption-reconstruct-V"],"-f":[404,0,1,"cmdoption-reconstruct-f"],"-n":[404,0,1,"cmdoption-reconstruct-n"],"-o":[404,0,1,"cmdoption-reconstruct-o"],"-p":[404,0,1,"cmdoption-reconstruct-p"],"-q":[404,0,1,"cmdoption-reconstruct-q"],"-r":[404,0,1,"cmdoption-reconstruct-r"],"-s":[404,0,1,"cmdoption-reconstruct-s"],"-u":[404,0,1,"cmdoption-reconstruct-0"],"-x":[404,0,1,"cmdoption-reconstruct-x"]},rehash:{"-f":[405,0,1,"cmdoption-rehash-f"],"-i":[405,0,1,"cmdoption-rehash-i"],"-n":[405,0,1,"cmdoption-rehash-n"],"-v":[405,0,1,"cmdoption-rehash-v"]},relocate_by_id:{"--dry-run":[406,0,1,"cmdoption-relocate_by_id-n"],"--quiet":[406,0,1,"cmdoption-relocate_by_id-q"],"--userids":[406,0,1,"cmdoption-relocate_by_id-u"],"-C":[406,0,1,"cmdoption-relocate_by_id-C"],"-n":[406,0,1,"cmdoption-relocate_by_id-n"],"-q":[406,0,1,"cmdoption-relocate_by_id-q"],"-u":[406,0,1,"cmdoption-relocate_by_id-u"]},restore:{"--all-mailboxes":[407,0,1,"cmdoption-restore-0"],"--delayed-startup":[407,0,1,"cmdoption-restore-w"],"--dest-mailbox":[407,0,1,"cmdoption-restore-M"],"--dest-partition":[407,0,1,"cmdoption-restore-P"],"--dry-run":[407,0,1,"cmdoption-restore-n"],"--file":[407,0,1,"cmdoption-restore-2"],"--input-file":[407,0,1,"cmdoption-restore-F"],"--keep-deletedprefix":[407,0,1,"cmdoption-restore-D"],"--keep-uidvalidity":[407,0,1,"cmdoption-restore-U"],"--local-only":[407,0,1,"cmdoption-restore-L"],"--mailbox":[407,0,1,"cmdoption-restore-3"],"--only-expunged":[407,0,1,"cmdoption-restore-1"],"--override-acl":[407,0,1,"cmdoption-restore-A"],"--recursive":[407,0,1,"cmdoption-restore-r"],"--require-compression":[407,0,1,"cmdoption-restore-z"],"--skip-expunged":[407,0,1,"cmdoption-restore-X"],"--userid":[407,0,1,"cmdoption-restore-4"],"--verbose":[407,0,1,"cmdoption-restore-v"],"-A":[407,0,1,"cmdoption-restore-A"],"-C":[407,0,1,"cmdoption-restore-C"],"-D":[407,0,1,"cmdoption-restore-D"],"-F":[407,0,1,"cmdoption-restore-F"],"-L":[407,0,1,"cmdoption-restore-L"],"-M":[407,0,1,"cmdoption-restore-M"],"-P":[407,0,1,"cmdoption-restore-P"],"-U":[407,0,1,"cmdoption-restore-U"],"-X":[407,0,1,"cmdoption-restore-X"],"-a":[407,0,1,"cmdoption-restore-0"],"-f":[407,0,1,"cmdoption-restore-2"],"-m":[407,0,1,"cmdoption-restore-3"],"-n":[407,0,1,"cmdoption-restore-n"],"-r":[407,0,1,"cmdoption-restore-r"],"-u":[407,0,1,"cmdoption-restore-4"],"-v":[407,0,1,"cmdoption-restore-v"],"-w":[407,0,1,"cmdoption-restore-w"],"-x":[407,0,1,"cmdoption-restore-1"],"-z":[407,0,1,"cmdoption-restore-z"]},sievec:{"-C":[408,0,1,"cmdoption-sievec-C"]},sieved:{"--as-sieve":[409,0,1,"cmdoption-sieved-s"],"-s":[409,0,1,"cmdoption-sieved-s"]},smmapd:{"-C":[410,0,1,"cmdoption-smmapd-C"],"-D":[410,0,1,"cmdoption-smmapd-D"],"-T":[410,0,1,"cmdoption-smmapd-T"],"-U":[410,0,1,"cmdoption-smmapd-U"]},squatter:{"--allow-partials":[411,0,1,"cmdoption-squatter-p"],"--audit":[411,0,1,"cmdoption-squatter-A"],"--channel":[411,0,1,"cmdoption-squatter-1"],"--compact":[411,0,1,"cmdoption-squatter-z"],"--copydb":[411,0,1,"cmdoption-squatter-o"],"--filter":[411,0,1,"cmdoption-squatter-F"],"--help":[411,0,1,"cmdoption-squatter-h"],"--incremental":[411,0,1,"cmdoption-squatter-i"],"--internalindex":[411,0,1,"cmdoption-squatter-Z"],"--name":[411,0,1,"cmdoption-squatter-N"],"--nodaemon":[411,0,1,"cmdoption-squatter-d"],"--only-upgrade":[411,0,1,"cmdoption-squatter-U"],"--recursive":[411,0,1,"cmdoption-squatter-2"],"--reindex":[411,0,1,"cmdoption-squatter-X"],"--reindex-minlevel":[411,0,1,"cmdoption-squatter-L"],"--reindex-partials":[411,0,1,"cmdoption-squatter-P"],"--reindex-tier":[411,0,1,"cmdoption-squatter-T"],"--rolling":[411,0,1,"cmdoption-squatter-R"],"--skip-locked":[411,0,1,"cmdoption-squatter-B"],"--sleep":[411,0,1,"cmdoption-squatter-S"],"--squat-annot":[411,0,1,"cmdoption-squatter-a"],"--squat-skip":[411,0,1,"cmdoption-squatter-s"],"--srctier":[411,0,1,"cmdoption-squatter-3"],"--synclog":[411,0,1,"cmdoption-squatter-0"],"--user":[411,0,1,"cmdoption-squatter-u"],"--verbose":[411,0,1,"cmdoption-squatter-v"],"-A":[411,0,1,"cmdoption-squatter-A"],"-B":[411,0,1,"cmdoption-squatter-B"],"-C":[411,0,1,"cmdoption-squatter-C"],"-F":[411,0,1,"cmdoption-squatter-F"],"-L":[411,0,1,"cmdoption-squatter-L"],"-N":[411,0,1,"cmdoption-squatter-N"],"-P":[411,0,1,"cmdoption-squatter-P"],"-R":[411,0,1,"cmdoption-squatter-R"],"-S":[411,0,1,"cmdoption-squatter-S"],"-T":[411,0,1,"cmdoption-squatter-T"],"-U":[411,0,1,"cmdoption-squatter-U"],"-X":[411,0,1,"cmdoption-squatter-X"],"-Z":[411,0,1,"cmdoption-squatter-Z"],"-a":[411,0,1,"cmdoption-squatter-a"],"-d":[411,0,1,"cmdoption-squatter-d"],"-f":[411,0,1,"cmdoption-squatter-0"],"-h":[411,0,1,"cmdoption-squatter-h"],"-i":[411,0,1,"cmdoption-squatter-i"],"-n":[411,0,1,"cmdoption-squatter-1"],"-o":[411,0,1,"cmdoption-squatter-o"],"-p":[411,0,1,"cmdoption-squatter-p"],"-r":[411,0,1,"cmdoption-squatter-2"],"-s":[411,0,1,"cmdoption-squatter-s"],"-t":[411,0,1,"cmdoption-squatter-3"],"-u":[411,0,1,"cmdoption-squatter-u"],"-v":[411,0,1,"cmdoption-squatter-v"],"-z":[411,0,1,"cmdoption-squatter-z"]},sync_client:{"--all-users":[412,0,1,"cmdoption-sync_client-A"],"--channel":[412,0,1,"cmdoption-sync_client-n"],"--connect-once":[412,0,1,"cmdoption-sync_client-o"],"--delay":[412,0,1,"cmdoption-sync_client-d"],"--delayed-startup":[412,0,1,"cmdoption-sync_client-w"],"--dest-partition":[412,0,1,"cmdoption-sync_client-p"],"--foreground-rolling":[412,0,1,"cmdoption-sync_client-R"],"--input-file":[412,0,1,"cmdoption-sync_client-f"],"--local-only":[412,0,1,"cmdoption-sync_client-L"],"--mailboxes":[412,0,1,"cmdoption-sync_client-m"],"--no-copyback":[412,0,1,"cmdoption-sync_client-O"],"--require-compression":[412,0,1,"cmdoption-sync_client-z"],"--rolling":[412,0,1,"cmdoption-sync_client-r"],"--rolling-once":[412,0,1,"cmdoption-sync_client-1"],"--server":[412,0,1,"cmdoption-sync_client-S"],"--shutdown-file":[412,0,1,"cmdoption-sync_client-F"],"--sieve-mode":[412,0,1,"cmdoption-sync_client-s"],"--skip-locked":[412,0,1,"cmdoption-sync_client-N"],"--stage-to-archive":[412,0,1,"cmdoption-sync_client-a"],"--timeout":[412,0,1,"cmdoption-sync_client-t"],"--userids":[412,0,1,"cmdoption-sync_client-u"],"--verbose":[412,0,1,"cmdoption-sync_client-v"],"--verbose-logging":[412,0,1,"cmdoption-sync_client-l"],"-1":[412,0,1,"cmdoption-sync_client-1"],"-A":[412,0,1,"cmdoption-sync_client-A"],"-C":[412,0,1,"cmdoption-sync_client-C"],"-F":[412,0,1,"cmdoption-sync_client-F"],"-L":[412,0,1,"cmdoption-sync_client-L"],"-N":[412,0,1,"cmdoption-sync_client-N"],"-O":[412,0,1,"cmdoption-sync_client-O"],"-R":[412,0,1,"cmdoption-sync_client-R"],"-S":[412,0,1,"cmdoption-sync_client-S"],"-a":[412,0,1,"cmdoption-sync_client-a"],"-d":[412,0,1,"cmdoption-sync_client-d"],"-f":[412,0,1,"cmdoption-sync_client-f"],"-l":[412,0,1,"cmdoption-sync_client-l"],"-m":[412,0,1,"cmdoption-sync_client-m"],"-n":[412,0,1,"cmdoption-sync_client-n"],"-o":[412,0,1,"cmdoption-sync_client-o"],"-p":[412,0,1,"cmdoption-sync_client-p"],"-r":[412,0,1,"cmdoption-sync_client-r"],"-s":[412,0,1,"cmdoption-sync_client-s"],"-t":[412,0,1,"cmdoption-sync_client-t"],"-u":[412,0,1,"cmdoption-sync_client-u"],"-v":[412,0,1,"cmdoption-sync_client-v"],"-w":[412,0,1,"cmdoption-sync_client-w"],"-z":[412,0,1,"cmdoption-sync_client-z"]},sync_reset:{"--force":[413,0,1,"cmdoption-sync_reset-f"],"--verbose":[413,0,1,"cmdoption-sync_reset-v"],"-C":[413,0,1,"cmdoption-sync_reset-C"],"-f":[413,0,1,"cmdoption-sync_reset-f"],"-v":[413,0,1,"cmdoption-sync_reset-v"]},sync_server:{"-C":[414,0,1,"cmdoption-sync_server-C"],"-p":[414,0,1,"cmdoption-sync_server-p"]},timsieved:{"-C":[415,0,1,"cmdoption-timsieved-C"]},translatesieve:{"-C":[417,0,1,"cmdoption-translatesieve-C"],"-a":[417,0,1,"cmdoption-translatesieve-a"],"-f":[417,0,1,"cmdoption-translatesieve-f"],"-n":[417,0,1,"cmdoption-translatesieve-n"],"-u":[417,0,1,"cmdoption-translatesieve-u"],"-v":[417,0,1,"cmdoption-translatesieve-v"]},unexpunge:{"--all":[418,0,1,"cmdoption-unexpunge-a"],"--list":[418,0,1,"cmdoption-unexpunge-l"],"--set-flag":[418,0,1,"cmdoption-unexpunge-f"],"--uids":[418,0,1,"cmdoption-unexpunge-u"],"--unset-deleted":[418,0,1,"cmdoption-unexpunge-d"],"--verbose":[418,0,1,"cmdoption-unexpunge-v"],"--within-time-interval":[418,0,1,"cmdoption-unexpunge-t"],"-C":[418,0,1,"cmdoption-unexpunge-C"],"-a":[418,0,1,"cmdoption-unexpunge-a"],"-d":[418,0,1,"cmdoption-unexpunge-d"],"-f":[418,0,1,"cmdoption-unexpunge-f"],"-l":[418,0,1,"cmdoption-unexpunge-l"],"-t":[418,0,1,"cmdoption-unexpunge-t"],"-u":[418,0,1,"cmdoption-unexpunge-u"],"-v":[418,0,1,"cmdoption-unexpunge-v"]}},objnames:{"0":["std","cmdoption","program option"],"1":["std","cyrusman","cyrusman"]},objtypes:{"0":"std:cmdoption","1":"std:cyrusman"},terms:{"000":[82,83,84,86,87],"0000":[27,349,390,418],"00000000":[154,388,418],"000000000000000000000000":61,"00000001":[388,390],"00000002":[388,390],"00000004":388,"00000010":388,"00000011":388,"00000014":418,"00000022":388,"000001":[388,418],"001":27,"002":27,"00278862":418,"00278863":418,"008":27,"009112":65,"0101003f4c56b00545000000":61,"0101003f4c56b04b2900000d":61,"0101003f4c56b0514900001f":61,"0101003f4c56b07422000002":61,"0101003f4c56b07e56000023":61,"0101003f4c56b08328000016":61,"0101003f4c56b084d7000002":61,"0101003f4c56b087f3000001":61,"0101003f4c56b08c9d000026":61,"0117":411,"0200":27,"0300":[56,374],"03ff":56,"0400":[74,268,276,349,356,388],"04012015":353,"0403":15,"04152015":353,"0430":[160,268],"0445":268,"04482782":359,"0500":[388,390],"077":350,"0800":310,"097":27,"0977":432,"0cee599b1573110fee428f8323690cbcb9589661":74,"0x0":80,"0x4066cc":80,"0x406806":80,"0x40c059":80,"0x4399d8":80,"0x44a0ca":80,"0x44a2f8":80,"0x4c2815c":80,"0x61b32a9":80,"0x61b36ed":80,"0x61b3827":80,"0x72d7748e":80,"100":[9,11,30,46,87,277,289,345,349,350,356,380,382,384,385,393,396,397,399,410,414,415],"1000":[30,238,241,242,350,412],"10000":387,"1000gb":277,"1000gib":[9,277],"100gb":277,"100gib":9,"100mb":46,"101":[190,206],"1011":100,"1012":100,"1013":100,"1015":100,"10167054345787041319":27,"1024":[15,154,267,276,350,375],"1024b":350,"1024k":350,"1024kib":350,"1024mib":350,"10330":359,"1036":432,"1048576":[28,403],"1051":374,"1062919294":64,"1062945305":61,"1062968731":61,"1062971802":61,"10646":56,"1079745":80,"109":161,"1090":[164,200],"10m":350,"10s":[285,350],"10t16":27,"110":[30,96,268,295,313,433,446],"1100":375,"1109":[96,268,295,446],"110gib":9,"112":64,"11277155374959916506":27,"11356":[165,190],"11422":305,"1143":303,"11438":305,"1147":268,"115":98,"116":[146,161],"117":161,"1172":374,"1176":432,"118":161,"11813528620713894618":27,"119":[96,268,293,295,350,446],"1191":99,"120":161,"1200":310,"1228":143,"123":74,"1234":55,"12345":[336,341],"123456789":27,"1234abcd":18,"125":388,"1252":[219,221,222],"1256":99,"1267":99,"127":[268,303,349],"128":[301,350,388],"128k":350,"12a62f123451395dc7d52518ae8e8c75571c9876":388,"1338":105,"134":[80,319],"1342":[97,432],"13460832":368,"13590468293654033744":27,"136":319,"1361966400":388,"1361982429":388,"1361982447":388,"137":319,"1375":275,"1377864000":388,"1377891971":388,"1399062365":313,"1404761793":388,"1404765874":388,"14068443041501787710":27,"1411487714":27,"1413804854":27,"142":162,"14230":[210,211,212,213,214,215,216,217,219,220,221,222],"1424683682":27,"1424683683":27,"1424683684":27,"1424690388":27,"1424699256":27,"1424699421":27,"1424699443":27,"1424699488":27,"1424699561":27,"1424699624":27,"1424699642":27,"1424699720":27,"1424699757":27,"1424699807":27,"1424699879":27,"1424699917":27,"1424699989":27,"1424713022":27,"1424713039":27,"1425726000":418,"1425728572":418,"1425728573":418,"1425912731":418,"1425912743":418,"1426000420":27,"1426000578":27,"143":[18,27,96,268,295,303,350,433,446],"1433511915":359,"1433518227":359,"1433633682":359,"1434":[164,200],"1437":200,"1437709276":74,"1437709300":74,"1437709355":74,"1437709425":74,"1437709508":74,"144":80,"1440":[268,349],"1443":388,"1446179047":74,"145":27,"149":319,"150":319,"151":[88,319],"152":319,"15213":81,"152f59c":200,"153":319,"155":319,"156":161,"157":319,"159":319,"161":319,"162":319,"163":161,"165":[161,319],"1652":432,"167":319,"168":[40,313,366],"169":319,"169791":403,"17185":374,"1719":74,"17203":374,"1730":432,"1731":49,"17338":374,"17373":374,"1742":163,"17426":374,"1752":163,"1763345":370,"1768":163,"1769":49,"1771":388,"179":[169,319],"1796640":370,"1796653":370,"1796663":370,"180":[44,310,411],"1800":310,"1801":138,"183":[27,170],"18345110432907898457":27,"18418688457439930663":313,"185395":374,"1869":432,"1870":432,"1872":[64,163,189],"1875":189,"18928":[192,216,217,219,220,221,222],"190":366,"1901":199,"19011213t204552z":350,"1909":199,"1914":199,"1915":189,"192":[40,301,313,366],"19205":310,"19238":374,"1926":189,"1926722702":80,"19268":374,"1927":189,"1931":[163,199],"1933":199,"1939":[8,432],"1944":199,"1948":199,"1951":432,"1952":432,"19610300":368,"1964":[164,199],"1967":[147,164,199],"1970":388,"1977":74,"19783":[166,193,217,219,220,221,222],"1990":443,"1993":[199,436],"1994":[81,269,441,445],"1995000":64,"1998":[269,441],"1c7cca361502dfed2d918da97e506f1c1e97dfb":74,"1gib":350,"1h30m":350,"1kib":350,"1mib":350,"1st":56,"1tb":340,"200":[9,18,30,277,350],"2000":[30,301],"20000":[238,241,242],"2000gib":[9,277],"2001":[404,428,441],"2002":[79,80,269,404,441],"2003":[60,96,268,295,404,446],"2004":[96,100,268,295,404,446],"2005":[96,268,295,310,350,388,404,446],"2006":[11,404],"2007":404,"2008":404,"2009":404,"200gib":[9,277],"201":350,"2010":[55,80,404],"2011":[111,139,305,373,375,404],"2012":[373,404],"2013":[161,374,390,404],"201308131519":374,"2014":[27,65,305,373,388,390],"2015":[27,174,353,418],"20150307114247":418,"20150307114251":418,"20151119t063000z":27,"20151119t073000z":27,"20151119t083000z":27,"2016":388,"2017":[81,210,211,212,213,214,215,216,217,219,220,221,222],"2018":[44,289],"2019":[165,166,190,192,193,216,217,219,220,221,222],"202":370,"2020a":[88,361],"2021":[196,231,232,243,244],"2022":[56,97,223],"2026":205,"203":171,"2030":27,"2033":[68,432],"2034":432,"20380119t031407z":350,"2045":[56,432],"2046":[350,432],"2047":[56,97,322,350,377,432],"206":[27,370],"2060":[68,432],"2061":432,"207":172,"2076":200,"20799488":64,"2080":200,"2086":[14,271,275,350,432],"2087":[375,432,442],"2088":432,"2090":201,"2091":201,"2097152":307,"20m":350,"20s":350,"20t11":27,"20t13":27,"211":370,"212":370,"2129":74,"2132":201,"21427":388,"2159":74,"216":174,"2177":[12,164,203,350,432],"218":27,"2185":164,"2191":202,"2192":[202,432],"2193":[287,432],"2195":432,"2197":203,"2199":[150,164,202],"220":268,"2201":202,"2216":202,"2221":[164,432],"2222":164,"224":64,"2240":203,"2244":56,"2246":432,"2253":[164,203],"2259":418,"2260":418,"227":175,"2275":154,"2282":205,"228429":403,"2295":432,"2298":432,"2300":305,"2301":203,"2303":203,"2312":56,"2317":203,"232":64,"2340":27,"2342":[33,432],"23450":388,"2346":204,"2348":204,"2350":204,"2355":205,"2359":[97,349,432],"236":80,"2362":205,"2369":432,"2378":164,"2383":[193,197,233,245],"2392":350,"23t14":27,"23t18":27,"240":310,"2413":205,"2425":432,"2426":432,"2444":432,"2449":[97,206,432],"2457":205,"2466":205,"2470":223,"24h":[350,418],"250":[268,309,342,354,379,380,382,384,385,394,395,396,397,399,410],"2518":432,"2521":206,"2524":206,"2534":206,"2545":418,"2548":418,"255":[27,350],"255f37ffc2e7":27,"256":[56,82,83,84,86,87,93,349,350],"2566":206,"2595":432,"2597":206,"2598":[238,240,241,242],"2609":206,"2617":432,"2620":226,"2621":190,"2625":206,"2643":206,"2663":206,"2678":190,"2679":190,"268":81,"2685":[141,142],"2712":190,"2717":145,"2727":109,"2728":138,"2729":190,"2741":192,"274250":418,"274251":418,"2746":74,"2772":139,"2774":289,"2777":191,"278786":418,"278787":418,"278788":418,"2795":191,"2806700531460584176":27,"2808":192,"2817":[191,432],"2818":432,"2821":[344,350,432],"2822":432,"283":80,"2831":[191,432],"2832":191,"2839":[215,216,217,219,220,221,222],"2843":228,"2848":192,"286":418,"2877":192,"288":418,"2882":231,"2890":74,"2893":192,"2896189896878960640":27,"2904":192,"2913":[166,193],"2914":193,"2920":[193,194,432],"2931":193,"2971":432,"2980":432,"2992":27,"2999":80,"2c_thoma":27,"2gb":[189,193],"2ghz":340,"2nd":56,"300":[11,268,310,350],"3003":27,"3004":27,"3028":[99,301,350,432],"3029":226,"3035":223,"3036":223,"3038":223,"3039":223,"3043":138,"3046":223,"3049":223,"3057":226,"3060":226,"3073":227,"308":432,"3097981731339369225":27,"30gb":277,"30gib":9,"30m":350,"30s":[350,387],"3102":227,"3103":156,"3115":227,"3116":[194,227],"3120":228,"3123":[150,167,194,227],"3128":229,"3143":[168,195,227],"3150":140,"3152":227,"3153":228,"3154":228,"3157":228,"3158":138,"3159":110,"3163":228,"3164225":27,"3169":[158,228],"3172":229,"3174":228,"3178":138,"3179":138,"3180":229,"3183":228,"3188":158,"3191":[168,195,228],"32056":[231,243],"3206":432,"3207":432,"3208":[111,139],"3209":228,"3210":228,"3212":228,"3214":229,"3223":138,"3225":231,"3229":432,"323":80,"3235":230,"3239":229,"3240":[225,247],"3253":432,"3260":229,"32625b552aa1":66,"3265":229,"3272":229,"3273":138,"3275":229,"3281":229,"3287":[195,229],"32bit":58,"32k":350,"32m":350,"3300":139,"3303":158,"3307":156,"3312":[151,168,195,230],"3313":155,"3318":246,"3320":[168,195,230],"3325":[251,252,253,254,255,256],"3339":[154,432],"3342":154,"3344":154,"3345":154,"3347":154,"3348":432,"3349":154,"3351":154,"3352":154,"3353":154,"3355":[154,155],"3356":[154,155],"3357":[155,156],"3358":154,"33582":[196,232,244],"3360":155,"336053":109,"3361":155,"3362":155,"3364":157,"3369":155,"3370":155,"3381":142,"3382":156,"3383":156,"3385":156,"3388":157,"3389":156,"3390":157,"3391":156,"3392":156,"3394":156,"3397":74,"3399":156,"3400":156,"3402":138,"3404":[156,157],"3405":142,"3406":157,"3410":157,"3415":[146,157],"3417":156,"3420":156,"3421":[251,252,253,254,255,256],"3423":156,"3426":156,"3428":157,"3429":157,"3430":158,"3431":[158,432],"3433":157,"3437":158,"3438":158,"3439":139,"344":27,"3440":157,"3442":158,"3443":158,"3444":158,"3446":158,"3448":158,"3451":139,"3453":158,"3456":[158,196,231,243],"3457":158,"3462":243,"3463":[139,432],"3464":158,"3465":[113,158],"3466":158,"3467":158,"3468":243,"3470":158,"3477":158,"3482":138,"3484":145,"3485":142,"3488":244,"3489":139,"3491":139,"3492":139,"3495":139,"3497":139,"3498":139,"3499":139,"3501":[52,122,140,312,350,432,443],"3502":[140,432],"3503":139,"3504":138,"3505":139,"3506":139,"3507":139,"3516":432,"352":80,"3527":244,"3528":244,"3533":140,"3545":140,"3547":140,"3550":140,"3553":140,"3554":140,"3556":140,"3558":140,"3559":140,"3564":141,"3565":[140,141],"3566":141,"3582":142,"3586":141,"3588":141,"3589":74,"3591":141,"3593":141,"3594":141,"3595":141,"35955":388,"3597":[233,245],"3598":[142,432],"360":310,"3602":141,"3603":141,"3604":141,"3605":[233,245],"3608":141,"3609":141,"3610":141,"3611":141,"3613":143,"3615":141,"3621":143,"3623":142,"3626":142,"3627":143,"3628":142,"3634":142,"3635":142,"3636":142,"3637":142,"3638":142,"3640":[113,142],"3642":142,"3645":142,"3649":142,"3650":142,"3651":[143,144],"3656":[36,287,291,432],"3661":143,"3664":[143,233,245],"3665":143,"3667":143,"368":163,"369":418,"3691":[145,432],"3696":145,"3697":61,"370":418,"3715":145,"3718":145,"3719":145,"3725":145,"3729":145,"3733":145,"3735":145,"3737":145,"3742":145,"3744":432,"3750":245,"3754":145,"3757":146,"3765":175,"3769":[233,245],"3771":[262,263],"3784":146,"3792":127,"3829c6087dac":418,"3834":432,"3839":[233,245],"3843":[233,245],"3848":[146,432],"3853":146,"3854":245,"3856":146,"3862":[147,175],"3866":174,"3890":81,"3894":[301,432],"3896":[251,254,255,256],"3905":[87,96,174,268,289,295,350,446],"3907":174,"3908":174,"3909":162,"3917":[225,247],"3919":61,"3927":175,"3937":61,"3938":176,"3941":246,"3977":[6,91,432],"3981462903180119079":27,"39gmt":44,"3ab4f8d5512e33b1":388,"3d9f02135bf964ff0b6a917921b862c3420e48f0":74,"3rd":[56,350],"400":30,"4002":198,"400gb":277,"400gib":9,"4035":[251,254,255,256],"404":350,"4066":61,"4089":61,"4091":66,"4096":350,"4097":388,"4100":[224,246],"4109":[225,247],"4118":61,"412":81,"4123":246,"4131":61,"4136":61,"4137":403,"4140":61,"4151":61,"4154":247,"4156":61,"4162":[225,247],"4187":[262,263],"4189":[225,247],"4190":[96,268,295,301,446],"4199":[225,247],"41d7":359,"41z":27,"4201":379,"4216":[198,225,247],"423":58,"4257":247,"4285":[225,247],"4287":432,"4314":[14,103,121,271,272,275,432],"4315":[331,432],"4331":432,"4346":432,"4380":[198,225,247,257,262,263],"4383":[262,263],"4387":81,"4422":432,"443":350,"4439":263,"4466":432,"4467":432,"4469":432,"4489":66,"448944":403,"4505":432,"451":268,"452":41,"4550":432,"4551":432,"4559":432,"458":74,"45m":350,"4616":432,"4642":432,"4643":432,"4644":432,"46461":27,"466":27,"46908":418,"473":80,"4731":432,"474":80,"47481":359,"47489":359,"47513":359,"476":27,"4791":432,"482":27,"4863":27,"489":80,"4918":432,"4954":[350,432],"4959":432,"4978":432,"49ba20f5":27,"4aa62f540d81395dc7d52518ae8e8c75571c8f11":388,"4d5c6b7a":305,"4d88af31":305,"4d88af34":305,"4d88af35":305,"4d9618acd0aea6b33683766358351459":27,"4gb":340,"4ghz":340,"4mb":[251,252,253,254,255,256],"4rev1":432,"4xx":350,"500":[28,30],"5000":[81,350,370],"50000":40,"500gib":9,"503":350,"5032":432,"5034":432,"5051":350,"509":268,"5092":432,"512":[314,379],"512d":350,"5153412":368,"5161":432,"5162":432,"5173":[301,432],"5182":[262,263,432],"5183":432,"5228":[301,432],"5229":[178,185,186,187,188,301,432],"5230":[301,432],"5231":[301,432],"5232":[301,432],"5233":[301,432],"5235":432,"524":350,"5255":432,"5256":[432,442],"5257":[14,271,275,350,432,442],"5258":432,"5259":432,"5260":[301,432],"5267":[235,236,238,239,240,241,242,432],"5287":359,"529":[269,441],"5293":[235,236,238,239,240,241,242,301,432],"530":445,"5321":[350,432],"5322":[93,169,432],"5335":350,"5397":432,"53c4137":200,"5400":401,"5423":[27,278,350,432],"5429":[301,432],"5435":[301,432],"5436":432,"5437":432,"5463":[301,432],"5464":[14,271,275,327,350,432],"5465":[27,278,432],"5466":432,"5490":[178,180,181,182,183,184,185,186,187,188,301,432],"550":[268,350],"552":41,"5524":432,"5536":432,"5537":432,"5545":432,"5546":432,"5550":[262,263,432],"5571a7bc1bc865":359,"559":445,"5593":432,"562":27,"5623":388,"563":[96,268,295,446],"5689":432,"5703":432,"5789330":374,"5804":[301,428,432],"581":80,"5819":[432,442],"5842":432,"585":[269,441],"587":350,"5957":[432,442],"5995":432,"5a6":97,"5d9e4f44":66,"5edadcf":200,"5meg":443,"600":[18,30,412,446],"6000":293,"6009":432,"600gb":277,"600gib":9,"6047":[251,252,253,254,255,256,350,432],"60m":350,"60s":[251,252,253,254,255,256,350],"6101":432,"6131":[301,432],"6134":[301,432],"6154":[208,209,210,211,212,213,214,215,216,217,219,220,221,222,350,363,432,442],"616":27,"6203":[350,432],"621":27,"631":80,"6321":432,"635":366,"6350":432,"6352":432,"6376":432,"640":27,"640e232e3877":66,"6455":432,"6468":432,"64b":350,"64bit":[142,199],"6558":432,"6570":350,"6578":432,"6585":432,"6609":[301,432],"6638":432,"672":64,"676":27,"6762":388,"6764":432,"6785":432,"6797":432,"6836d0110252d08a0656c14c2d2d314124755491":74,"6851":[331,432],"6855":432,"6901":432,"6964":388,"69bdb40dac9de4d17057a5245c34544f2d6849db":388,"6aa93fd583f143dde555184d508ab0916e06b026":388,"6b98205c796c6c61":61,"700":30,"700gib":[9,277],"70gb":277,"70gib":9,"7149274646509524617":27,"715":80,"7162":432,"717":27,"7230":432,"7231":432,"7232":432,"7233":432,"7234":432,"7235":432,"7238":432,"7239":432,"7240":432,"7265":432,"7352":[301,432],"736":27,"7377":[262,263,432],"739232245980a3efe3df490841221a4b7bac4f27":388,"7395":81,"7444588115769591371":27,"750":[268,446],"7519":[251,252,253,254,255,256,350],"7529":432,"7540":432,"755":268,"7615":432,"7616":432,"7617":432,"7629":27,"763":80,"7649":27,"7685":27,"7692":432,"7694":432,"7721":27,"7725":432,"7786":305,"7804":432,"7808":[88,432],"7809":[27,88,432],"7813":27,"7888":[235,236,238,239,240,241,242,350,432],"7889":432,"789":88,"7932":432,"7953":432,"7986":432,"7b64ec321457715ee61fe238f178f5d72adaef64":74,"7bit":[27,268,418],"7c76ec2b":66,"7df9":66,"7f6f384c3f5ba99a":61,"8008":87,"8026":27,"8048":27,"8051832424702584527":27,"8070":27,"8077":174,"8078":174,"8080":[268,350,380,382,384,385,393,396,397,399,410,414,415],"80gib":9,"80k":340,"80s":441,"8107":27,"8140":27,"8144":432,"816":366,"8192":[65,284,310,350],"8210":27,"822":[34,41,97,300,322,323,432],"8246":432,"8288":432,"8297":432,"8437":432,"8438":432,"8439907626481649843":27,"8440":432,"8441":432,"8443":87,"8470":432,"8474":432,"8479002111695998134":27,"8508":432,"8514":432,"8579":[301,432],"858":27,"8580":432,"8607":432,"8620":[90,217,219,220,221,222,251,252,253,254,255,256,432],"8621":[90,217,219,220,221,222,432],"885":150,"8859":[27,56,97,219,221,222],"8878":432,"8887":[90,432],"8970":[251,252,253,254,255,256,432],"8bit":[27,138,268,350,432],"8bitmim":98,"8gb":340,"8th":97,"900":30,"9007":90,"900gib":[9,277],"9088":403,"909":[319,418],"90d":350,"90d104346ef3cba9e419461dd26045035f4cba02":74,"90m":350,"931":319,"9459":403,"9494635035963533515":27,"95349cd5d1cf21b55e6e0930b2ee5754f977ba8c":418,"9634":404,"9635":404,"9642":404,"966":27,"9701853636551497828":27,"976":27,"977":378,"993":[96,268,295,446],"995":[96,268,295,446],"999":[268,446],"9bd8":66,"\u00f8yvind":444,"\u0434\u0438\u043b\u044f\u043d":[163,190,191,192,193,196,198,199,206,216,217,219,220,221,222,223,225,228,230,231,233,245,247,251,252,253,254,255,256],"\u043f\u0430\u043b\u0430\u0443\u0437\u043e\u0432":[163,190,191,192,193,196,198,199,206,216,217,219,220,221,222,223,225,228,230,231,233,245,247,251,252,253,254,255,256],"abstract":[44,55],"boolean":[68,327,350],"break":[40,44,45,59,74,80,97,140,141,143,144,158,164,174,175,190,207,209,210,211,212,213,214,215,216,217,234,235,236,248,249,258,259,264,265,266,276,301,324,350,360],"byte":[6,46,52,56,58,59,62,74,75,80,97,100,113,142,154,156,278,350,383,388,404],"case":[0,4,5,7,11,15,25,26,33,38,41,44,45,47,48,51,52,55,56,57,58,62,68,72,74,75,80,97,98,99,104,140,141,145,152,156,200,233,236,238,239,240,241,242,245,268,270,275,279,280,283,287,289,291,298,303,305,316,318,321,329,331,332,341,344,349,350,375,387,393,407,411,418,433,443,448],"catch":[36,74,97,435],"char":[46,47,55,56,68,74,80,305],"class":[41,56,80,262,263,267,268,279,287,300,350,441,449],"const":[46,47,55,56,68,80],"default":[4,5,6,9,11,14,18,19,20,22,24,25,30,31,33,40,44,51,56,65,74,76,80,82,83,84,86,87,88,89,90,91,92,93,97,99,100,107,117,122,136,141,146,156,161,166,173,174,180,181,193,200,206,243,267,268,269,270,271,274,275,276,277,278,279,281,285,287,289,293,296,298,301,303,305,309,310,311,314,315,317,322,327,330,331,342,349,350,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,377,378,379,380,381,382,383,384,385,387,388,389,390,391,393,394,395,396,397,398,399,400,401,403,404,406,407,408,409,410,411,412,413,414,415,416,417,418,421,422,423,424,425,427,428,429,430,431,446,448],"enum":[75,80],"export":[41,65,98,131,268,293,319,432],"final":[3,6,11,15,25,41,47,51,56,58,62,75,80,104,122,145,154,158,267,268,275,301,320,329,350,441,443,449],"float":[350,369],"function":[7,11,12,18,19,36,40,44,45,47,50,52,56,58,60,68,71,75,79,80,81,87,88,89,92,93,97,98,99,100,102,133,139,206,217,219,220,221,222,227,268,285,287,291,297,301,315,350,360,443,448,449],"go\u0142\u0119biowski":206,"goto":[55,56,76],"h\u00e5vard":350,"import":[3,11,74,77,78,91,97,98,100,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,178,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,251,252,253,254,255,256,267,268,276,287,310,349,350,360,404,433,443,449],"int":[46,47,55,56,59,68,74,80,97,127,130,350],"jes\u00fa":158,"kundr\u00e1t":154,"long":[9,30,33,36,41,47,55,68,74,80,97,106,138,149,154,156,160,164,200,203,228,231,238,241,242,243,251,252,253,254,255,256,262,263,267,276,277,310,316,322,331,342,349,350,353,371,375,379,381,387,412,436,448],"new":[1,4,7,9,11,13,19,27,28,30,36,40,42,44,45,47,49,50,51,52,53,56,57,58,59,61,64,68,71,72,74,75,76,77,78,82,83,84,85,86,87,88,89,97,99,100,102,104,107,108,109,118,119,121,136,137,143,147,152,154,161,163,178,179,180,181,182,183,184,185,186,187,188,191,196,198,212,213,214,215,216,217,219,220,221,222,225,232,235,236,238,239,240,241,242,244,247,251,252,253,254,255,256,257,261,262,263,268,272,275,276,277,279,280,281,283,287,289,290,295,303,305,308,309,310,311,312,321,327,340,341,342,345,350,354,362,375,378,379,380,382,384,385,387,390,391,392,394,395,396,397,398,399,404,405,407,410,411,412,417,432,433,436,438,440,444,446,447,448,449],"null":[3,6,11,18,33,41,44,45,46,47,55,59,60,62,66,68,74,75,79,97,98,113,142,162,178,180,181,182,183,184,185,186,187,188,268,274,281,297,344,350,395],"ond\u0159ej":[174,444],"public":[41,48,56,72,88,89,92,316,350,421,422,424,425,427,429,430,431,448],"return":[5,27,41,44,45,46,47,52,55,56,59,60,61,63,68,74,75,76,79,80,88,89,92,97,98,99,109,132,133,139,140,143,161,163,164,206,215,216,217,219,220,221,222,223,226,251,252,253,254,255,256,268,275,287,289,291,297,298,350,375,377,420,432,449],"short":[7,11,44,52,57,97,100,109,126,136,145,163,272,275,277,291,340,342,346,350,353,372,448],"st\u00e9phane":263,"static":[3,36,44,68,80,93,97,98,350],"super":[35,55,58,152,267,443],"sur\u00fd":[174,444],"switch":[11,41,51,56,68,97,98,99,100,145,161,214,215,216,217,219,220,221,222,251,254,255,256,267,269,287,289,293,302,308,310,349,350,388,404,411,441,449],"true":[7,18,40,44,45,47,66,75,87,97,205,268,272,310,327,336,345,350,375,398,411],"try":[40,44,47,55,56,59,64,72,74,97,160,207,209,210,211,212,213,214,215,216,217,219,220,221,222,234,235,236,248,249,258,259,264,265,266,268,276,287,289,301,310,313,316,319,323,339,340,342,349,350,407,412,413,433,443,448],"var":[1,11,28,40,51,54,65,74,77,87,97,267,268,279,280,281,283,284,289,293,296,298,310,311,313,314,333,339,341,349,362,366,368,370,380,382,384,385,387,388,389,391,393,396,397,399,410,414,415,446,448],"void":[35,55,56,60,68,80,297],"while":[5,9,10,11,19,27,28,33,36,40,41,44,45,47,49,52,55,56,57,58,59,60,66,68,70,72,74,84,99,109,160,191,267,268,275,276,278,279,281,287,289,291,297,303,311,312,314,315,321,331,333,335,340,342,349,350,356,363,375,398,411],AFS:[41,97,99,152,274,287,350,402],AMS:[269,441,443,445],AND:[72,81],Added:[97,99,100,102,104,105,106,107,109,110,114,115,117,120,121,122,124,125,126,129,130,131,132,133,134,136,152,156,178,180,181,182,183,184,185,186,187,188,192,194,229,251,252,253,254,255,256,311,350],Adding:[1,448],Age:383,And:[0,1,9,15,48,51,71,72,74,97,267,277,335,336,342,350,448],Are:[1,448],Bos:444,Bus:[3,11],But:[9,27,30,33,47,96,97,267,268,278],CAs:268,CVS:137,DBs:281,DES:97,DNS:[40,350],DOS:99,DOs:288,DoS:137,Doing:267,ECE:351,FOR:[55,81,340],For:[5,9,11,12,15,19,30,31,33,36,40,41,46,47,48,51,52,55,56,57,66,72,74,75,76,80,81,84,88,89,92,95,96,97,160,267,268,269,272,273,274,275,276,277,279,280,281,283,284,285,287,289,291,293,295,296,298,299,301,305,308,310,313,314,315,322,331,333,334,349,350,360,370,375,394,405,411,421,422,424,425,427,429,430,431,432,443,446,448,449],GFS:11,Has:[6,52,448],IDs:[6,40,350,353],INTO:18,Its:[6,44,58,93,268,291,444],JFS:340,JWS:350,NAS:11,NIS:40,NOT:[6,18,33,44,45,55,58,69,72,79,80,87,93,97,100,179,180,181,182,183,184,185,186,187,188,275,288,301,310,344,350,362,366,370,406,411],Near:448,Not:[44,74,97,325,350,382,399],One:[6,11,49,56,287,289,310,311,331,343,344,360,374,375,432,443],PTS:[4,41,267,274,281,350,400,448],QoS:[136,350],SAS:11,SRS:[49,350],SYS:[313,432],Such:[41,275,309],THE:[44,55,80,81,340],THEN:74,THESE:268,TLS:[4,5,41,55,68,82,83,84,86,87,93,96,97,98,99,105,108,114,120,146,156,160,161,168,173,174,195,203,227,228,267,281,293,295,350,416,421,422,424,425,427,429,430,431,432,446,448],That:[40,45,46,49,51,57,277,287,289,291,293,315,322,340,350,356],The:[0,1,2,3,4,5,6,8,9,10,11,12,13,15,18,19,23,24,25,27,30,31,33,35,36,38,40,45,47,48,49,51,52,53,55,56,58,59,60,61,62,65,66,68,69,71,72,74,75,76,77,79,81,82,83,85,86,87,88,89,90,91,92,93,97,98,99,100,102,104,106,141,160,163,164,178,179,180,181,182,183,184,185,186,187,188,196,197,203,205,206,207,208,209,210,211,212,213,214,215,216,217,219,220,221,222,223,232,233,234,235,236,238,239,240,241,242,244,245,248,251,252,253,254,255,256,258,261,262,263,264,267,268,269,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,293,295,296,298,300,301,305,306,308,309,310,311,312,313,314,315,316,317,318,319,322,327,328,331,334,336,337,339,340,341,344,345,346,348,349,350,351,353,354,355,356,357,358,359,360,361,363,364,365,366,367,369,370,374,375,379,380,382,383,384,385,387,389,390,391,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,410,411,412,413,416,418,421,422,423,424,425,427,428,429,430,431,432,433,434,436,438,439,441,443,444,445,446,448,449],Their:[53,178,181,182,183,184,185,186,187,188],Then:[9,30,41,59,65,72,74,80,268,277,287,289,310,329],There:[5,33,36,40,41,44,45,47,49,58,70,71,72,75,80,81,88,89,96,97,100,267,268,274,276,277,279,281,283,287,289,290,291,293,301,315,316,325,337,340,342,350,364,369,376,379,407,440,443,444,448],These:[1,5,6,19,33,40,41,47,48,49,52,55,56,58,59,60,62,63,68,72,75,80,81,97,107,174,223,226,235,236,238,239,240,241,242,243,262,263,267,268,273,276,278,281,284,287,291,293,297,300,329,341,349,350,369,407,411,444],ToS:350,UPS:11,USE:[18,81,142,161,360],Use:[2,11,40,47,53,55,60,71,72,91,97,106,109,173,262,263,267,268,275,288,289,293,297,301,308,310,313,326,334,339,349,350,353,354,355,356,357,358,359,360,361,362,363,364,366,367,368,369,370,371,372,373,374,375,377,378,379,380,381,382,383,384,385,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,403,404,405,406,407,408,410,411,412,413,414,415,416,417,418,428,432,446,448],Used:[44,45,49,56,58,64,70,289,350,358,368,403,412,448,449],Useful:[276,356,374,404,411,412,448],Uses:[366,448],Using:[1,18,33,36,41,53,75,267,270,274,277,287,289,302,337,350,374,420,432,448],WILL:[293,350],WITH:[81,268,360],Was:97,Wes:[104,117,440,444],Will:[44,45],With:[9,11,24,30,33,41,58,80,160,161,174,251,252,253,254,255,256,266,267,270,274,305,310,314,331,350,356,370,374,375,409,448],Yes:55,__attribute__:229,_abort:74,_admin:41,_config:80,_cyrusv2_qgrp:268,_d9aa3c2dd73a9166113254d4ebe07bc8:27,_def_cyrusv2_mailer_flag:268,_defifnot:268,_end:74,_hash:80,_initi:80,_js:49,_mech:350,_min:80,_name_:55,_part:80,_registri:80,_start:74,_sync_authnam:276,_sync_host:276,_sync_password:276,_sync_port:276,_sync_repeat_interv:276,_tls_:100,_userid:80,_usermbox:80,_xxxxxx:74,a001:287,a002:287,a01:[82,83,84,86,87],a0e716087dac:418,a4bf5bbb9feaa271:27,a5677cfa1f5f7b627763652f4bb9b99f5970748c:74,a665:66,a777:275,a8486f5db6ec207de9b9f069850546e:27,aaa:80,abandon:100,abbrevi:375,abc:[52,268],abil:[7,11,19,35,38,40,41,93,97,98,99,142,166,193,262,263,286,287,289,293,315,339,350],abl:[3,11,18,19,33,36,40,44,47,52,74,80,82,83,84,86,87,88,110,132,262,263,267,268,275,287,289,305,310,331,350,387],abnf:432,abnorm:329,abomin:44,abort:[44,45,74,97,98,108,223,287,329,350,407,411,412],about:[0,1,3,5,6,7,11,15,36,40,41,46,48,49,51,61,64,68,70,71,72,79,80,97,98,108,138,140,156,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,209,210,211,212,213,214,215,216,217,219,220,221,222,233,245,251,252,253,254,255,256,268,277,278,283,287,289,290,293,298,316,322,340,343,344,350,356,364,371,375,379,404,407,434,436,448,450],abov:[15,18,40,41,47,51,56,58,74,75,77,81,84,87,92,156,160,161,215,216,217,219,220,221,222,268,277,279,280,281,283,287,289,293,301,305,308,340,349,360,374,375,418,446,449],absenc:[267,440],absolut:[9,28,30,55,72,74,88,100,160,277,281,285,298,350],abus:41,acap:[68,98,287,291,432],acapmbox:98,acapsiev:98,accent:56,accept:[11,44,45,66,74,97,98,99,100,122,133,134,142,161,163,178,180,181,182,183,184,185,186,187,188,203,209,210,211,212,213,214,215,216,217,219,220,221,222,225,235,236,238,239,240,241,242,247,251,252,253,254,255,256,261,262,263,267,268,287,291,293,301,310,322,350,354,365,375,377,380,382,384,385,393,394,395,396,397,399,402,410,411,415,432,440,443,446],access:[3,4,5,7,9,11,13,22,25,27,28,30,35,36,38,40,44,45,46,47,51,53,55,58,81,87,91,93,96,97,98,102,110,128,160,178,180,181,182,183,184,185,186,187,188,203,208,209,210,211,212,213,214,215,216,217,223,231,235,236,243,244,249,259,265,268,269,270,277,281,287,293,295,296,301,311,313,314,315,317,330,337,340,341,345,350,366,367,375,379,432,436,438,441,443,446,448],accid:413,accident:[24,25,331,340,407,418],accommod:[251,252,253,254,255,256,267,287],accompani:[15,280],accomplish:[41,152,269,279,287,293,340,344,441],accord:[9,30,74,91,219,220,221,222,276,277,279,284,289,337,350,356,364,374,407,440],accordingli:[74,100,293,350],account:[10,11,18,19,27,35,40,41,51,61,64,66,71,97,100,166,193,247,268,273,274,276,293,301,350,387,412,413,446,448],accountid:[27,66],accur:[11,47,160],achaemenid:51,achiev:[11,28,267,294,310,340,350,411],aci:[14,270,271,272,275,448],ack:342,acknowledg:[58,81],acl:[6,27,36,47,49,58,61,74,76,82,83,84,86,87,88,91,97,98,99,100,103,108,121,125,140,154,161,164,166,178,180,181,182,183,184,185,186,187,188,193,199,219,220,221,222,244,267,274,275,287,291,293,305,316,327,350,372,375,377,379,388,392,404,407,432,448],acl_admin_implies_writ:350,aclright:27,aclsubject:27,acm:350,acquir:[88,97,122],across:[8,11,12,13,36,41,44,51,55,57,59,74,98,100,106,152,164,199,205,267,273,276,286,287,289,291,315,340,350,443],act:[41,44,93,160,274,287,310,350,373,393,443],actdiag:52,action:[19,27,33,41,44,45,56,58,75,76,81,96,97,99,160,226,251,252,253,254,255,256,262,263,267,275,278,287,301,310,315,350,366,375,390,395,407,411,412,448],activ:[6,11,18,33,41,44,56,60,61,74,79,81,86,99,175,179,180,181,182,183,184,185,186,187,188,199,276,287,289,297,301,310,320,350,387,392,411,423,428,436],actual:[3,5,7,9,11,15,19,26,28,30,33,41,44,47,56,58,62,72,74,75,80,97,106,141,156,158,160,178,182,183,184,185,186,187,188,215,216,217,219,220,221,222,268,275,276,279,281,285,287,288,289,291,295,301,315,331,336,340,350,360,373,375,388,403,411,421,424,425,426,427,429,430,433,446],adam:206,adapt:[3,11,96],add:[18,40,44,45,48,49,51,57,58,60,65,66,68,72,74,79,80,87,88,96,97,99,100,105,108,131,138,140,157,160,161,191,212,213,214,215,216,217,219,220,221,222,229,235,236,238,239,240,241,242,251,252,253,254,255,256,262,263,276,278,280,283,285,287,289,290,293,295,297,301,303,305,308,310,315,319,337,350,357,372,379,404,432,443,446,448,449],added:[6,9,27,30,44,48,51,59,68,74,76,80,88,93,96,97,98,99,108,119,137,147,154,155,160,178,179,180,181,182,183,184,185,186,187,188,268,277,304,310,311,318,336,339,350,370,375,387,404,411,412,442,443],addflag:[75,267],adding:[18,19,40,53,65,68,78,80,104,132,152,160,174,276,277,284,289,301,310,337,350,356,367,404],addit:[3,5,6,7,9,11,12,19,31,36,41,52,53,55,56,57,59,74,75,81,90,96,98,109,160,178,179,180,181,182,183,184,185,186,187,188,194,267,268,273,275,276,278,279,280,281,282,284,287,291,293,300,307,308,337,339,340,344,350,375,387,395,404,407,411,432,441,443,448,449],addition:[41,81,99,231,243,275,283,287,289,320,350],addr:75,address:[3,4,5,6,11,18,19,22,33,36,41,53,56,59,69,71,72,75,93,97,98,99,100,102,160,245,251,252,253,254,255,256,268,275,291,293,301,316,318,322,327,336,340,349,350,366,375,377,394,407,412,432,448],addressbook:[22,93,125,127,130,132,208,244,268,350],addressbookprefix:350,addseen:229,addsub:108,addus:51,adher:[336,344],adjac:[56,74,350],adjust:[11,41,88,281,305,310,342,350,404,446],adkin:[98,343],adkinss:[98,343],admin:[7,33,40,41,87,88,93,98,99,100,104,110,133,160,161,190,193,194,200,216,217,219,220,221,222,236,238,239,240,241,242,262,263,267,268,272,273,276,285,289,301,310,315,316,327,350,375,407,415,448],administ:[33,35,40,41,272,273,275,375],administr:[3,7,9,11,13,15,24,25,34,36,49,81,82,83,84,86,87,93,96,97,100,160,166,174,180,181,193,208,231,243,267,271,272,275,279,285,286,287,293,294,298,302,315,322,327,331,340,350,356,357,358,359,360,361,363,374,375,436,437,443,448],admiss:350,admit:275,adopt:[19,445],adr:[251,252,253,254,255,256],adrian:223,adv:305,advanc:[9,30,277,308,441],advantag:[6,7,10,13,96,98,99,262,263,285,287,350,411,443],advers:74,advertis:[88,93,97,156,262,263,267,287,350,432],advis:[41,52,404],aea7:27,aege:141,aes256:[82,83,84,86,87],af11:350,af12:350,af13:350,af21:350,af22:350,af23:350,af31:350,af32:350,af33:350,af41:350,af42:350,af43:350,afek:444,affect:[19,33,46,49,53,72,74,97,98,152,191,200,219,220,221,222,251,252,253,254,255,256,267,276,310,318,325,338,340,342,348,350,357,374,404,411],aforement:[7,8,11,36,160],afs:[97,402],afskrb:350,afspt:[100,350],afspts_localrealm:350,afspts_mycel:350,after:[3,8,9,11,15,19,24,26,30,33,41,44,45,47,49,55,56,57,60,66,68,72,74,77,80,96,97,105,107,108,109,117,139,151,152,154,160,162,168,176,195,225,226,230,245,247,251,253,254,255,256,262,263,267,268,275,276,277,287,288,289,291,293,297,301,305,308,309,314,327,330,331,340,349,350,356,357,358,370,375,398,404,411,412,421,422,424,425,427,429,430,431,441,445],afterward:[44,45],again:[11,36,41,44,45,47,48,58,61,72,74,79,87,97,98,99,100,104,141,145,158,178,179,180,181,182,183,184,185,186,187,188,197,199,219,220,221,222,233,238,240,241,242,245,267,268,276,280,283,284,286,290,310,345,350,367,405,411,443,446],against:[5,11,41,52,56,64,70,72,74,76,82,83,84,86,87,97,115,139,160,174,227,245,246,268,278,287,291,300,301,321,331,343,350],age:[279,350,369,383,441],agent:[3,41,76,128,268,287,315,336,443],agentx:98,aggreg:[4,11,13,19,98,99,287,289,291,315,393,436,438,446,447,448],aggress:161,agnost:[11,44,45,66,90],ago:[154,305,331],agre:[55,268],agreement:322,ahead:[11,47,72,79,291,350],ahh:74,ahv:267,aid:[4,56,96,98,108,289,355,363,391,398],aim:[55,66,90,160],aix:340,aka:[160,276],akio:[139,140,223,228],akschu:227,ala:74,alain:98,alarm:[27,178,179,180,181,182,183,184,185,186,187,188,189,278,350],alarmrecipi:27,alarmtim:27,albert:100,alec:140,alert:[41,97,100,327,350,375,382,399],alexei:[440,444],alg:350,algorithm:[56,74,97,104,196,232,244,282,350],alia:[5,6,219,221,222,351,375],alias:[5,6,40,146,268,350,375],align:[55,58,75,97,104,122],alik:11,aliv:[6,74,129,342,350,432,435],all:[0,3,5,6,7,8,9,11,12,13,18,19,24,25,27,30,31,33,35,36,38,40,41,44,45,46,47,49,51,52,55,56,57,58,61,62,68,71,72,74,75,80,81,82,83,84,86,87,88,91,93,96,97,99,100,102,108,109,131,136,137,138,142,152,154,160,173,174,191,200,205,206,215,216,217,219,220,221,222,235,236,238,239,240,241,242,251,252,253,254,255,256,261,262,263,267,268,271,273,274,275,276,277,278,279,283,287,289,291,293,301,304,305,309,310,311,312,314,315,316,319,321,322,327,328,330,331,336,339,340,341,343,345,349,350,356,357,358,363,364,366,367,369,370,373,374,375,379,380,382,383,387,389,390,394,396,398,399,403,404,406,407,411,412,418,420,421,422,423,424,425,427,428,429,430,431,433,434,435,440,441,442,443,446,448,449],allberi:[98,375],alldai:27,alloc:[11,44,56,80,98,268,446,448],allof:100,allow:[3,5,7,8,9,11,13,15,18,19,24,25,27,30,33,34,35,36,40,41,44,45,46,47,49,55,56,58,60,62,68,69,74,75,88,89,90,91,92,93,97,98,99,100,102,104,105,106,108,109,110,114,122,131,133,139,141,146,152,156,157,158,161,172,174,175,178,180,181,182,183,184,185,186,187,188,196,198,205,216,217,219,220,221,222,228,229,231,232,236,238,239,240,241,242,243,244,262,263,267,268,269,272,274,275,276,278,279,283,284,285,287,288,289,291,293,297,298,301,310,313,314,315,318,321,322,325,327,330,331,334,342,349,350,357,360,367,369,375,387,394,411,415,421,422,423,424,425,426,427,428,429,430,431,433,440,441,443,446],allowallsubscrib:[7,275,289,350],allowanonymouslogin:[41,350],allowapop:[338,350],allowdelet:[216,217,219,220,221,222,350],allownewnew:[293,350,394],allowplaintext:[41,122,268,350],allowsetacl:350,allowusermov:[74,100,350],allprop:131,almost:[48,99,267,268,308,340,350,404],alon:[7,11,120,244,277,280,340,446],along:[41,66,71,74,133,267,269,275,287,349,441],alongsid:[6,276],alpha0:[248,258,260,264,266,436,448],alpha:72,alphabet:[12,55,279,287,349],alphanumer:[18,279,283,291,350],alpin:106,alreadi:[5,11,12,18,19,26,38,41,44,45,46,47,49,51,53,57,59,71,74,80,88,90,93,96,97,99,160,193,229,251,252,253,254,255,256,267,268,276,287,289,298,350,356,357,366,375,407,411,417,423,443,446],also:[3,5,6,7,9,11,15,18,19,25,27,28,30,31,33,36,40,41,44,45,46,48,49,50,51,52,53,55,56,58,59,65,69,71,72,74,80,87,88,89,93,97,98,99,100,102,137,145,152,154,158,160,163,164,196,229,232,244,251,252,253,254,255,256,262,263,267,268,273,274,275,276,277,278,279,282,283,284,287,289,291,293,297,299,301,310,313,314,315,318,331,332,340,341,344,433,440,441,443,444,445,446,448,449],alt:[293,350,392,449],alt_config:[44,45,74,420],altconfig:[362,408],alter:[18,74,88,310,315,336,349,369,373,407],altern:[9,11,56,58,66,74,80,88,90,98,137,267,268,270,287,289,290,293,296,302,319,331,338,339,350,374,376,386,387,412,420,448,449],although:[5,11,287,350,377],altnamespac:[41,87,98,99,100,155,178,182,183,184,185,186,187,188,247,267,274,301,348,350,417,433],altogeth:19,altprefix:350,alwai:[11,33,41,44,45,47,51,55,56,57,58,59,69,74,80,97,99,100,108,109,130,141,153,154,161,226,229,236,238,239,240,241,242,251,252,253,254,255,256,267,268,273,282,289,298,310,315,321,349,350,405,412],alwaystru:268,amalgam:72,amavisd:27,ambigu:275,amend:18,american:353,amo:[98,99],among:[3,9,30,97,160,287,354,391],amongst:445,amount:[9,11,18,24,25,27,28,30,34,58,75,97,98,100,102,106,122,160,235,236,238,239,240,241,242,267,277,287,290,298,316,337,342,350,411,442,448],amssync:97,analysi:286,anatoli:[227,228,229],ancestor:[235,236,238,239,240,241,242],ancient:[42,72,269,441,448],andi:[228,229,243,351],andjelkov:98,andrew:[68,81,97,141,269,287,289,305,443,445],andrewmailsystem:441,andrewproject:441,andrzej:268,anew:404,angular:350,ani:[3,5,7,11,12,15,25,27,33,35,40,41,44,45,46,47,48,52,53,55,56,57,58,59,60,61,62,66,68,72,74,76,80,81,82,83,84,86,87,88,93,95,96,97,98,99,100,102,109,114,166,178,180,181,182,183,184,185,186,187,188,193,219,220,221,222,235,236,238,239,240,241,242,244,251,252,253,254,255,256,268,272,273,274,277,278,279,280,281,283,284,287,288,289,291,295,296,297,299,301,305,308,310,315,320,322,329,330,331,334,339,344,345,346,349,350,354,356,358,360,362,366,367,369,370,372,373,374,375,377,379,380,382,387,388,389,394,396,399,403,404,405,406,407,411,412,414,418,420,421,422,424,425,427,429,430,431,433,436,444,446,447,448],ann:276,annatotor:350,annoi:[11,97,98,382,399],annot:[4,13,31,41,44,48,57,61,72,74,80,88,99,100,102,104,108,110,117,122,128,133,141,142,150,152,155,161,162,175,196,209,210,211,212,213,214,215,216,217,219,220,221,222,231,236,238,239,240,241,242,243,262,263,267,272,275,276,279,281,283,284,293,300,316,350,363,369,372,375,403,411,432,442,448],annotatemor:[82,83,84,86,87,99,100,160,175],annotatemsg:41,annotation_allow_undefin:[160,350],annotation_callout:[160,350],annotation_callout_disable_append:350,annotation_db:[44,45,160,350],annotation_db_path:[281,350],annotation_definit:[110,236,238,239,240,241,242,350],annotation_enable_legacy_command:[214,215,216,217,219,220,221,222,350],annotations_definit:350,announc:[33,48,72,175,432,434],annoy:56,anonym:[61,98,125,267,272,273,293,301,350,377,379,432,448],anonymis:74,anoth:[0,5,11,33,36,38,40,47,55,56,58,74,80,87,99,160,251,253,254,255,256,262,263,267,268,278,287,301,310,316,322,340,343,350,353,375,398,411,448],ansi:97,answer:[7,58,61,268,346,350,388,444],anthoni:[193,206],anticipatori:11,antiqu:55,antispam:436,antiviru:[178,179,180,181,182,183,184,185,186,187,188,374,436],anybodi:[58,72,97],anymor:[289,350],anyof:100,anyon:[5,19,35,88,97,138,289,293,331,350,392,440,443,444,448],anyoneuseracl:350,anysievefold:[166,193,350],anyth:[11,47,48,51,70,72,74,97,197,233,245,267,272,308,349,369,370,375,382,399],anywai:[44,74,97,276,350,412],anywher:[44,45,58,350],apach:93,apart:109,api:[1,6,55,58,60,62,66,74,79,90,98,125,136,140,191,199,321,350,436,448],apop:[338,350],app:55,appar:[56,191,287,382,399],appear:[9,11,22,30,33,48,56,58,66,75,76,91,97,99,134,268,275,276,277,287,289,293,310,316,320,325,336,344,349,350,374,407,412,418,448],append:[3,24,33,41,51,57,58,74,78,88,89,92,97,98,99,100,108,117,118,138,145,147,156,157,204,275,287,310,327,350,372,374,375,380,388,404,407,411],append_addseen:97,append_check:336,appendd:58,appendic:286,appendlimit:432,appl:[27,88,178,180,181,182,183,184,185,186,187,188,251,252,253,254,255,256,270,350,448],applepushservic:[278,350],appli:[11,19,27,28,33,35,41,50,51,52,53,55,59,66,72,74,109,174,251,252,253,254,255,256,274,275,277,287,299,301,305,308,309,310,311,315,322,331,335,350,356,357,369,407,449],applianc:11,applic:[3,5,8,27,36,55,60,66,80,97,98,100,160,269,270,289,294,297,304,310,331,338,343,344,358,432,433,436,443,448,449],appoint:11,apprais:[99,287],appreci:[11,141,220,221,222,276,433,444],approach:[11,55,59,268,287,310,340,449],appropri:[9,11,18,36,41,47,48,52,55,58,72,74,80,97,106,131,268,276,278,287,310,321,330,344,350,379,381,412,417,440,446],approv:[71,287,440],approxim:[41,74,356,411],april:353,aps_top:350,aps_topic_caldav:350,aps_topic_carddav:350,apsaccountid:27,apsdevicetoken:27,apssubtop:27,apsvers:27,apt:[49,51,80,83,87,267,268],aptli:311,arbit:36,arbitrari:[41,44,56,172,200,216,217,219,220,221,222,287,310],arbitrarili:97,arbitron:[52,58,97,99,100,114,352,419,448],arbitronsort:[352,448],architect:340,architectur:[7,36,109,267,286,302,350,432,436,437,448],archiv:[11,13,24,27,28,52,99,178,179,180,181,182,183,184,185,186,187,188,206,228,262,263,270,276,293,301,307,314,327,340,350,353,358,369,370,373,389,403,404,412,434,442,448],archive_:[178,179,180,181,182,183,184,185,186,187,188],archive_aft:[15,350],archive_dai:[15,350],archive_en:[15,280,350,412],archive_keepflag:[15,350],archive_maxs:[15,262,263,350],archivecach:[279,283,350],archivepartit:[15,194,227,279,280,350,369,370],area:[11,41,53,74,75,97,350],aren:[47,56,58,74,98,154,267,268,287,301,334],arg1:55,arg2:55,arg3:55,arg4:55,arg:[79,80,97,334],arguabl:[44,272],argument:[11,41,44,48,49,52,55,68,72,74,75,80,97,106,147,157,160,166,173,175,193,197,199,203,219,220,221,222,225,233,235,236,238,239,240,241,242,245,247,251,252,253,254,255,256,261,262,263,267,276,287,290,298,310,333,334,342,344,349,350,373,398,403,404,407,411,412,448],argv:74,aris:[11,24,81],around:[11,44,51,55,58,71,72,74,80,97,275,276,301,334,340,342,349,375,379,404,436],arpa:432,arrai:[11,27,28,56,68,75,267,350],arrang:[80,268,276],arrayu64:200,arriv:[19,25,74,178,179,180,181,182,183,184,185,186,187,188,290,350,357,379],arround:97,arrow:423,articl:[6,11,97,100,331,350,378,394,432],articul:11,artifact:[49,51],artifici:97,ascii:[27,33,41,56,97,350,357,377,418,432],asid:[11,33,35,160,331,449],ask:[58,61,97,268,315,339,350,360,421,422,424,425,427,429,430,431,436,437,448],asn1:6,aspect:[5,7,12,41,279,287,434],ass:340,assert:[44,45,59,80,100,162,176,206,243,246],asset:[11,90],assign:[5,11,19,96,192,275,276,298,350,357,375],assist:[58,331],associ:[5,6,9,11,19,30,40,41,58,60,133,160,274,277,284,287,289,293,297,327,350,357,358,375,449],associateddomain:350,assort:[99,100],assum:[15,18,19,33,40,44,48,49,51,53,56,70,72,74,90,93,100,163,223,262,263,267,268,276,278,285,287,293,298,301,305,331,349,350,360,374,377,404,417,421,422,424,425,427,429,430,431],assumpt:97,assur:[0,26,80],astr:68,asynchron:[64,349],atim:319,atom:[11,44,68,78,97,100,131,155,199,279,432],attach:[11,20,27,58,72,74,88,142,199,223,291,301,350,354,380,382,384,385,393,394,396,397,399,407,410,411,412,415,432],attack:[41,99],attempt:[5,26,36,41,44,45,47,49,55,58,59,60,96,97,98,100,155,191,203,275,276,287,289,297,301,315,322,329,350,362,366,377,404,411,412,421,422,424,425,427,428,429,430,431,441],attend:11,attende:[88,448],attendeeemail:27,attendeenam:27,attendeestatu:27,attent:[96,267,449],attract:444,attrib:350,attribut:[5,22,35,44,88,161,208,209,210,211,212,213,214,215,216,217,219,220,221,222,278,350,375],auction:156,audio:443,audit:[99,411,420],auditlog:[142,147,199,350],aug:[374,390],augment:[41,274,443],australia:27,auth:[6,18,41,66,82,83,84,86,87,97,98,99,107,108,130,168,195,205,230,231,268,274,289,291,310,350,375,377,378,384,385,397,432,446],auth_:[41,274],auth_krb_pt:[97,350],auth_mech:[350,402],auth_newst:97,auth_pt:[149,164,200],auth_setid:97,auth_stat:61,auth_unix:[97,350],auth_xxx:97,authent:[3,4,6,7,36,53,61,63,66,68,70,76,82,83,84,86,87,88,89,91,92,97,98,100,105,112,117,120,125,129,140,156,158,160,173,192,200,219,226,231,243,251,252,253,254,255,256,272,274,276,285,289,293,301,310,313,315,327,337,338,350,354,366,378,380,382,392,393,394,396,399,407,415,421,422,423,424,425,426,427,428,429,430,431,432,436,438,444,447,448],authenticata:192,authid:375,authnam:[289,378,421,422,423,424,425,427,428,429,430,431],author:[3,4,6,33,52,80,81,88,97,99,130,154,156,160,228,268,275,287,293,296,301,345,350,353,366,377,400,402,415,421,422,424,425,427,429,430,431,432,436,447,448],authorit:[11,40,287,289,291,360],authstat:46,authz:375,authzid:375,auto:[88,98,107,108,132,344],autoconf:[12,49,97,99,100,162,267],autocr:[49,51,172,350,442,448],autocreate_:160,autocreate_acl:[219,220,221,222,350],autocreate_inbox_fold:[19,160,219,220,221,222,350],autocreate_post:[19,160,298,350],autocreate_quota:[19,160,171,262,263,298,350],autocreate_quota_messag:[19,160,171,298,350],autocreate_siev:174,autocreate_sieve_compiled_script:[160,350],autocreate_sieve_compiledscript:[19,350],autocreate_sieve_fold:[19,160,350],autocreate_sieve_script:[19,160,350],autocreate_sieve_script_compil:[19,160,350],autocreate_subscribe_fold:[19,160,350],autocreate_subscribe_sharedfold:[19,160,350],autocreate_subscribe_sharedfolders_al:[19,160,350],autocreate_us:[19,160,350],autocreateinboxfold:[19,160,350],autocreatequota:[97,160,262,263,350],autocreatequotamsg:350,autoexpung:350,autof:340,autolearn:27,autologout:350,autom:[11,28,98,310,403,448],automak:[12,49,80,100,140,267],automat:[6,9,11,13,20,24,30,36,41,44,50,68,75,80,87,88,89,92,93,95,97,98,99,105,136,160,178,185,186,187,188,267,268,275,276,277,281,288,289,293,299,301,312,314,329,341,343,344,349,350,356,358,374,375,379,432,448],automount:340,autonom:331,autoreconf:[48,49,51,72,164,199,227],autorepeat:413,autorepli:301,autorespond:344,autoselect:393,autosiev:442,autosievefold:[160,350],autosubscribe_all_sharedfold:[160,350],autosubscribeinboxfold:[160,350],autosubscribesharedfold:[160,350],autotool:267,autovivif:276,auxprop:[87,268,350],avail:[3,4,5,7,15,19,24,25,35,36,41,49,52,56,59,72,74,80,81,87,88,89,91,92,96,97,99,109,147,160,178,180,181,182,183,184,185,186,187,188,189,223,226,243,273,274,275,276,286,287,289,291,305,309,312,314,315,316,331,338,349,350,356,362,366,368,370,375,404,411,412,417,418,423,432,443,446,448],available_selection_modes_on_backend:9,available_selection_modes_on_frontend:9,availmech:68,avatar:[251,252,253,254,255,256],avenu:[11,81],averag:[349,411],avoid:[26,33,44,46,47,55,58,59,74,75,97,99,100,107,108,109,138,141,145,153,161,173,262,263,268,315,338,350,370,407,412],awai:[80,97,98,340,343,375],await:[23,26],awaken:226,awar:[3,33,36,40,41,268,278],awesom:98,awri:97,ayland:140,b8b3:66,babysit:349,bacchella:[164,203],back:[7,11,14,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,34,35,36,37,38,39,41,44,45,47,53,55,58,59,61,64,72,74,96,147,152,157,192,267,271,276,279,281,285,287,294,298,301,305,310,314,315,339,340,350,357,409],backend1:[9,36,289],backend2:[9,36],backend3:9,backend:[3,4,6,7,11,12,41,49,61,62,80,87,88,90,98,99,100,102,107,114,116,120,132,133,137,138,140,141,146,147,150,151,154,162,164,167,168,174,175,176,178,180,181,182,183,184,185,186,187,188,194,195,197,198,212,213,214,215,216,217,219,220,221,222,225,227,230,233,238,241,242,245,247,257,262,263,267,274,288,290,298,310,314,315,316,325,337,340,345,350,357,360,362,366,379,402,412,446,448],backend_timeout:79,backend_vers:[198,225,247,257],background:[58,66,96,349,375,387,398,411,412],backlog:[74,387],backoff:[251,252,253,254,255,256,350],backport:[49,140,141,147,175,203,442],backscatt:[138,350],backslash:[106,305,350,375],backtrac:[329,433],backup1:[64,339],backup2:[64,339],backup:[1,4,11,24,25,41,51,58,73,97,99,160,178,180,181,182,183,184,185,186,187,188,192,193,194,200,235,236,238,239,240,241,242,270,279,281,287,288,310,315,331,339,350,354,355,356,358,364,390,404,407,436,442,447,448],backup_compact_maxs:[262,263,276,350,356],backup_compact_mins:[262,263,276,350,356],backup_compact_work_threshold:[276,350,356],backup_data_path:74,backup_db:[74,276,350,356,364,407],backup_db_path:[74,276,281,350,356,364,407],backup_filenam:74,backup_index_abort:74,backup_index_end:74,backup_index_start:74,backup_keep_previ:[350,356],backup_max_chunk_dur:74,backup_max_chunk_s:74,backup_min_chunk_dur:74,backup_min_chunk_s:74,backup_retent:350,backup_retention_dai:[74,276,350,356],backup_staging_path:[74,276,350],backup_sync:74,backup_sync_authnam:74,backup_sync_host:74,backup_sync_password:74,backup_sync_port:74,backup_sync_repeat_interv:74,backup_sync_shutdown_fil:74,backupd:[276,352,448],backuppartit:[74,276,350,354],backward:[15,19,72,74,141,152,235,236,238,239,240,241,242,267,275,285,298,350,385,397,432,443],bad:[44,45,46,57,58,68,85,97,117,141,156,161,163,164,193,223,227,228,340,360,443,444],badlogin:366,badurl:143,badus:366,bail:[74,122,161,251,253,254,255,256,413],balanc:[7,9,11,30,36,277,411],balden:97,band:[287,340],bandaid:158,bandwidth:[11,58,310,315],bank:[154,374,444],banner:[80,106,117,152,164,350],bar:[40,44,55,72,74,287,289,388,411,449],bare:[316,448],base64:[51,56,291,350],base:[5,11,13,15,18,36,40,47,48,49,51,56,58,61,62,65,66,68,72,74,75,76,80,86,87,90,91,93,97,100,102,104,106,110,117,125,131,132,136,152,162,192,229,235,236,238,239,240,241,242,251,252,253,254,255,256,267,268,269,276,277,278,279,281,287,296,298,301,305,314,318,327,334,346,350,356,361,379,383,386,387,391,398,405,418,432,441,443,445],basedir:51,bash:[80,168,195,227,267,268,311,313,446],bashrc:268,basi:[5,15,36,41,44,45,62,104,117,160,310,312,318,350,363,411,446],basic:[40,44,45,47,48,49,51,52,56,58,66,71,75,93,94,154,178,179,180,181,182,183,184,185,186,187,188,268,293,374,376,432,442,446,448],bastion01:418,batch:[44,66,310,350,418],batten:[147,175],batteri:[11,314],bba47b13e4839f49ab1c8047ee7b4fdb:27,bboard:441,bc_action_emit:75,bc_action_gener:75,bc_emit:75,bc_eval:75,bc_gener:75,bc_stringlist_gener:75,bc_test_gener:75,bcc:[58,305,350,418],bce8:359,bcederli:27,bcopi:97,bcyru:289,bdb:[99,122,156],bdystr:418,be1:30,be2:30,be3:30,beamnet:110,bear:[11,272,304],bearer:[205,251,252,253,254,255,256,350],beast:345,becam:441,becaus:[3,6,7,11,18,19,28,33,40,41,44,45,46,47,48,49,57,58,70,72,74,80,97,160,268,275,287,288,289,305,308,321,333,340,343,344,350,374,377,379,443,444],becom:[3,5,11,19,24,25,40,44,45,51,66,74,160,276,277,287,289,290,291,303,305,321,331,350,356,443],beef:97,been:[0,5,6,9,11,19,25,27,30,33,44,45,47,49,50,55,56,58,60,61,71,72,74,75,79,80,91,95,96,97,98,99,100,102,142,154,156,158,160,162,174,176,178,181,182,183,184,185,186,187,188,196,197,203,206,209,210,211,212,213,214,215,216,217,219,220,221,222,223,232,233,236,238,239,240,241,242,244,245,251,252,253,254,255,256,262,263,267,269,275,276,285,287,289,290,291,293,297,304,305,308,309,310,315,331,334,340,349,350,356,363,369,370,374,375,387,390,398,404,407,411,418,436,440,441,443],beer:11,befor:[7,41,44,45,47,48,49,53,55,56,58,59,72,74,77,78,80,97,99,100,108,109,141,146,160,163,164,174,223,236,238,239,240,241,242,267,268,276,287,289,291,293,310,319,334,341,342,349,350,354,360,370,375,379,380,382,384,385,387,394,395,396,397,398,399,403,407,410,411,412,432,446,449],begin:[44,58,68,75,82,83,84,86,87,97,267,289,291,315,349,350,380,404,407,411,440,441],behalf:[395,443],behav:[44,98,160,275,289,315,369],behavior:[25,55,69,88,97,270,278,282,289,331,349,350,448],behaviour:[31,41,49,80,152,161,191,201,219,220,221,222,235,236,238,239,240,241,242,251,252,253,254,255,256,261,262,263,268,276,283,289,350,356,370],behind:[9,30,61,75,102,152,175,226,251,252,253,254,255,256,277,289,310,340,350,432],beholden:74,being:[7,9,11,18,19,24,25,26,27,30,33,35,41,44,46,56,58,59,69,74,75,78,80,84,93,97,98,99,105,109,122,133,154,158,160,178,181,182,183,184,185,186,187,188,191,195,219,220,221,222,251,252,253,254,255,256,267,268,269,274,275,276,277,286,287,289,291,293,305,310,311,314,316,331,339,343,350,356,367,375,387,407,411,432,441,448],belief:[3,11],believ:[11,56,80,160,310,343],belong:[40,55,74,201,268,350,356,369,404],below:[18,27,41,45,47,55,57,58,68,74,84,87,88,93,96,156,251,252,253,254,255,256,267,268,274,288,290,293,300,305,308,310,311,313,335,349,350,356,357,364,374,383,398,407,411,432,434],benchmark:287,benefit:[15,80,214,215,216,217,219,220,221,222,279,280,315,337,350],benn:[440,444],berdmann:324,berkelei:[44,45,98,99,100,113,116,145,178,179,180,181,182,183,184,185,186,187,188,267,268,343,362],berkeley_caches:100,berkeley_hash:[100,114],berkeley_hash_nosync:[100,114],berkeley_locks_max:100,berkeley_txns_max:100,berklei:[99,100,343],bernard:[150,164,203],bernhard:324,bernstein:[189,444],best:[25,40,52,71,74,84,215,216,217,219,220,221,222,267,268,269,287,315,320,333,350,412,433,441],beta10:[87,123],beta11:123,beta1:[123,127,177,237,250,260],beta2:[52,81,123,128,177,237,250,260,266,436,446],beta3:[123,129,177,218,237,250],beta4:[123,130,177,218],beta5:[123,131,177],beta6:[123,132,177],beta7:[123,133],beta8:[123,134],beta9:[87,123],beta:[72,97,160,220,221,222,380],bethani:276,better:[9,11,18,26,30,44,59,74,96,97,98,99,100,102,114,117,121,129,130,133,136,139,145,150,160,163,171,175,196,232,244,262,263,267,276,287,289,349,350,412,440,442,443,445],betti:374,bettysu:370,between:[3,5,9,11,15,25,26,30,36,38,41,44,45,48,58,69,72,74,77,79,93,96,97,99,100,107,108,132,133,150,156,167,174,175,189,194,207,209,210,211,212,213,214,215,216,217,224,227,229,234,235,236,246,248,249,258,259,264,265,266,268,269,271,274,276,277,280,283,287,291,298,305,310,314,315,325,340,342,349,350,354,361,362,369,412,432,443,446,448],bewar:[44,45],beyond:[7,9,11,30,40,94,277,287,293,340,350,441],bidirect:[56,74],big:[74,138,139,158,191,199,217,219,220,221,222,223,276,289],bigbuff:297,bigdisk:315,bigger:[0,287],biggest:[9,30,277],bill:35,bin:[49,51,61,65,80,87,97,154,191,210,211,212,213,214,227,267,268,289,310,311,321,324,350,356,358,360,362,375,377,379,381,411,412,446],binari:[2,44,49,51,58,72,81,82,83,84,86,87,97,99,100,117,136,145,160,178,179,180,181,182,183,184,185,186,187,188,191,215,216,217,219,220,221,222,225,247,287,293,305,309,317,350,385,397,432,436,446,448],bind:[5,88,219,220,221,222,340,349,350,387,432],bindir:[178,179,180,181,182,183,184,185,186,187,188],binhex:80,binsymlink:[51,268],bird:315,birger:98,bison:[49,97,141,267],bit32:58,bit:[11,44,47,49,56,58,62,64,74,80,82,83,84,86,87,97,99,102,104,107,109,120,122,143,144,158,160,191,223,229,268,287,291,316,319,350,377,379,448],bitmask:[6,58,68],bitvector:80,bitwis:55,blah:350,blank:[44,72,349,350,351],bleed:[207,209,210,211,212,213,214,215,216,217,234,235,236,248,249,258,259,264,265,266],blob:[90,226,235,236,238,239,240,241,242,251,252,253,254,255,256,268,291,350],blobid:[251,252,253,254,255,256,350],block:[11,47,55,59,74,75,80,105,160,219,220,221,222,251,253,254,255,256,276,305,349,356,368,411,412,440],blockdiag:52,blocker:440,blow:286,blurdybloop:350,bmp:56,board:[13,19,350,439,443,448],bob:[91,298],bodi:[46,55,56,58,88,97,100,102,130,178,183,184,185,186,187,188,223,244,251,252,253,254,255,256,278,301,350,375,411,418,432],bodystructur:[27,58,122,278,350],bogu:[44,45,99,153,289],bold:52,bonu:109,book:[22,36,93,449],books_test:449,boost:96,boot:[11,82,83,84,86,87],bootstrap:432,born:[269,441],both:[3,5,6,7,11,18,19,25,36,40,41,44,56,58,61,62,68,74,80,81,88,93,96,99,100,102,108,122,175,251,252,253,254,255,256,267,268,269,274,275,276,277,287,289,293,294,310,314,315,327,328,349,350,356,375,403,404,407,411,412,417,432,435,440],bother:[48,72,130],bottleneck:287,bottom:55,bounc:[268,336,350],bound:[100,280,350],boundari:[27,58,66,75,97,99,154,160,194,219,220,221,222,350],boundary_limit:350,bovik:[41,97,160,274,287,299,373,374],box:[137,353,449],boyer:97,brace:[55,80,291],bracket:[71,349,350],brain:[58,97,136],braindead:44,branch:[48,53,71,72,153,203,207,208,209,210,211,212,213,214,215,216,217,234,235,236,248,249,258,259,264,265,266,267,380,411,433,436],brand:[44,51,74],brandon:[98,375],brashear:444,breakpoint:80,breyha:[140,146,147,162,163,164,175,202,203],brick:11,bridg:11,brief:[56,96,317,432],briefli:[7,290],brilliant:71,bring:[7,81,289,291],britnei:55,broad:49,broadest:74,broke:[97,141],broken:[59,74,116,121,138,145,152,174,201,223,225,236,238,239,240,241,242,244,247,262,263,411],bron:[44,74,154,440,444],brong:[46,47,59,74,160,372],brong_:74,brontool:44,brotli:[49,432],brought:276,brown:350,brownfox:350,brows:[72,434],browser:[88,89,231],bruce:97,brutish:59,bsd:[236,238,239,240,241,242],bsearch_mem:97,btree:116,bucket:[196,232,244],buczek:158,budget:11,buf:[47,55,56,58,80,154],buffer:[55,56,58,60,80,97,98,99,100,108,109,111,133,139,149,165,190,200,297],bufsz:56,bug:[0,11,44,50,52,53,71,74,80,97,98,99,100,104,105,106,107,108,109,110,113,114,117,120,121,122,127,128,132,133,134,137,138,139,140,141,142,143,144,145,146,147,153,154,155,156,157,158,160,209,210,211,212,213,214,215,216,217,219,220,221,222,267,268,275,276,310,334,340,412,436,440,446,448,450],bugfix:[80,98,99,100,152],buggi:[51,57,97,98,155,158,174],bugzilla:[11,160,162,176,178,181,182,183,184,185,186,187,188],bui:[11,287],build:[1,2,4,11,19,42,44,50,51,56,65,66,68,72,80,83,88,97,98,99,100,103,104,105,106,107,114,117,120,121,122,127,137,140,141,148,150,152,162,164,175,176,178,181,182,183,184,185,186,187,188,190,191,199,203,251,254,255,256,267,277,280,281,283,284,289,293,310,321,334,343,365,379,399,433,436,448],built:[13,19,22,44,45,47,49,52,56,70,72,74,80,81,97,99,174,189,206,285,289,293,319,350,446],builtin:[350,375],bulk:[44,109,357,418,434],bulletin:[13,19,350,443],bump:[44,74],bunch:[72,74,97,145,146,147,251,252,253,254,255,256,276],bundl:96,burden:88,burdensom:74,bushi:[268,282,350],busi:[11,26,74,88,110,125,126,196,232,244,314,328],busytim:448,busytime_query_loc:448,busytime_query_remot:448,button:[53,331,449],bwlimit:411,byacc:97,bye:[18,82,83,84,86,87,97,350],bylaw:[436,439,448],bymonthdai:350,bynari:99,bypass:[6,97,166,193,231,243,287,382,399],bytcodefil:409,bytecod:[1,19,73,74,100,178,185,186,187,188,251,252,253,254,255,256,267,301,350,408,409,448],bytecode_input_t:75,bytecode_t:75,bytecodefil:409,byteord:80,bytes:[262,263],c01:[82,83,84,86,87],c38962096a47:359,c_include_path:319,cabinet:310,cabl:11,cacertdir:375,cacertdirectori:173,cacertfil:[173,375],cach:[4,11,25,41,57,59,74,78,97,98,99,100,102,106,108,109,131,153,157,160,163,178,183,184,185,186,187,188,192,226,231,236,238,239,240,241,242,251,252,253,254,255,256,268,279,281,283,284,289,300,308,311,312,314,350,357,371,388,400,401,432,436,447,448],cachdr:418,cache_crc:58,cache_envelop:47,cache_offset:58,cache_vers:58,cacheabl:192,cacheid:97,cacheitem_bas:47,cacheitem_buf:47,cacheitem_s:47,cachev:[388,418],cadir:[173,174],cafil:[68,173,375],cage:40,cal:420,calalarmd:[49,51,178,179,180,181,182,183,184,185,186,187,188,278],calconnect:88,calcul:[9,11,58,74,80,97,108,109,126,189,267,407,448],caldav:[1,4,13,22,23,70,73,87,93,163,169,175,176,178,179,180,181,182,183,184,185,186,187,188,189,209,210,211,212,213,214,215,216,217,219,220,221,222,233,245,262,263,266,287,350,380,420,432,436,442,447,448],caldav_accept_invalid_rrul:[251,252,253,254,255,256,350],caldav_allowattach:350,caldav_allowcalendaradmin:[208,350],caldav_allowschedul:350,caldav_create_attach:[88,350],caldav_create_default:[88,350],caldav_create_sch:[88,350],caldav_delete_sch:448,caldav_historical_ag:350,caldav_maxdatetim:[126,350],caldav_mindatetim:[126,350],caldav_post:448,caldav_put:448,caldav_realm:350,caldavtalk:51,caldavtest:[70,131,132],caldavzap:133,calendar:[6,11,22,23,27,36,40,49,66,89,90,92,93,125,127,131,132,134,169,198,204,208,217,219,220,221,222,223,225,226,243,244,245,247,251,252,253,254,255,256,262,263,268,278,350,432,436,438,442,448],calendar_component_set:350,calendar_default_displaynam:350,calendar_minimum_alarm_interv:350,calendar_user_address_set:350,calendarev:[223,262,263,267],calendarnam:27,calendarprefix:[22,350],calendarserv:[70,88,350],call:[3,11,38,44,45,46,47,48,55,56,59,60,68,72,74,79,80,82,83,84,86,87,91,97,98,99,141,155,156,160,174,190,199,228,262,263,267,268,275,276,279,287,293,297,314,315,331,341,350,366,411,440,446],callahan:98,callback:[44,45,60,68,79,97,297,421,422,424,425,427,429,430,431],callback_cap:68,callback_noliter:68,calle:44,caller:[44,58],callout:350,calscal:76,cam:[100,141],cambridg:[61,100],came:[56,74],campu:443,can:[0,3,5,6,7,9,10,11,12,18,24,26,28,33,35,36,39,40,41,44,45,47,48,49,51,52,53,55,56,57,58,59,61,62,65,66,68,69,70,71,72,74,75,77,79,80,87,88,89,91,92,93,95,96,97,98,99,100,102,104,108,109,120,125,129,139,145,147,152,161,163,164,174,178,179,180,181,182,183,184,185,186,187,188,189,190,192,193,198,201,205,206,208,209,210,211,212,213,214,215,216,217,219,220,221,222,225,233,235,236,238,239,240,241,242,245,246,247,251,252,253,254,255,256,257,262,263,267,268,272,273,274,275,276,277,278,279,283,284,287,288,289,290,291,293,299,300,301,303,305,306,307,308,309,310,312,313,314,315,316,318,319,320,321,322,324,325,327,329,331,332,333,336,338,339,340,342,345,349,350,355,356,357,360,364,366,369,372,374,375,377,387,388,390,394,395,398,401,404,405,407,411,412,417,420,421,422,423,424,425,427,428,429,430,431,432,433,434,436,443,446,448,449],cancel:[97,223,228,291,293,350,448],canist:11,cannot:[7,27,40,41,44,49,52,80,84,88,97,99,196,203,232,244,251,252,253,254,255,256,268,273,282,287,288,344,350,386,387,404,433],canon:[11,47,350,446,448],canonic:[6,41,56,97,99,100,274,350],canonif:[3,5,19,49],canonifi:[5,205,350],capa:350,capability_str:68,capabl:[11,18,41,49,52,68,82,83,84,86,87,97,105,106,107,108,117,141,155,160,203,262,263,267,276,287,310,350,407,421,422,424,425,427,429,430,431,432],capac:[4,7,9,277,287,314,315,448],capath:[68,174,375],capit:55,capo:[150,176],captur:[36,80,268],carbon:432,card:420,carddav:[4,13,22,70,93,124,162,178,179,180,181,182,183,184,185,186,187,188,209,210,211,212,213,214,215,216,217,219,220,221,222,267,287,350,420,432,436,442,447,448],carddav_allowaddmemb:350,carddav_allowaddressbookadmin:[208,350],carddav_realm:350,carddav_repair_vcard:350,carddavtalk:51,care:[40,44,51,55,74,97,100,276,277,287,289,350,360],career:340,carefulli:[7,11,56,276,340],caringo:[178,180,181,182,183,184,185,186,187,188,350],caringo_:[178,180,181,182,183,184,185,186,187,188],caringo_hostnam:350,caringo_port:350,carlo:[162,173,229],carnegi:[81,160,269,436,441,443,444,445],carsten:[98,160],carter:[100,102,104,105,106,109,122,139,141,154],cascad:[91,97],cass:51,cassandan:[48,50,70,72,197,225,233,245,246,247,268,276,334,442,448],castagnoli:227,castorsdk:350,cat:[268,446,449],categori:[56,189,287,432],caten:[82,83,84,86,87,102,117,143,350,432],caught:145,caus:[6,11,30,33,41,44,49,58,59,80,97,98,100,102,109,122,138,153,156,160,164,196,246,251,252,253,254,255,256,267,268,274,275,276,281,287,289,291,293,298,309,310,322,323,325,333,336,343,349,350,360,404,411,412,420,421,422,424,425,427,429,430,431,446,449],caution:[51,308,350,428],cave:140,cb44:27,cdt:390,cell:[11,350],center:11,cento:[2,12,81,85,448],centr:315,central:[3,36,56,443],centric:[22,315],centuri:[269,441],ceph:11,cephf:11,cert:[49,98,109,223,268,446],cert_fil:68,certain:[5,11,49,56,58,59,60,80,97,164,196,203,231,232,243,244,272,276,297,333,340,345,349,350,421,422,424,425,427,429,430,431,449],certainli:[44,48,160],certif:[4,5,28,49,68,82,83,84,86,87,105,160,173,196,216,217,219,220,221,222,350,446,448],cetera:340,cflag:[49,51],cgi:[93,210,211,212,213,214,350],chain:[87,160,161,268,276,315,350],challeng:[11,24,80,97,350,421,422,424,425,427,429,430,431,432],chan1:310,chan2:310,chan3:310,chanc:[9,24,30,58,98,277,289,309,331,350],chang:[6,7,11,18,19,27,33,36,40,44,45,46,47,48,50,51,52,53,56,57,58,61,64,68,69,70,72,74,75,76,79,80,82,83,84,86,87,88,89,90,91,92,93,96,97,98,99,100,102,103,104,105,106,107,108,109,110,111,114,116,117,118,119,120,121,122,124,125,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,147,148,152,153,154,155,156,157,158,207,234,248,258,264,266,268,274,277,278,282,287,288,301,302,309,310,314,315,329,343,348,350,353,356,357,358,360,370,373,375,377,381,401,403,404,405,406,411,412,417,432,439,446,448,449],changeabl:18,changes_epoch:[235,236,238,239,240,241,242],channel1:310,channel:[3,11,65,74,86,152,160,219,220,221,222,236,238,239,240,241,242,276,287,302,350,411,412,444],chapter:[7,8,10,277,305,312],charact:[1,3,18,33,41,44,49,54,55,62,69,74,97,99,106,109,120,121,138,142,156,160,163,190,268,280,283,291,301,310,313,316,333,349,350,351,366,375,377,407,411,417,448],characterist:7,chardet:226,charg:[41,271,300],charset:[27,80,97,136,146,157,219,221,222,251,252,253,254,255,256,322,418],charset_compilepat:56,charset_convert:56,charset_decode_mimebodi:56,charset_decode_mimehead:56,charset_extractfil:56,charset_freepat:56,charset_index:56,charset_lookupnam:56,charset_max_transl:56,charset_searchfil:56,charset_searchstr:56,charset_unknown_charset:56,chartables_long_transl:56,chaskiel:444,chassi:[11,310],chat:[268,448],chatti:350,chattr:314,chattrsync:314,chdir:[51,267],cheap:[11,28,46,74,287,314],cheaper:[11,15,279,314,350],cheapli:74,check:[9,11,18,24,25,30,44,45,47,48,51,53,58,61,64,70,71,72,74,76,80,87,88,90,95,96,97,98,100,112,115,121,122,131,136,140,142,143,146,147,166,173,174,178,180,181,182,183,184,185,186,187,188,193,203,219,220,221,222,223,227,235,236,238,239,240,241,242,243,251,252,253,254,255,256,261,262,263,267,269,277,287,289,291,293,295,301,310,321,327,341,350,355,356,358,366,374,382,388,393,399,403,404,405,412,432,436,446,447,448,449],checkapop:338,checkbox:72,checkdeliv:97,checklist:7,checkout:[51,72],checkpass:366,checkperiod:327,checkpoint:[44,45,139,268,276,349,350,356,358,435],checksum:[58,74,136,276,356],cherri:[48,72],child:[88,89,92,96,137,235,236,238,239,240,241,242,293,349,350,375,387,432,448],children:[44,82,83,84,86,87,98,158,350,369,387,411],chin:100,china:100,chines:66,chk_cyru:[99,100,352,448],chkconfig:[82,83,84,86],chmod:[18,268,446],choeger:98,choic:[9,11,30,44,45,87,88,98,238,241,242,277,281,287,340,411,446],choke:[175,225,229,247],chomp:[58,379],choos:[5,7,11,33,74,88,175,279,281,283,287,298,321,331,350,405,449],chose:[244,319,350],chosen:[11,196,232,244,344,350,411,421,422,423,424,425,427,429,430,431],chown:[268,313,341,446],chri:[97,172,322,444],christian:[100,150,225,247],christoph:191,chroot:[63,87],chunk:[11,74,90,131,133,276,350,356,364],chunk_id:74,churn:137,cid:[206,278,350,418],cipher:[82,83,84,86,87,99,146,160,350],circuit:[44,100,126],circumst:[11,31,33,80,283,331,449],citadel:88,citizen:344,cjk:[65,66,189],claim:[5,97,316,350,448],clamav:[49,164,178,179,180,181,182,183,184,185,186,187,188,190,206,321,374],clarifi:[41,97,274,305,331],clash:[74,96,203,404],classifi:440,cld2:[49,227],clean:[11,25,28,41,44,45,48,51,52,55,57,59,72,74,76,80,96,98,99,100,140,160,173,195,200,223,267,285,350,358,369,398,411,412,448],clean_compon:448,cleanli:[44,97,98,164,192,202,251,252,253,254,255,256,291],cleans:369,cleanup:[44,47,55,58,74,80,96,97,99,140,141,145,146,160,168,178,180,181,182,183,184,185,186,187,188,195,226,230,349,350,358,387],clear:[5,27,41,55,68,71,80,287,289,350,357,373,375,404,418,441],clearli:[11,55],clearo:81,cleartext:[93,350],cli:267,cli_fat:55,click:[72,449],client:[3,4,7,8,10,11,12,22,25,33,36,41,47,56,58,59,61,68,69,74,87,88,89,91,92,93,97,98,100,102,104,105,107,108,109,118,119,130,133,134,139,151,154,156,158,160,163,168,175,189,195,200,204,208,209,210,211,212,213,214,215,216,217,219,220,221,222,230,233,235,236,238,239,240,241,242,245,267,268,269,272,275,276,288,289,291,301,304,305,308,310,312,315,327,341,342,349,350,354,360,375,380,381,382,384,385,387,393,394,396,397,399,407,410,412,415,421,422,424,425,427,429,430,431,432,443,446,448],client_bind:350,client_bind_nam:350,client_id:200,client_timeout:[100,350],clientaddress:[227,278,350],clientid:[278,350],clientip:27,clientport:27,clock:[79,350],clone:[53,65,71,76,81,178,181,182,183,184,185,186,187,188],close:[7,8,9,25,30,41,44,45,55,57,58,62,68,74,80,82,83,84,86,87,88,97,99,100,102,146,154,277,280,287,291,313,331,340,341,349,350,375,387,421,422,424,425,427,429,430,431,448,449],closedir:110,closer:[80,289,350],closest:[41,273,340,350],cluster:[11,36,64,87,156,289,340,345,350,360,393],clusterlvm:11,clutter:97,cmd:[15,65,74,87,139,268,276,289,290,293,301,303,305,310,349,350,354,356,358,360,379,380,381,382,384,385,393,396,397,398,399,410,411,412,414,415,416],cmd_renam:142,cmdloop:74,cmu:[27,68,81,97,98,99,102,104,117,128,141,251,252,253,254,255,256,269,272,275,278,287,289,293,305,327,350,351,359,369,375,411,415,441,445],cmuloc:[48,97],cname:[97,287],code:[0,1,44,46,49,53,58,59,68,72,74,75,80,81,88,97,98,99,100,102,103,105,106,107,110,118,119,136,139,142,160,162,175,196,215,216,217,219,220,221,222,268,278,289,293,298,301,320,328,350,375,432,436,440,442,444,448,449],codebas:[44,53],codepath:44,coexist:276,coher:[11,207,209,210,211,212,213,214,215,216,217,234,235,236,248,249,258,259,264,265,266],coi:33,cold:279,collabor:[70,160],collaps:56,collat:[44,174,285,350,398],colleagu:160,collect:[6,11,23,71,88,89,92,93,97,131,287,340,350,353,407,432,436,438,448],collectnew:97,collis:360,colon:[88,350,353,361],coloo:[113,139,146,158,160],color:432,colour:52,columbia:102,column:[18,80,356],com:[3,5,28,33,40,41,53,65,72,74,87,97,98,99,100,110,117,136,140,141,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,238,239,240,241,242,243,244,245,246,247,251,252,253,254,255,256,257,261,262,263,268,274,276,285,289,301,308,350,359,369,374,388,411,428,449],com_err:[97,100,206],combat:345,combin:[5,11,14,41,56,58,71,74,80,231,243,267,270,271,275,276,291,301,310,340,350,357,374,375,404,412,448,449],combinatori:350,come:[11,41,49,52,55,65,74,80,82,83,84,86,87,92,267,268,269,274,275,291,312,314,315,331,350,384,385,397,443],comerr:267,comfort:[11,267],comma:[6,9,30,350,353,367,392,411],command:[11,18,27,33,36,40,41,46,47,48,52,55,56,58,59,61,65,66,68,72,75,80,82,83,84,86,87,93,97,98,99,100,104,106,109,121,137,143,154,156,158,160,161,164,198,200,208,209,210,211,212,213,214,215,216,217,219,220,221,222,225,233,245,247,251,252,253,254,255,256,262,263,267,268,272,275,276,279,286,287,289,293,298,299,301,305,306,308,310,311,312,314,315,327,329,330,331,334,343,344,349,350,354,356,357,360,361,362,364,366,367,369,370,372,373,376,378,380,382,384,385,391,392,393,394,396,397,399,401,404,405,407,410,411,413,415,418,420,421,422,423,424,425,426,427,428,429,430,431,432,436,437,446,448,449],commandcrew:33,commandlist_t:75,commandmintim:350,commenc:349,comment:[55,56,71,87,327,339,360,375,432],commerci:320,commit:[41,44,45,46,48,50,52,55,71,72,74,97,98,137,200,287,353,358,440],committ:440,commod:11,common:[5,7,8,11,12,15,33,36,44,45,49,60,74,87,97,268,279,288,297,315,325,332,375,432,436,437,448],commonli:[3,8,11,36,41,87,274,318,343,354,358,360,380,381,382,384,385,393,396,397,399,410,414,415],commun:[11,12,36,40,41,49,70,97,132,269,278,287,289,294,301,310,315,377,412,436,440,441,443,445,448],comp:[293,350],comp_flag:[6,267],comp_pat:56,comp_typ:6,compact:[44,49,56,65,71,262,263,276,331,350,356,411,448],compar:[5,10,11,36,72,76,80,99,106,163,233,245,287,289,331,345,350,388,411,420],comparis:109,comparison:[41,76,80,99,161],compat:[15,19,41,44,66,90,97,99,100,107,119,121,141,152,160,161,178,180,181,182,183,184,185,186,187,188,194,202,214,215,216,217,219,220,221,222,227,235,236,238,239,240,241,242,267,274,275,285,298,301,321,350,365,375,377,385,397,404,432,443],compel:6,compens:74,compil:[6,19,41,42,48,51,68,70,71,72,74,75,80,88,90,93,95,97,98,99,100,106,110,136,139,141,145,146,154,157,158,160,161,172,175,178,180,181,182,183,184,185,186,187,188,193,196,199,201,203,246,251,252,253,254,255,256,267,268,270,274,276,281,301,316,338,343,350,365,386,387,408,433,436,446,447,448],complain:[74,80,97,178,180,181,182,183,184,185,186,187,188,219,220,221,222,319,404],complaint:98,complet:[3,11,12,18,41,47,49,58,61,64,68,72,74,75,76,82,83,84,85,86,87,91,97,100,131,143,147,174,191,268,275,276,287,291,302,303,304,310,312,314,315,349,350,356,387,436,441,442,444,447,448],complex:[11,59,65,74,80,97,160,350],compli:[24,275],complianc:[25,70,275,442],compliant:[14,27,97,99,100,125,271,278,336,350,378,382,399,441,445],complic:[55,56,74,75,80,276,290],compon:[3,4,7,11,13,36,41,51,53,88,126,132,192,225,247,276,291,293,294,316,320,321,350,432,436,444,447,448],compos:[3,5,9,66,277],comprehens:446,compress:[49,74,82,83,84,86,87,109,110,146,160,174,268,276,350,356,366,407,412,421,422,424,425,427,429,430,431,432],compris:[3,440],compromis:[287,289,350],comput:[3,4,10,11,30,53,81,277,287,310,314,443,448],computation:75,con:290,concaten:41,conced:99,concept:[35,47,55,268,270,277,286,289,301,436,438,448],concern:[9,11,30,277,310,314,335,441],conclud:[304,350],concurr:[13,41,47,98,268,287,443],cond:55,condit:[9,19,55,58,59,75,80,81,97,98,100,147,154,155,161,166,193,268,277,314,350,432],condition:97,condstor:[47,58,82,83,84,86,87,105,108,109,117,154,327,432],conf:[2,6,9,15,18,19,22,24,25,28,30,33,40,41,44,45,49,52,58,65,66,72,74,87,88,89,90,91,92,93,95,97,98,99,100,102,104,106,107,110,121,147,158,174,175,178,179,180,181,182,183,184,185,186,187,188,189,200,201,203,205,206,216,217,219,220,221,222,223,226,235,236,238,239,240,241,242,243,251,252,253,254,255,256,261,262,263,267,268,271,273,275,276,277,278,279,280,281,282,283,284,285,287,288,289,290,293,295,296,298,301,303,304,305,309,310,311,312,313,317,324,327,331,333,336,338,339,340,341,342,348,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,410,411,412,413,414,415,416,417,418,446,448],confer:41,confid:11,confidenti:341,config:[18,33,49,52,74,80,97,98,137,141,156,157,158,164,192,289,290,293,315,322,349,350,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,403,404,405,406,407,408,410,411,412,413,414,415,416,417,418,420,436,442,447,448],config_annotation_db:[44,45],config_dir:97,config_fil:18,config_getstr:[44,45],config_virtdomain:80,configdirectori:[6,40,41,59,74,88,156,219,220,221,222,267,276,281,285,289,296,298,310,313,316,329,339,341,350,351,354,357,358,359,360,361,367,371,372,378,380,382,388,389,391,393,394,396,399,406,448],configfil:52,configur:[1,2,3,5,6,7,9,10,11,12,15,19,28,30,33,35,48,49,52,58,66,69,72,74,82,83,84,86,87,97,98,99,100,102,107,108,110,140,149,152,158,163,164,179,180,181,191,192,193,199,223,226,229,243,244,246,268,270,272,273,274,275,276,277,279,282,283,284,287,290,297,298,304,305,309,311,314,315,316,319,331,338,344,349,350,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,377,378,379,380,381,382,383,384,385,388,389,390,391,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,410,411,412,413,414,415,416,417,418,432,433,436,437,438,441,442,447,448,449],configurationdir:357,confirm:[26,50,72,289,440],conflat:74,conflict:[107,152,287,288,289,291,321,360,375],conflocal_mail:268,conform:[52,97,132,278],confus:[33,55,64,80,97,100,160,233,245,268,350],conjunct:[88,275],connect:[3,6,7,11,13,18,36,41,47,55,68,74,81,82,83,84,86,87,93,97,98,99,100,105,122,129,130,138,147,152,160,161,163,164,168,174,192,195,204,205,223,227,251,252,253,254,255,256,268,287,288,289,291,301,309,310,313,316,341,349,350,354,370,375,378,379,380,382,384,385,387,393,394,395,396,397,399,407,410,412,414,415,421,422,423,424,425,427,429,430,431,432,433,443,446,448,449],connor:[195,229],conrad:444,consecut:350,consensu:[432,440],consequ:[7,11,407,411,449],consequenti:81,conserv:[41,238,241,242,276,300],consid:[3,7,9,11,12,30,33,40,41,44,45,49,56,59,80,87,93,96,97,160,207,209,210,211,212,213,214,215,216,217,234,235,236,248,249,251,252,253,254,255,256,258,259,264,265,266,267,268,275,277,286,287,289,310,312,315,322,350,369,379,387,411,412,432,448],consider:[4,5,28,56,71,96,275,302,369,436,447,448],consist:[3,7,11,19,36,40,41,42,44,45,46,47,56,57,58,74,96,99,100,108,122,136,163,169,173,276,287,289,291,293,298,311,314,349,350,351,353,355,356,360,366,448],consolid:88,consort:51,constant:[44,47,97,139],constantli:[97,340],constitut:[26,84,407,446],constrain:[11,373],constraint:345,construct:[56,100,293,394],consult:[11,41,87,91,94,96,97,174,251,254,255,256,267,268,279,280,283,287,293,295,366,402,411],consum:[11,109,310,314,398],consumpt:7,contact:[12,33,47,66,71,81,89,90,93,97,152,189,217,219,220,221,222,223,228,251,252,253,254,255,256,267,286,287,293,340,350,436,438,442,443,448],contain:[3,6,11,14,18,19,24,28,33,40,41,44,47,48,50,55,56,58,62,72,74,75,76,80,81,88,91,93,97,100,122,142,143,164,166,175,178,179,180,181,182,183,184,185,186,187,188,189,191,193,199,206,210,211,212,213,214,215,216,217,219,220,221,222,235,236,238,239,240,241,242,262,263,267,268,274,276,278,279,284,287,291,314,315,329,334,341,349,350,351,353,354,356,360,361,364,366,374,375,377,382,388,399,404,407,411,421,422,424,425,427,429,430,431],contemporari:48,content:[1,6,11,26,27,36,41,44,57,58,61,64,66,74,88,91,93,97,122,131,132,160,251,252,253,254,255,256,267,268,272,273,275,278,279,287,289,291,305,307,312,314,327,341,350,351,357,359,360,364,371,407,432,448,449],content_lin:58,context:[36,44,235,236,238,239,240,241,242,319,331,432,449],continu:[3,7,11,19,26,33,36,40,44,45,47,56,66,80,82,83,84,86,87,97,99,106,160,267,287,289,310,331,342,345,349,350,356,411,445],contract:[11,81],contrari:[3,11,269],contrast:97,contraven:350,contrib:[79,97,174],contribut:[0,1,52,53,70,98,117,160,161,174,203,268,350,436,440,444,448],contributor:[0,435,439,442,448],control:[3,5,7,9,11,13,33,36,52,53,55,80,93,97,98,100,102,104,106,120,131,160,192,196,226,232,244,251,252,253,254,255,256,268,270,272,277,278,279,282,289,309,310,314,315,327,332,342,350,369,375,387,411,432,436,438,442,443,446,448],conundrum:11,conveni:[44,51,80,160,275,318,366,407,412],convent:[1,33,41,55,69,97,178,179,180,181,182,183,184,185,186,187,188,276,301,417,436,448],converg:[4,30,277,448],convers:[4,44,56,57,66,74,90,97,99,178,179,180,181,182,183,184,185,186,187,188,190,203,205,214,215,216,217,219,220,221,222,235,236,238,239,240,241,242,251,252,253,254,255,256,267,350,357,358,369,442,448],conversations_counted_flag:350,conversations_db:[66,90,350],conversations_expire_aft:350,conversations_expire_dai:[350,369],conversations_keep_exist:350,conversations_max_guidexist:350,conversations_max_guidinfold:350,conversations_max_guidrecord:350,conversations_max_thread:350,conversationsdb:[57,206],convert:[6,44,51,56,58,59,62,74,88,97,99,100,136,138,199,251,252,253,254,255,256,267,268,270,275,305,350,358,362,363,417,432,448],convexist:[278,350],convunseen:[278,350],cool:[51,91,287],cooper:374,coordin:11,cope:33,copi:[3,5,11,24,38,39,41,44,46,47,48,49,51,53,56,58,61,65,72,74,76,88,97,102,108,119,121,122,133,139,223,268,269,273,275,276,288,290,291,300,301,315,318,331,339,350,358,360,375,376,385,397,411,412,421,425,426,427,429,430,432,436,446,447,448,449],copyback:412,copydb:411,copyright:[80,81],cor:350,core:[51,66,90,96,98,136,217,219,220,221,222,316,350,432,433,439,443,448],core_uses_pid:329,corneliu:[112,140],correct:[3,7,18,40,41,44,45,55,61,72,74,80,93,97,98,99,100,108,138,139,146,160,164,202,205,206,267,268,287,288,293,314,322,350,388,404,405,420,421,422,424,425,427,429,430,431],correctli:[47,48,55,56,72,74,97,98,99,100,109,138,150,152,161,162,163,164,167,174,189,190,191,192,194,198,199,202,203,205,206,223,225,226,227,228,235,236,238,239,240,241,242,245,247,251,254,255,256,263,267,268,287,289,303,350,446],correspond:[6,10,15,25,55,56,58,72,74,76,97,160,223,228,275,276,279,280,283,293,327,350,351,357,369,371,375,376,394,407],corrupt:[6,11,41,44,45,47,58,88,97,109,137,139,145,152,154,155,171,205,276,289,308,314,325,339,340,350,356,404,420,448],cost:[4,15,287,310,314,350,448],costli:[28,75],could:[3,5,7,10,11,15,18,19,28,33,36,38,41,49,51,55,58,59,74,75,77,84,97,99,100,108,128,140,155,156,160,166,174,193,196,200,231,232,243,244,251,252,253,254,255,256,272,274,275,276,287,289,291,310,314,331,350,412,418,433],couldn:[68,166,193,340],count:[6,9,11,30,35,41,47,58,109,147,160,164,199,212,213,214,215,216,217,219,220,221,222,227,275,277,291,300,307,316,331,340,350,353,357,398,448],counter:[4,27,59,278,350,448],countri:19,coupl:[11,27,44,49,98,278],courier:[178,180,181,182,183,184,185,186,187,188,269,350,441],cours:[3,9,11,30,276,277,344],courtesi:[104,105,106,107,110,121,122,136],cover:[44,71,81,94,139,297],coverag:[49,80],cpan:[49,51],cpu:[36,196,232,244,310,340,350],crack:74,craft:[74,200,340],craig:[104,117,440,444],cram:[5,41],crap:97,crash:[51,58,59,96,98,99,100,107,109,115,139,141,145,146,147,149,152,154,155,156,157,158,161,162,163,164,168,169,170,174,175,176,189,191,192,193,195,196,199,200,202,203,204,206,223,226,227,228,251,254,255,256,287,289,310,433],crashi:205,crawl:[39,74],crc32:[51,58,80,178,180,181,182,183,184,185,186,187,188,227,235,236,238,239,240,241,242],crc32_iovec:80,crc32_map:[58,80],crc32c:199,crc:[58,136,161,412],crc_iovec:80,creat:[3,5,6,7,9,10,11,19,22,24,30,33,36,40,44,45,46,48,51,55,57,58,59,61,66,71,72,74,78,80,88,89,90,91,92,97,98,99,109,110,122,127,137,152,153,156,160,161,163,166,192,193,217,219,220,221,222,235,236,238,239,240,241,242,251,252,253,254,255,256,262,263,267,275,276,277,283,284,287,288,289,290,293,298,299,301,307,311,312,313,314,315,328,330,341,345,350,354,356,357,358,360,366,374,375,379,380,382,387,390,391,392,393,394,396,399,404,407,411,436,446,447,448],createabl:287,createdir:268,createdmodseq:[6,213,214,215,216,217,219,220,221,222],createmailbox:[161,268,307],createonpost:[160,350],creation:[4,7,13,30,58,59,108,160,172,268,277,287,293,350,405,411,436,446,447,448],creationd:6,crec:47,credenti:[5,130,276,289,310,315,350,407,421,422,424,425,427,429,430,431],crept:157,cridland:109,crispin:97,crit:[41,340],criteria:[11,15,226,279,327,374],critic:[28,41,44,72,98,310,340],crlf:[41,58,142,291,324],cron:[15,41,74,95,276,310,315,349,374],crontab:[95,374,411],cross:[42,74,96,106,130,178,180,181,182,183,184,185,186,187,188,194,287,350,412,442,448],crossdomain:[178,180,181,182,183,184,185,186,187,188,350],crossdomains_onlyoth:[178,180,181,182,183,184,185,186,187,188,350],crow:287,cruft:136,crypt:18,cs0:350,cs1:350,cs2:350,cs3:350,cs4:350,cs5:350,cs6:350,cs7:350,csync:[74,96,268,276,295,310,350,354,407,414,446],ctag:432,ctl_:96,ctl_backup:[193,199,350,352,448],ctl_backups_lock_data_fnam:356,ctl_backups_lock_index_fnam:356,ctl_conversationsdb:[44,66,90,214,215,216,217,219,220,221,222,267,350,352,448],ctl_cyrusdb:[45,99,136,147,175,224,243,246,251,252,253,254,255,256,267,268,276,289,349,350,352,356,448],ctl_deliv:[98,100,349,352,448],ctl_mboxlist:[36,44,77,98,99,100,107,117,122,142,155,169,174,251,254,255,256,262,263,281,288,289,305,310,339,350,352,448],ctl_zoneinfo:[88,133,228,350,352,448],ctrl:[313,366,449],cu_:80,cu_assert_equ:80,cu_run_all_test:80,culprit:11,cumbersom:11,cunit:[49,72,80,199,223,226,227],cunit_test:80,curl:[66,267,268],curli:80,current:[5,6,11,15,19,27,33,36,40,41,44,45,47,48,49,52,53,55,56,58,60,64,66,68,71,72,74,82,83,86,87,88,93,95,97,99,107,108,125,189,236,238,239,240,241,242,251,253,254,255,256,262,263,267,268,275,276,277,286,287,288,289,290,291,293,297,300,301,310,315,317,320,337,339,340,350,353,356,366,370,371,374,375,390,392,400,402,411,412,420,421,422,423,424,425,427,428,429,430,431,432,435,440,448,449],curv:[146,160,350],custom:[11,28,44,66,91,93,166,178,179,180,181,182,183,184,185,186,187,188,193,201,216,217,219,220,221,222,262,263,276,320,356,374,433],customer1:3,customis:374,cut:[11,441],cutoff:375,cve:[111,139,165,166,174,190,192,193,196,210,211,212,213,214,215,216,217,219,220,221,222,231,232,243,244],cvenam:[210,211,212,213,214],cvt_cyrusdb:[99,100,267,298,313,352,358,448],cvt_xlist_specialus:[267,352,448],cycl:[24,25,36,44,46,59,84,97,160,266,309,310,331,349,412,433],cyr_:96,cyr_backup:[352,407,448],cyr_buildinfo:[352,448],cyr_dbtool:[77,121,175,276,313,350,352,448],cyr_deni:[313,352,366,448],cyr_df:[109,352,448],cyr_expir:[15,24,25,44,58,100,102,104,107,110,122,142,152,157,158,160,195,205,236,238,239,240,241,242,262,263,268,293,305,315,331,349,350,352,448],cyr_info:[194,219,220,221,222,227,235,236,238,239,240,241,242,251,252,253,254,255,256,261,262,263,267,352,442,448],cyr_l:[251,252,253,254,255,256,267,352,448],cyr_qsort_r:228,cyr_synclog:[104,108,173,310,352,448],cyr_userseen:[352,448],cyr_virusscan:[49,95,164,216,217,219,220,221,222,334,350,352,448],cyradm:[18,22,28,40,41,49,68,88,97,98,99,100,114,140,156,174,198,206,226,268,289,301,305,306,307,308,311,315,326,327,348,350,352,369,392,448],cyradmin:97,cyradmn:306,cyrdeliv:335,cyrdump:[137,200,205,352,448],cyril:110,cyrsudb_db3:98,cyru:[0,2,3,4,5,9,10,11,13,14,15,19,22,26,27,28,31,33,34,35,38,39,40,42,44,45,46,47,53,54,68,69,71,73,74,80,82,83,84,85,86,87,88,89,90,91,92,93,95,266,270,271,272,274,275,277,279,280,281,282,283,284,285,294,298,299,300,302,305,308,310,311,312,313,316,317,318,319,320,321,325,327,328,329,331,332,333,336,337,340,341,342,343,347,350,352,354,355,356,357,358,360,362,363,364,365,366,367,368,369,370,371,374,375,378,379,380,381,382,384,385,387,388,389,391,393,395,396,397,398,399,402,404,405,407,410,411,412,414,415,417,418,420,428,433,434,438,447,448],cyrudb:100,cyrunit:80,cyrus24:51,cyrus25:51,cyrus2v:268,cyrus_conf:[268,446],cyrus_confdir:314,cyrus_db:74,cyrus_don:[44,45,55],cyrus_group:[206,350],cyrus_imap_murd:7,cyrus_init:[44,45,55],cyrus_path:350,cyrus_prefix:[98,158],cyrus_sendmail_auth_id:350,cyrus_syslog_prefix:350,cyrus_us:[206,350],cyrus_verbos:387,cyrus_vers:137,cyrusarch:280,cyrusdb:[1,6,43,55,74,88,90,98,99,100,107,114,199,215,216,217,219,220,221,222,298,350,362,366,448],cyrusdb_again:[44,45],cyrusdb_backend:44,cyrusdb_convert:44,cyrusdb_db3_nosync:98,cyrusdb_exist:[44,45],cyrusdb_fetchnext:44,cyrusdb_flat:[44,45],cyrusdb_ioerror:[44,45],cyrusdb_lock:[44,45],cyrusdb_lockopen:44,cyrusdb_mboxsort:[44,45],cyrusdb_nam:45,cyrusdb_nocompact:44,cyrusdb_notfound:[44,45],cyrusdb_ok:44,cyrusdb_quotalegaci:[44,107],cyrusdb_skiplist:[44,99],cyrusdb_sql:44,cyrusdb_twoskip:44,cyrushost:366,cyrusid:411,cyrusimap:[48,53,65,72,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,238,239,240,241,242,243,244,245,246,247,251,252,253,254,255,256,257,261,262,263,266,267,289,350,436],cyrusisgreat:40,cyruslib:[65,189,204],cyruslibs_dir:65,cyrusman:[160,448],cyrusmeta:[283,284],cyrusmurd:[291,345],cyrussiev:[316,448],cyrusv2:40,cyrusv2_mailer_arg:268,cyrusv2_mailer_flag:268,cyrusv2_mailer_qgrp:268,d5ec35c1414a:[82,83,84,86],d_1:88,da39a3ee5e6b4b0d3255bfef95601890afd80709:74,dacl_invit:76,dacl_repli:76,dacl_schedfb:76,daemon:[11,19,41,64,65,87,96,97,98,99,174,178,179,180,181,182,183,184,185,186,187,188,201,203,267,268,276,281,285,289,296,301,315,341,350,379,381,387,395,398,410,411,412,421,422,424,425,427,429,430,431,446],dai:[7,11,15,28,41,44,49,52,58,109,158,160,267,268,269,276,278,293,305,314,327,331,349,350,353,369,375,383,390,418,441],daili:[11,109,312,411,434],dam:375,damag:[41,61,81,310,432],damn:74,dan:444,danger:413,daniel:[195,229],dark:[269,441],darrow:98,darth:[315,341],dashboard:50,data:[3,4,6,7,15,25,30,31,36,41,47,49,51,55,58,60,62,66,68,81,88,90,93,97,106,109,131,133,139,142,155,160,161,169,176,178,180,181,182,183,184,185,186,187,188,192,196,215,216,217,219,220,221,222,232,244,268,275,276,278,279,281,283,286,287,289,297,308,310,311,312,313,314,315,332,337,338,339,340,341,345,350,356,357,360,361,364,366,376,380,382,389,394,396,399,404,432,436,447,448,449],data_sha1:74,databas:[1,4,5,7,11,12,13,33,36,41,44,45,57,65,77,87,88,90,96,97,98,99,100,106,109,121,122,136,147,156,158,171,175,176,178,179,180,181,182,183,184,185,186,187,188,214,215,216,217,219,220,221,222,246,262,263,268,270,274,275,276,284,286,293,305,311,313,315,316,318,332,339,349,350,356,357,358,359,360,361,362,364,366,367,369,400,401,404,407,411,416,420,436,443,446,447,448],datagram:[379,381],dataless:287,dataset:[287,310],datasourc:44,datastor:[44,315,355],datastructur:[60,297],datatyp:[109,158],datauuid:51,date:[27,41,58,60,79,80,81,88,97,137,154,178,185,186,187,188,223,227,243,262,263,268,276,277,287,289,291,301,315,345,350,353,374,375,383,388,390,412,432,441],datestamp:52,dav:[4,44,49,51,66,88,89,92,93,125,127,164,192,208,227,232,235,236,238,239,240,241,242,244,267,268,279,281,283,350,380,420,432,436,438,448],dav_lock_timeout:350,dav_realm:350,dav_reconstruct:[44,160,164,267,350,352,448],davdriveprefix:350,dave:[109,154,440],davfilenam:[278,350],davi:444,david:[98,100,102,104,105,106,109,122,139,141,154,246],davnotificationsprefix:350,davtalk:51,davuid:[278,350],daylight:[109,350],db3:[98,99,100,343],db4:[99,100,109,343],db_mail:18,db_mail_password:18,db_mail_us:18,db_passwd:18,db_recov:[100,339],db_user:18,dba:6,dbdir:99,dberror:[99,109],dbm:97,dbs:100,dc814658a4d676789578bff3de35b45914abd774:388,ddmmyyyi:353,deactiv:[9,30,277,287,428],dead:[98,349,350],deadlock:[44,45,97,98,262,263,333],deal:[55,56,74,87,97,98,99,289,291,338,340],deanna:351,debconf:267,debhelp:267,debian:[2,12,49,70,80,81,87,99,100,137,229,267,268,289,293,310,446,448],debug:[1,6,18,44,45,97,98,99,108,141,268,329,334,349,350,356,387,398,402,411,412,448],debug_command:[99,350,354,379,380,382,384,385,394,395,396,397,398,399,410],debug_log_sync_partition_choic:350,debug_writefail_guid:350,debugg:[74,99,334,354,379,380,382,384,385,394,395,396,397,398,399,407,410,412],decemb:441,decent:75,decid:[11,36,44,45,74,87,97,278,287,293],decim:[56,62,68,407],declar:[80,97,223,279,350,432],declarar:97,declin:448,decod:[56,97,350],decode_st:56,decompil:[301,409],decompos:56,decomposit:56,decoupl:205,decreas:[97,342],decrement:59,dedic:[7,276,310,354,444],dedupl:196,deem:11,deep:[276,350,356],deeper:350,deepli:66,def:268,defaultacl:[41,273,350],defaultdomain:[40,178,180,181,182,183,184,185,186,187,188,245,268,350],defaultpart:[279,283,350],defaultpartit:[9,28,30,41,65,268,277,279,280,283,284,350],defaultsearchti:[65,279,284,350],defaultserv:[9,30,109,277,350],defeat:99,defect:97,defer:288,defici:44,defin:[19,24,31,33,34,40,41,44,52,56,60,61,64,68,74,80,97,100,229,268,270,272,274,275,276,279,280,283,284,289,291,296,297,300,315,327,349,350,375,411,421,422,423,424,425,427,429,430,431,448],definit:[11,18,44,47,55,80,81,88,219,220,221,222,268,270,279,284,294,302,350,448],deflat:[49,82,83,84,86,87,412,432],deflatepend:[227,228],defn:268,degener:97,degrad:[97,325],degre:41,dekker:154,delai:[11,13,41,58,74,97,102,104,105,108,109,139,141,160,178,180,181,182,183,184,185,186,187,188,191,275,276,300,305,312,331,338,350,369,407,412,418,448],delaycompress:268,delayed_expung:152,deleg:272,delet:[8,11,13,25,27,36,41,44,45,48,57,58,59,72,74,88,89,97,98,99,103,104,105,108,109,121,122,134,138,139,140,141,142,152,153,154,157,160,161,178,180,181,182,183,184,185,186,187,188,189,191,194,205,216,217,219,220,221,222,235,236,238,239,240,241,242,267,268,269,270,273,275,276,287,288,289,299,300,301,302,315,316,327,345,350,358,360,366,369,373,374,375,383,387,388,401,404,405,407,418,423,428,446,448],delete_mod:[24,41,104,141,178,180,181,182,183,184,185,186,187,188,300,305,331,350,407],delete_unsubscrib:350,deleteacl:[275,375],deleteaclmailbox:41,deletedmessag:305,deletedprefix:[24,74,104,305,350,407],deletembox:41,deletemsg:41,deleteprun:[160,268],deleteright:[275,350],delight:433,delimit:[24,52,74,88,89,92,97,336,350,353,366,374],deliv:[4,11,19,26,41,49,58,64,88,96,97,98,99,100,114,147,158,160,161,267,268,269,275,281,290,293,296,301,315,316,318,327,336,350,352,359,375,384,385,397,407,411,432,441,443,448],deliver:[100,268,436],deliver_merge_pollstatu:448,deliver_merge_repli:448,deliver_merge_request:448,deliver_merge_vpoll_repli:448,deliverbi:350,deliverdb:[97,359],deliveri:[4,13,19,47,58,63,74,76,87,97,98,99,102,104,113,118,138,145,189,229,244,267,270,272,275,281,286,288,293,298,301,303,305,316,327,344,345,350,359,369,374,377,383,432,436,438,443,448],delprun:[268,305,349],delsub:108,delta:[9,30,251,252,253,254,255,256,277,289,350,411,432],delteacl:375,demand:[62,125,310,328],demi:276,demonstr:61,demot:314,deni:[6,98,110,268,275,289,291,313,350,366,367,382,399],denial:[6,99,291,366],denot:[56,324,350,449],dens:365,depart:443,depend:[7,9,11,30,36,41,44,45,51,52,58,66,70,72,74,78,80,87,90,93,96,99,100,193,200,226,227,267,268,272,274,276,277,288,289,290,293,301,305,310,320,331,334,350,377,387,407,411,436,447,448,449],depfil:80,depict:11,deploi:[4,15,84,275,340,411,441],deploy:[4,5,8,11,12,36,40,41,267,310,311,314,350,363,436,447,448],deployment_guid:9,deprec:[6,41,47,56,100,136,160,178,181,182,183,184,185,186,187,188,209,210,211,212,213,214,215,216,217,219,220,221,222,223,251,252,253,254,255,256,262,263,267,275,310,350,363,404,423,432,443],depth:[138,268],dereferenc:350,deriv:[41,81,289,310,333,404,411],derrick:444,describ:[3,7,8,12,18,27,41,44,45,56,58,68,72,97,162,251,254,255,256,268,275,280,287,301,310,312,315,349,350,351,361,374,409,436,441],descript:[27,52,56,72,88,94,96,98,301,327,432,446,448],descriptor:[44,45,55,68,97,100,131,178,180,181,182,183,184,185,186,187,188,349,350,354,380,382,384,385,393,394,396,397,399,410,415,421,422,424,425,427,429,430,431],deserv:5,design:[0,5,6,11,13,41,69,75,80,88,97,276,291,315,350,393,443,448],desir:[5,11,56,60,74,97,107,268,289,291,297,310,350,374,387,441,446],desktop1:449,desktop:[301,449],desno:444,despatch:[269,441],desper:301,despit:[55,71,268,281,291,319],desruisseaux:432,dest:[407,412],destdir:51,destin:[3,74,88,100,102,152,163,197,233,245,267,268,276,287,344,350,364,375,407,411,412,443],destroi:[48,72,96,350,413],desttier:411,desyncronis:200,detail:[1,6,11,12,18,41,47,49,55,64,66,68,72,74,79,80,81,87,94,96,97,100,102,107,108,110,121,122,156,160,227,268,270,276,277,278,279,280,283,284,286,287,293,295,310,311,315,340,349,350,353,356,357,364,366,374,387,411,417,448,449],detect:[26,44,45,49,58,74,80,95,98,100,109,110,132,152,153,156,160,161,164,175,178,185,186,187,188,191,199,203,205,223,229,245,262,263,267,308,309,350,388,403,432],detector:[49,80],determin:[3,5,6,15,28,36,40,41,58,74,80,93,97,102,267,274,276,277,287,290,302,315,318,327,344,350,356,357,358,359,360,391,411,416],determinist:365,detritu:44,dev:[10,11,49,65,72,80,207,266,267,268,276,338,350,436,440,448],devel:[11,33,44,49,55,289,319],develop:[2,6,12,27,33,44,81,87,88,102,137,174,179,180,181,182,183,184,185,186,187,188,207,208,209,210,211,212,213,214,215,216,217,234,235,236,248,249,258,259,264,265,267,268,269,278,310,317,319,340,350,421,422,424,425,427,429,430,431,433,434,436,439,441,444,445,448],development:266,devic:[3,4,11,27,52,277,448],devrandom:338,dfuch:98,dhave:80,dhe:[82,83,84,86,87],diacrit:[56,350],diagnos:[44,49,97],diagnost:364,diagram:[1,11,293],dialog:[268,449],dictat:[11,15,41,87,274],did:[19,38,48,72,76,80,97,157,168,195,223,231,243,268,298,301,350,433],didn:[44,51,74,80,97,156,164,267],die:[325,379],died:289,dies:[349,387],diesel:11,diff:268,differ:[7,9,11,13,18,19,30,33,36,41,44,45,46,49,55,56,58,59,69,70,71,72,74,80,88,96,97,99,100,130,137,139,141,156,157,161,169,229,233,245,267,268,275,277,279,280,283,284,286,287,289,296,298,301,303,305,310,311,314,315,321,337,344,349,350,360,362,371,375,388,389,407,412,418,443],differenti:350,difficult:[80,267,287,320],difficulti:49,digest:[5,41,49,93,99,130,350,374,375,421,422,424,425,427,429,430,431,432],digit:[41,56,74,97,156,333,350,353,378],dilail:443,dilyan:[139,141,268],dilyanpalauzov:205,dimens:350,diminish:[9,30,277],dir:[12,80,88,97,164,179,180,181,182,183,184,268,449],direct:[7,11,15,41,46,52,58,72,74,93,97,166,193,196,232,244,267,279,280,283,287,293,295,315,348,350,411,440],directli:[11,22,41,44,46,49,52,63,75,81,88,100,137,140,160,268,287,289,320,331,350,356,358,443,446],director:287,directori:[1,10,11,15,24,30,35,44,48,49,51,52,54,56,57,58,59,63,68,72,74,80,88,93,96,97,98,99,100,121,142,160,163,173,189,195,203,219,220,221,222,228,229,251,252,253,254,255,256,267,270,276,280,284,285,289,293,296,298,301,302,311,314,319,328,337,341,350,354,355,360,361,370,371,375,380,382,386,388,391,393,394,396,398,399,404,405,406,411,432,436,438,444,446,448,449],dirhash:[143,144],dirsrv:11,disabl:[11,12,18,19,24,25,33,41,49,74,77,80,87,88,89,93,97,98,99,100,102,104,110,113,122,139,141,146,158,160,173,174,192,193,208,209,210,211,212,213,214,215,216,217,219,220,221,222,245,267,268,278,287,293,298,301,329,338,350,354,358,369,379,380,382,384,385,394,395,396,397,399,410],disable_shared_namespac:[33,350],disable_user_namespac:[33,271,350],disadvantag:[7,350],disallow:[41,97,327,350,375],disappear:[25,47,58,59,74,325,331,350],disast:[11,268,357,446],disastr:64,disavow:97,disc:375,discard:[74,75,404],disclaim:81,disclos:[173,350],disconnect:[97,163,189,251,252,253,254,255,256,289,327,350,387,443],disconnect_on_vanished_mailbox:[110,146,350],discov:[74,80,154,196,232,244,267,308],discoveri:11,discreet:350,discret:[4,71,102,175,289,440,448],discretionari:[33,270,448],discuss:[15,40,41,56,65,88,191,268,274,276,278,279,289,297,305,337,340,344,434,440,449],disjunct:226,disk:[3,6,9,10,15,28,30,34,35,39,41,44,45,47,51,57,58,74,78,100,102,109,139,160,191,219,220,221,222,251,252,253,254,255,256,267,276,277,279,281,287,300,314,315,340,341,350,356,358,364,368,371,388,389,404,406,423],diskquota:27,diskus:[27,278,350],dispatch:96,displai:[6,8,33,56,87,98,106,118,119,138,268,327,350,356,362,366,368,370,371,373,375,382,389,392,399,411,428,432,442,449],displaynam:[227,350],disposit:[97,235,236,238,239,240,241,242,432],disrupt:96,dissappear:160,dist:[48,72,98],distanc:[71,269,441],distcheck:[48,72,192],distclean:97,distinct:[15,36,66,74,96,277,288,333,349,350,353,374],distinguish:[5,33,41,150,167,194,227,274,314,449],distribut:[2,4,6,11,12,13,19,28,36,41,44,48,49,68,72,74,84,85,90,93,96,97,99,178,180,181,182,183,184,185,186,187,188,189,199,268,270,276,279,280,281,283,287,291,293,301,310,320,321,343,350,354,366,432,433,436,443,446,447,448],distributor:19,distro:[49,267,268,289,310,446],ditto:287,divers:[432,444],divert:268,divid:[3,11,28,93,97,147,279,314,349],divis:58,dkim:[88,350,432,436],dlist:[6,74,80,199,448],dmarc:436,dmz:287,dnf:84,dnl:268,dns:325,do_stuff:[46,47,59],doc:[1,48,49,52,87,96,178,180,181,182,183,184,185,186,187,188,189,198,201,225,247,268,366,436,446,448],docbook:449,docker:50,docsrc:[48,52,72],document:[0,1,11,13,15,18,19,27,40,41,44,45,46,47,48,49,51,53,55,58,63,66,72,75,80,81,85,87,91,94,96,97,98,99,100,141,143,145,152,155,163,171,178,180,181,182,183,184,185,186,187,188,189,191,192,199,205,209,210,211,212,213,214,215,216,217,219,220,221,222,266,267,268,274,275,276,279,281,283,287,288,289,290,291,293,303,310,331,349,350,372,405,411,436,441,442,446,448],doe:[3,5,7,8,11,13,19,27,33,35,36,40,41,44,46,47,51,56,58,60,66,69,72,74,75,82,83,84,86,87,88,89,92,93,95,97,98,99,100,199,202,244,267,268,273,274,275,276,277,278,287,289,290,291,293,297,305,307,310,311,312,315,316,319,324,331,334,336,337,338,340,348,349,350,357,364,369,373,374,375,377,379,402,404,407,411,412,420,432,433,443,448],doesn:[0,18,19,33,41,44,45,47,48,51,55,56,58,59,61,72,74,76,80,88,97,98,99,104,110,140,142,147,150,162,164,167,194,197,227,233,245,251,252,253,254,255,256,268,275,278,287,305,313,322,340,349,350,366,412],doesnt:339,dohash:97,doing:[44,48,71,72,74,88,89,92,97,155,160,197,233,245,262,263,276,293,310,311,315,350,382,399,407,412],domain1:268,domain:[3,7,13,18,33,41,50,74,96,97,98,99,100,120,146,158,161,164,178,180,181,182,183,184,185,186,187,188,189,205,236,238,239,240,241,242,268,273,274,281,289,294,295,296,301,335,336,349,350,356,375,395,403,446,448,449],domainkei:[93,268,350,432],domainrelatedobject:350,don:[0,3,18,44,45,47,48,49,52,53,55,56,58,71,72,74,88,97,98,99,100,130,142,143,146,156,157,163,170,172,174,175,189,194,199,225,229,233,244,245,247,267,268,276,278,286,287,288,289,301,319,320,338,340,341,350,356,360,378,387,392,403,404,407,411,412,415,421,422,424,425,427,429,430,431,434],donald:158,done:[15,25,40,41,47,51,53,55,56,57,58,61,75,76,80,88,90,93,97,100,108,125,267,268,276,282,287,289,293,301,308,310,313,318,350,360,373,375,391,428,446],dopenssl_no_krb5:319,dormant:353,dot:[3,33,41,69,99,143,163,189,267,350],doubl:[55,56,100,138,226,291,349],doubt:[72,138],dovecot:[51,154,178,180,181,182,183,184,185,186,187,188,350],down:[36,44,56,74,80,96,97,99,156,160,251,252,253,254,255,256,268,276,281,287,289,342,350,354,379,380,382,384,385,394,395,396,397,399,405,407,410,412,436,447,448],downcas:[56,336],downconvert:322,downgrad:[147,262,263,267,404],download:[48,49,51,66,72,80,81,88,89,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,208,209,210,211,212,213,214,215,216,217,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,235,236,238,239,240,241,242,243,244,245,246,247,249,251,252,253,254,255,256,257,259,261,262,263,265,267,304,432,436,443,446,448,449],downloadurl:199,downtim:[289,314,443],dozen:36,dpc22:[61,141],dperl_pollut:98,dpkg:[268,433],drac:[209,210,211,212,213,214,215,216,217,219,220,221,222],drac_auth:79,drac_p:79,draft:[33,41,90,97,99,100,102,125,160,235,236,238,239,240,241,242,251,252,253,254,255,256,262,263,301,305,308,327,344,350,370,373,388,404,449],dragonfli:139,drastic:[122,345],draw:449,drawback:[287,441],drbd:[11,350],dread:[97,98],drive:[11,92,93,279,350],driver:11,drop:[45,64,72,97,160,178,179,180,181,182,183,184,185,186,187,188,204,291,446],drop_cr:324,dropcr:324,dropoff:97,drwxr:64,dry:[176,289,383,404,406,407,417],dsn:[97,350],dtend:[6,76],dtstamp:76,dtstart:[6,76],duck:[48,72],due:[41,58,59,66,74,75,93,98,107,126,152,160,161,200,223,251,252,253,254,255,256,267,268,276,316,350,407,448],dumb:44,dummi:350,dump:[44,45,51,74,77,97,99,100,117,143,251,254,255,256,276,281,288,291,316,350,357,359,360,364,376,388,400,433,442,448],dump_deliverdb:97,dump_opt:74,dupelim:97,duplic:[4,13,58,62,74,80,90,97,98,99,100,104,139,246,267,268,281,287,293,301,305,316,327,332,350,359,369,432,448],duplicate_check:141,duplicate_db:[10,160,350],duplicate_db_path:[10,96,268,281,350],duplicate_mailbox_mod:370,duplicatedb:98,duplicatedeliv:[104,327],duplicatesuppress:[41,98,100,350],durat:[11,15,44,45,58,74,76,99,216,217,219,220,221,222,350,369,401],dure:[11,12,19,24,36,41,44,45,47,55,56,57,58,59,80,84,97,98,99,100,122,138,147,155,168,175,178,180,181,182,183,184,185,186,187,188,191,193,195,196,204,217,219,220,221,222,227,230,232,235,236,238,239,240,241,242,244,251,252,253,254,255,256,261,262,263,267,268,274,276,277,278,287,289,290,314,340,350,357,365,375,407,433],duse_setproctitl:174,dynam:[56,91,350],e503646e389f507777fb75eeacc2da0d2156016a:418,each:[3,6,7,9,11,13,15,19,27,28,30,31,33,36,38,40,41,44,45,46,55,56,58,59,60,61,64,66,68,72,74,75,77,80,88,90,100,109,139,140,152,160,178,179,180,181,182,183,184,185,186,187,188,196,215,216,217,219,220,221,222,232,244,251,252,253,254,255,256,267,268,269,271,274,276,277,279,283,284,287,288,289,290,291,293,297,299,300,305,310,311,315,317,321,325,333,341,349,350,351,353,356,357,364,366,374,377,378,382,390,393,399,405,411,412,441,446,448,449],eachoth:3,eager:98,earli:[206,225,247,350,432,441,443],earlier:[18,48,72,97,147,153,154,164,191,199,200,251,252,253,254,255,256,267,268,287,301,350,448],earliest:[331,350],earmark:12,easi:[41,47,74,80,287,289,290,305,309,317,320,334,436],easier:[0,18,35,44,56,62,74,80,97,99,160,161,272,316,370,418,448,449],easiest:[40,59,72,350],easili:[6,53,56,58,59,74,272,293,360,443,449],eat:97,eaton:[440,444],ebai:156,ecdh:[146,160,350],ece:[98,375],echo:[97,268,313,329,421,422,424,425,427,429,430,431,446],ecparam:[160,350],edda:[202,205],edg:[152,207,209,210,211,212,213,214,215,216,217,234,235,236,248,249,258,259,264,265,266,350],edit:[49,51,52,72,87,268,290,293,301,315],edithead:[235,236,238,239,240,241,242,301,350,432],editor:[6,52],edu:[68,81,97,98,99,102,117,141,287,289,305,340,343,351,375],eest:374,effect:[5,9,30,36,55,56,63,74,93,97,107,160,193,268,275,279,289,301,310,314,350,370,407,432],efficaci:28,effici:[11,13,35,44,58,66,74,90,96,97,98,153,289,310,345,350,411,412,420,436,443],effort:[1,11,12,41,81,160,337],egd:98,ehlo:[268,350],either:[6,9,11,18,19,22,30,36,41,44,45,47,49,56,57,58,74,79,87,93,96,109,191,267,268,269,272,274,287,288,291,293,295,296,298,301,305,310,315,319,331,338,349,350,353,372,375,377,402,407,411,440,441,443,446,449],el6:27,el6_6:[82,83,84,86],el7:418,elaps:74,elect:440,electron:[432,443],eleg:56,element:[6,75,251,252,253,254,255,256],elfejoyeux:110,elimin:[11,35,56,97,98,105],elli:[48,72,276,444],elliefm:74,ellipt:[146,160,350],els:[0,47,48,49,55,57,58,59,72,74,75,80,87,340,349],elsewher:[15,55,75,293],email:[3,5,6,11,15,18,19,27,28,33,40,41,44,46,47,49,66,69,79,88,138,145,160,219,221,222,223,226,227,243,244,251,252,253,254,255,256,262,263,273,275,278,287,301,308,327,340,341,344,345,350,374,375,395,432,433,436,441,442,443,445,446,447,448],emailid:[251,252,253,254,255,256,278,350],emailsubmiss:[262,263,350],embarrass:39,embed:[6,350,375],emerg:[11,13],emiss:27,emit:[27,75,80,97,142,322,350,404,411],emori:102,emphasis:44,empir:[51,269,441],emploi:[19,26,271,310,340],employe:19,empti:[6,11,30,33,56,74,76,80,88,93,97,99,100,108,110,142,163,202,226,243,262,263,277,279,283,284,289,291,331,350,407,411],emtpi:88,emul:[88,350],enabl:[1,4,5,6,11,14,19,24,25,33,40,41,48,49,51,55,58,65,66,72,73,74,80,84,87,88,89,90,92,93,96,97,98,99,100,102,104,108,109,110,117,136,139,140,143,146,147,154,160,166,168,170,172,174,178,180,181,182,183,184,185,186,187,188,192,193,195,199,203,205,206,208,209,210,211,212,213,214,215,216,217,219,220,221,222,223,226,228,229,236,238,239,240,241,242,243,247,251,252,253,254,255,256,267,268,271,272,276,278,279,280,281,282,285,289,293,298,310,315,316,322,327,349,350,353,356,358,361,369,375,383,394,399,407,411,412,418,421,422,424,425,427,429,430,431,432,442,448],enable_event_notif:278,enable_experi:97,enclos:[97,349,350],enclosur:432,encod:[27,56,58,62,74,131,146,206,219,221,222,291,305,322,350,374,377,432],encompass:315,encount:[56,97,319,449],encourag:[81,268,287,417],encrypt:[5,18,36,55,93,97,268,289,350,380,382,394,396,399,421,422,424,425,427,429,430,431],enctyp:319,end:[3,11,27,28,40,44,45,55,56,58,63,64,68,71,72,74,75,80,88,89,92,96,97,108,138,139,160,267,268,287,291,314,315,320,331,340,349,350,353,356,374,375,412,418,443,448],end_command:68,endian:[98,191,199,223],endless:[26,268,325],endors:81,endpoint:[342,350],endscript:268,endus:61,energi:11,enforc:[5,36,58,84,327,350],engin:[6,44,56,58,61,64,97,203,238,240,241,242,268,279,284,350,374,411,412,414,439,443,448],english:350,enhanc:[11,71,81,98,99,100,125,146,158,189,191,302,432,443],ennabl:350,enorm:11,enospc:11,enotifi:[225,247],enough:[41,44,55,74,79,80,206,276,277,293,330,338,340,350],enrich:160,ensur:[5,8,11,18,19,24,25,36,39,45,46,47,48,49,58,59,72,80,82,83,84,86,87,96,97,100,108,109,163,219,220,221,222,224,229,246,267,268,276,287,289,291,293,310,314,331,349,350,398,411,440],enter:[48,72,80,82,83,84,86,87,268,301,350,366,379,449],enterpris:[2,12,13,81,269,314,436,443,448],entertain:33,entir:[11,25,33,41,44,49,52,55,58,59,74,75,87,99,102,108,131,145,251,252,253,254,255,256,267,269,276,278,282,287,289,291,293,305,314,331,350,369,372,373,387,393,411,441],entireti:[66,375],entiti:[3,5,287,291,432],entri:[5,6,25,36,40,41,56,57,58,64,74,75,76,96,97,102,128,139,154,164,173,196,203,204,232,244,251,252,253,254,255,256,267,268,273,274,276,279,280,281,283,284,287,289,291,293,295,301,305,310,315,327,349,350,356,357,358,366,367,369,372,375,387,395,400,401,404,411,446],entropi:[338,350],enum_valu:80,enumer:[317,350],env:158,envel:418,envelop:[27,40,41,58,97,98,100,142,251,252,253,254,255,256,278,301,322,350],envelope_length:47,envfromsmtp:40,enviro:100,environ:[3,4,11,13,19,25,33,35,36,42,44,45,49,52,65,80,99,109,120,121,142,160,178,179,180,181,182,183,184,185,186,187,188,189,203,223,246,276,286,289,310,315,316,340,345,350,356,387,432,436,443,445,446,447,448],envtosmtp:40,eof:[74,97,99,356],ephemer:[267,285,350,448],equal:[4,11,58,80,269,350,375,383,411,441,448],equat:11,equi:350,equiv:[41,274,352,448],equival:[11,56,267,287,322,350,351,409],era:441,eras:47,erat:[147,174,175,178,180,181,182,183,184,185,186,187,188],erdmann:324,erfrakon:136,eric:97,err:[41,56,100,313],errno:[68,99],error:[8,18,28,41,44,45,47,49,51,52,55,68,74,80,82,83,84,86,87,97,98,99,100,104,139,140,142,149,152,153,154,156,158,160,161,162,164,166,171,174,178,182,183,184,185,186,187,188,193,197,202,203,215,216,217,219,220,221,222,223,226,228,233,245,251,252,253,254,255,256,262,263,267,268,287,288,316,336,344,349,350,356,374,375,376,389,406,411,412,413,417,432,443,448],escap:[56,99,268,301,305,313,335,350,366,375],esearch:[87,136,158,350,442],esh:117,esmtp:[268,432],esort:[235,236,238,239,240,241,242,432,442],especi:[4,11,24,25,44,55,60,72,98,102,217,219,220,221,222,268,276,297,340,350,366,411],essenti:[49,58,267,289,315,319],establish:[11,13,18,82,83,84,86,87,279,289,315,316,350,440,448],etc:[2,5,6,7,9,11,18,31,33,36,40,41,47,49,51,55,58,63,74,75,87,91,95,97,98,99,267,268,274,279,281,283,287,289,290,293,295,297,301,303,309,310,311,312,314,315,324,337,348,349,350,351,353,355,357,358,359,360,361,362,366,367,368,369,370,371,372,373,374,375,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,399,400,401,402,403,404,405,406,410,411,412,413,414,415,416,418,421,422,423,424,425,427,429,430,431,433,436,444,446,448],eudora:[99,350],evalu:[11,219,220,221,222,235,236,238,239,240,241,242,251,252,253,254,255,256,261,262,263,287,448],even:[0,3,11,15,18,19,36,40,41,44,45,46,47,48,55,57,58,59,64,69,72,74,75,80,84,97,98,99,100,109,141,152,154,193,198,206,266,268,275,287,289,300,310,313,314,315,319,330,331,350,356,369,375,377,411,421,422,424,425,427,429,430,431,443],evenli:58,event:[1,13,15,19,24,25,44,51,55,58,61,68,73,74,81,88,95,96,99,104,109,126,142,161,164,169,170,192,223,226,227,228,243,251,252,253,254,255,256,268,270,276,281,293,298,305,310,312,315,331,350,356,358,374,387,405,411,432,448],event_content_inclusion_mod:[278,350],event_content_s:[262,263,278,350],event_exclude_flag:[278,350],event_exclude_specialus:[278,350],event_extra_param:[251,252,253,254,255,256,278,350],event_group:[278,350],event_notifi:[278,350],eventsourc:[178,180,181,182,183,184,185,186,187,188,251,252,253,254,255,256,350],eventsourceurl:229,eventu:[74,80,98,357,379,411],ever:[3,40,44,55,59,138,281,293,328,329,337,350,404],everi:[0,3,6,15,40,44,45,53,58,59,72,74,79,80,81,97,196,232,244,269,278,279,280,283,289,291,293,301,305,310,315,332,342,345,350,357,398,411,412,434,441,443],everydai:[11,40],everyon:[40,47,61,80,97],everyth:[11,44,48,58,72,74,80,178,179,180,181,182,183,184,185,186,187,188,199,215,216,217,219,220,221,222,251,253,254,255,256,267,276,278,288,289,303,315,334,350,448],everywher:44,evict:350,ex_softwar:47,ex_tempfail:[97,215,216,217,219,220,221,222],exact:[8,9,11,44,45,52,58,139,268,331,350,383,433,446],exactli:[11,26,44,52,74,79,109,268,275,311,350,383],exam:9,examin:[51,56,60,97,219,220,221,222,235,236,238,239,240,241,242,251,252,253,254,255,256,261,262,263,267,275,276,287,297,368,369,375,383,388,404,418,443],exampl:[1,3,5,7,9,11,18,19,28,36,38,40,41,47,51,54,55,58,66,69,72,74,75,80,87,88,89,91,92,96,97,108,160,189,267,268,273,274,275,276,279,280,281,283,284,285,287,289,290,293,298,299,301,303,305,307,308,309,310,311,313,314,322,331,333,334,341,350,375,443,446,448,449],example_of_freespace_most_selection_on_backend:9,example_of_freespace_most_selection_on_frontend:9,exampleisp:40,exce:[41,298,350],exceed:[27,441,445],excel:[314,340],except:[11,13,44,45,55,56,72,74,80,87,89,90,92,97,277,288,331,350,375,443],exchang:[5,36,79,287],exclud:[3,7,9,74,233,245,251,252,253,254,255,256,277,287,289,291,350,448],exclus:[4,11,19,30,40,44,45,47,52,57,58,59,74,97,275,356,445,448],exdat:76,exec:[158,428],exec_prefix:199,execfil:[229,428],execut:[8,11,74,75,80,93,97,99,100,178,179,180,181,182,183,184,185,186,187,188,267,275,281,293,312,314,331,334,350,356,375,387,391,392,449],exempt:[310,350],exercis:[11,310],exhaust:404,exim:[41,99,268,316,350,446,448],exim_dropcr:324,exist:[4,5,6,7,8,10,11,19,27,28,33,36,40,41,44,45,46,47,50,58,59,62,66,68,74,75,76,80,88,89,92,96,97,100,130,141,143,144,147,156,160,164,191,199,202,251,252,253,254,255,256,268,271,272,275,276,277,287,288,289,291,293,296,298,299,301,309,310,313,314,316,331,336,339,349,350,354,355,356,357,358,363,366,373,380,382,393,394,396,399,404,407,410,411,412,414,423,436,440,443,446,447,448],exists_cb:44,exit:[52,55,68,74,80,97,99,146,162,163,202,215,216,217,219,220,221,222,225,247,268,310,349,350,356,374,379,387,389,398,411,412,428],exitcod:97,expand:[11,56,88,350],expans:[11,58],expect:[0,9,11,18,30,47,49,72,74,80,84,96,98,142,160,193,194,231,233,245,268,275,276,287,289,349,350,355,357,433,442],expens:[11,28,47,58,75,102,276,287,331,350,394,404,407],experi:[0,26,97,160,203,268,287,316,350,448],experienc:325,experiment:[61,97,107,178,180,181,182,183,184,185,186,187,188,192,217,219,220,221,222,235,236,238,239,240,241,242,251,252,253,254,255,256,276,379],expert:[0,11],expertis:6,expg:[305,418],expir:[24,25,97,100,196,223,268,302,316,327,350,369,375,401,416,448],expirenew:100,expiri:[152,401],explain:[11,41,56,80,268,274,291,312,335,367],explan:[15,80,268],explicit:[0,62,108,231,349,375,404],explicitli:[9,30,47,49,56,61,88,107,208,209,210,211,212,213,214,215,216,217,219,220,221,222,251,252,253,254,255,256,268,269,275,277,301,350,407,411,432],exploit:[100,111,139],explor:289,explos:350,exponenti:[251,252,253,254,255,256,350],expos:[91,412],express:[41,49,52,55,56,98,301,350,356,432,445],expung:[13,24,41,46,47,58,61,74,88,97,102,103,109,110,121,122,136,137,139,141,142,153,154,160,164,216,217,219,220,221,222,272,275,276,279,283,284,287,293,300,305,308,311,316,350,364,369,374,375,407,411,418,448],expunge_mod:[25,41,102,209,210,211,212,213,214,215,216,217,219,220,221,222,275,300,305,331,350,418],expungeprun:[160,268],ext4:11,ext:442,extend:[62,75,87,99,136,140,161,162,178,179,180,181,182,183,184,185,186,187,188,208,209,210,211,212,213,214,215,216,217,219,220,221,222,262,263,268,301,350,370,390,432],extens:[27,47,49,56,68,75,90,97,98,100,102,106,114,136,140,160,166,178,180,181,182,183,184,185,186,187,188,189,193,235,236,238,239,240,241,242,251,252,253,254,255,256,268,275,289,327,331,340,350,423,432,436,443],extent:375,extern:[2,36,41,58,60,68,69,80,88,95,99,105,110,262,263,274,287,297,301,315,350,354,374,379,380,382,384,385,394,395,396,397,398,399,410,414,432,436,448],extlist:350,extra:[9,11,30,44,66,74,80,88,98,99,142,154,235,236,238,239,240,241,242,251,252,253,254,255,256,278,303,305,350,411,432],extract:[48,72,81,90,350,432],extractor:[225,247,350],extraid:99,extrem:[11,68,289],extutil:49,eye:[314,315],fa6558da:359,fabric:[164,203],face:[6,74,276],facil:[11,55,97,268,322,350,375,436,438,448],facilit:[11,25,38,117,160,289,293,331,350,418,440],fact:[0,3,5,19,36,55,98,268,283,287,289,331],facto:269,factor:[11,53,82,83,84,86,87,350,354,380,382,394,396,399,414],fail:[1,11,18,19,26,41,44,45,47,49,51,58,59,68,72,74,76,97,98,99,141,142,153,160,161,162,164,175,191,223,228,246,267,275,287,288,301,309,319,336,340,350,356,366,377,379,404,407,411,448],failedloginpaus:[156,350],failov:[11,61,267,340,350],failur:[3,6,11,41,44,45,58,68,72,74,80,99,127,141,145,147,150,153,158,160,162,164,173,176,191,196,202,203,223,229,246,267,268,270,276,286,291,298,301,310,340,345,350,358,366,417,448],fair:320,fairli:[44,97,328,446],fake:[55,79],fall:[11,19,88,152,192,287,310,350],fallback:[229,293],fals:[40,56,66,75,87,97,198,268,281,310,327,350,375,411],famili:[11,80,443],familiar:[11,53,64,66,267,276,320],family2:3,famou:[11,269,441],fanci:322,faq:316,far:[11,36,55,74,75,97,235,236,238,239,240,241,242,251,252,253,254,255,256,261,262,263,289,335,350,375,382,399],fare:331,fart:97,fashion:[11,40,55],fast:[28,44,51,56,58,74,99,269,279,314,317,337,369,404,411,421,422,424,425,427,429,430,431,441],faster:[10,11,44,45,55,99,100,126,160,178,179,180,181,182,183,184,185,186,187,188,199,267,270,281,287,290,302,349,350,404,446,448],fastmail:[27,44,99,102,104,105,106,107,121,122,154,160,178,179,180,181,182,183,184,185,186,187,188,196,232,244,251,252,253,254,255,256,278,350,444],fastmailshar:350,fatal:[47,55,68,97,99,226,350],fault:420,faulti:11,favero:206,favor:350,favorit:[11,160],favour:[6,175,178,179,180,181,182,183,184,185,186,187,188,310,350],fax:81,fc20:418,fc21:418,fcc:[350,432],fcntl:[44,59,74,99,233,245,314],fdatasync:99,feasibl:[11,74],featur:[7,9,11,14,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,34,35,36,37,38,39,48,49,52,56,58,71,72,75,88,93,97,99,152,164,165,166,190,191,192,193,199,205,206,207,209,210,211,212,213,214,215,216,217,219,220,221,222,233,234,235,236,238,239,240,241,242,243,245,248,249,258,259,262,263,264,265,266,269,271,276,277,287,289,298,310,314,318,322,329,344,350,369,375,380,404,411,412,437,438,440,441,442,445,447,448],feb:[27,79,305,336],februari:44,fed:[100,293,350,357,378,394],fedex:374,fedora:[2,12,70,81,82,83,86,316,418,448],fedoraproject:[11,418],fee183c329c011ead7757f59182116500776eaaf:74,feed:[11,13,64,93,97,100,310,350,378,394,432],feedback:[0,220,221,222,276,440],feeder:[100,394],feel:[11,72,79,91,267],feet:64,felix:[206,227,236,238,239,240,241,242,243],fenc:11,ferreira:444,fetch:[44,45,46,47,49,51,52,53,58,65,97,100,105,122,145,147,169,215,216,217,219,220,221,222,251,252,253,254,255,256,267,268,275,285,287,314,315,316,350,366,375,378,448],fetchlock:[44,45],fetchnew:[4,100,281,293,350,352,448],fetchnext:44,few:[3,5,11,36,41,46,52,55,72,80,96,97,133,158,276,279,287,289,314,315,320,339,340,350,434],fewer:[11,262,263],ffff:56,fiber:[3,11],fiddaman:[228,229,243],fiddli:74,field:[6,18,41,44,45,47,58,60,62,72,74,97,154,169,192,200,214,215,216,217,219,220,221,222,224,227,235,236,238,239,240,241,242,246,251,254,255,256,267,268,274,279,281,283,291,297,349,351,407,432,446,448],fifth:411,fig2dev:49,figur:[97,268,340,356],file:[1,2,3,4,9,10,11,12,18,19,24,25,30,31,34,35,36,40,44,45,46,47,48,49,51,53,54,55,56,57,59,64,68,72,74,75,77,78,80,81,87,88,91,93,97,98,99,100,102,106,108,109,120,122,128,131,137,138,139,143,145,152,153,155,156,157,158,160,164,173,176,178,180,181,182,183,184,185,186,187,188,189,191,193,199,200,202,236,238,239,240,241,242,251,254,255,256,270,274,275,283,285,288,290,293,295,298,300,301,305,308,309,310,311,313,316,319,327,328,331,337,339,341,345,349,350,355,365,375,376,386,391,392,408,417,420,421,422,423,424,425,427,428,429,430,431,432,436,437,446,447,448,449],file_sha1:74,filedescriptor:99,fileformat:362,fileinto:[19,33,75,99,106,160,166,193,229,301,348,350],filenam:[19,27,41,44,45,74,80,100,276,281,333,350,354,356,359,360,364,380,382,393,394,396,399,400,401,404,407,408,421,422,424,425,427,428,429,430,431,449],filesystem:[3,4,11,13,24,25,28,30,35,41,44,58,69,97,99,102,104,160,268,275,276,279,281,298,305,308,314,316,325,331,340,345,350,389,404,443,448,449],filip:268,fill:[47,53,55,68,97,156,267,350],filter:[13,19,44,45,63,93,96,109,126,131,143,206,268,281,287,293,295,301,350,411,432,436,438,446,448],find:[5,6,11,41,44,48,49,55,58,72,74,76,80,88,93,154,156,160,174,192,219,220,221,222,251,252,253,254,255,256,267,268,279,289,305,311,319,320,339,350,369,370,375,404,418,421,422,424,425,427,429,430,431],fine:[46,47,51,74,100,276,324],finer:276,finger:[97,379],finish:[11,42,44,45,47,58,59,61,72,74,85,98,267,305,349,448],finishproc:68,finishrock:68,fire:329,firewal:287,first:[0,6,9,19,30,41,44,45,49,51,55,56,57,58,59,66,68,71,72,74,80,88,89,92,97,98,126,140,154,155,158,160,174,198,225,247,251,252,253,254,255,256,257,267,268,269,274,276,277,280,282,283,287,289,291,298,301,305,308,310,319,323,327,331,333,336,339,341,344,350,351,357,360,367,369,374,380,382,398,399,403,404,407,411,412,441,445,446,449],fit:[4,74,80,81,448],five:99,fix:[41,44,48,49,51,56,58,71,72,74,80,88,96,97,98,99,100,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,125,127,128,131,132,133,134,137,138,139,140,141,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,178,179,180,181,182,183,184,185,186,187,188,209,257,267,276,290,322,323,344,369,390,403,404,405,420,433,440],fixdir:268,fixm:[41,74,274],flag:[6,15,19,27,38,40,41,46,47,51,55,57,58,59,61,63,65,68,74,75,78,90,97,98,99,100,104,110,117,127,136,137,138,143,152,160,161,162,191,214,215,216,217,219,220,221,222,225,247,251,252,253,254,255,256,267,268,272,275,276,278,281,288,301,305,310,314,327,350,363,369,373,374,375,383,388,404,411,412,413,417,418,432],flag_internal_expung:47,flagnam:[27,278,350,418],flaki:343,flap:157,flash:11,flat:[4,44,74,77,88,98,99,100,267,298,313,317,337,350,359,362,365,366,448],flatten:365,flaw:79,fleme:287,flex:[49,97,267],flexibl:[11,160,287,298,310,375,436],flight:268,flock:[59,74,99,233,245],flow:[26,27,74],flowchart:[1,73,448],flush:[74,78,97,102,233,245],flushseenst:[102,122,350],flux:11,fly:[19,58,122,156,350],fmt:68,focus:287,fold:[97,100,139],folder:[5,6,7,9,24,25,27,28,30,33,36,41,44,45,57,63,66,74,91,98,104,109,110,139,140,141,142,145,152,153,155,156,161,162,178,180,181,182,183,184,185,186,187,188,199,206,223,235,236,238,239,240,241,242,268,270,271,272,273,275,277,278,287,288,298,300,302,304,306,314,315,316,341,348,350,363,375,383,403,405,407,442,448],follow:[0,6,7,8,9,10,11,12,13,18,19,23,24,25,27,28,30,33,36,40,41,44,45,47,48,49,52,55,56,57,58,60,61,65,66,68,70,71,72,75,77,80,81,82,83,84,86,87,88,96,160,178,185,186,187,188,223,251,254,255,256,267,268,273,274,275,276,277,279,281,287,289,291,295,296,301,305,310,311,312,313,314,321,324,331,344,349,350,353,356,364,365,370,374,375,394,407,411,412,428,432,433,440,441,446,449],followup:[100,350],foo:[40,44,55,63,74,97,158,160,251,252,253,254,255,256,287,288,289,301,314,350,388,411],fool:331,foolproof:289,foolstupidcli:350,foot:11,footer:191,footnot:[11,27,36,160,331],footprint:[11,98],forb:81,forbidden:333,forc:[58,74,75,98,99,267,350,356,383,404,405,413,421,422,423,424,425,427,429,430,431],force_sasl_client_mech:350,forcibl:99,foreach:[44,45,74,76,109,176],foreach_cb:44,foreground:[108,412],foreign:[80,313],foremost:11,forerunn:[269,441],forese:7,forethought:55,forev:[59,160,275,350],forget:[53,301],forgiv:99,forgot:308,forgotten:[58,72],fork:[52,65,71,74,81,98,99,109,152,189,204,349,350,387,446,448],form:[5,40,41,61,75,81,87,88,97,267,274,291,314,331,349,350,354,375,380,382,394,396,398,399,407,414,443,448],formal:[223,226,243],format:[1,6,27,41,44,47,48,51,52,54,74,79,88,91,97,98,99,100,127,156,161,178,180,181,182,183,184,185,186,187,188,191,199,212,213,214,215,216,217,219,220,221,222,226,229,235,236,238,239,240,241,242,251,254,255,256,267,268,276,286,288,289,293,298,305,315,317,327,349,350,353,355,356,357,358,359,360,362,364,365,366,369,370,371,372,375,388,404,432,433,443,448,449],former:[11,15,96,160,268,295,331,349,446],formerli:[197,233,245],formul:11,forth:[11,268],forthcom:98,fortify_sourc:223,fortun:301,forward:[36,49,133,287,291,301,310,350,375,432,443],found:[9,30,44,49,68,71,74,76,129,130,132,133,145,154,164,268,269,287,308,313,316,318,340,350,386,404,436,441,445,446,448,450],foundat:160,founder:[51,441],four:[33,41,56,74,267,274,349],fourth:[310,357,411],fox:350,fpic:[49,51,80],fprintf:68,fqdn:3,fraction:[56,158,411],fragment:77,framework:[50,75,80],francoi:444,freakin:340,fred:41,free:[9,30,53,55,56,60,68,79,80,88,97,100,125,126,151,160,163,168,195,226,228,230,245,277,279,283,289,297,298,350,404,436,445],free_cr:97,freebsd:[12,139,157,267,281],freebusi:[93,350],freed:[59,68,100,291],freeli:100,freespac:[9,30,277,289,327,350],freez:[223,316,448],french:3,freq:350,frequenc:[97,285,310,311,332,350,398],frequent:[11,58,75,97,287,311,314,369,382,399,436,437,448],fresh:276,freshmen:441,fri:390,friend:[74,289,315],friendli:199,friendlier:122,fright:74,from:[2,3,6,7,9,11,13,15,18,19,24,25,26,27,28,30,33,35,36,38,40,41,44,45,46,47,48,49,51,52,53,55,56,57,58,60,61,64,65,66,70,71,72,74,75,79,80,84,88,89,90,92,96,97,98,99,100,102,104,105,108,114,117,122,125,136,137,139,141,145,147,150,152,153,155,160,161,162,163,164,166,169,170,171,172,173,174,175,176,178,179,180,181,182,183,184,185,186,187,188,189,191,192,193,197,199,200,201,202,203,204,205,214,215,216,217,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,235,236,238,239,240,241,242,243,244,245,246,247,251,252,253,254,255,256,257,261,262,263,269,270,275,277,278,279,281,284,285,287,288,290,291,293,297,301,302,303,305,308,310,312,314,315,316,319,321,322,324,327,328,331,333,334,339,340,341,345,349,350,357,360,362,363,367,369,370,371,374,375,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,394,395,396,397,398,399,400,404,405,407,409,411,412,414,416,417,418,423,428,432,433,436,440,441,442,443,448,449],front:[7,66,96,267,287,349],frontend:[3,4,7,36,87,88,91,100,102,109,122,132,141,157,160,192,203,267,288,289,290,291,315,340,345,350,379,385,393,397,446,448],frustrat:[55,449],fs_get:99,fs_give:99,fsck:11,fsync:47,ftp:392,fuch:98,fud:[97,98,99,158,352,448],fud_queri:379,fud_respons:379,full:[11,12,13,18,19,40,47,52,59,64,66,74,80,81,94,100,108,160,267,268,272,275,276,278,289,331,350,387,412,433,436,443,448],full_mboxnam:74,fulldirhash:[100,107,145,228,267,282,350,405],fulli:[3,11,19,33,36,40,41,56,80,160,275,277,287,301,303,340,350,375,394,405],fullnam:6,fulltext:411,fun:[74,220,221,222],functionproc:68,fundament:[40,49],further:[3,11,15,40,41,44,45,53,56,60,91,99,235,236,238,239,240,241,242,268,270,275,281,287,297,328,350,356,411,440,448],furthermor:[74,96,293],futim:228,futur:[7,11,40,44,49,62,74,79,97,160,161,175,214,215,216,217,219,220,221,222,286,288,289,337,344,350,353,375,411,440,443,448],fuzzi:[102,205,236,238,239,240,241,242,350,432,442],g0241b22:72,gahd:[192,194,206],gain:[66,268,314,443,446],game:61,garbag:[98,134],gardin:444,gari:[98,122],gate:226,gatewai:[100,293,443],gather:[99,285,350],gaubert:263,gave:[51,333],gcc:[49,65,80,98,110,141,162,178,182,183,184,185,186,187,188,192,201,243,245,319,321],gcm:[82,83,84,86],gdb:[51,80,316,329,350,448],geani:52,gen:58,gener:[3,4,6,15,19,25,41,45,46,48,49,51,52,53,58,72,74,80,84,85,88,97,98,99,100,152,160,178,181,182,183,184,185,186,187,188,207,209,210,211,212,213,214,215,216,217,226,234,235,236,248,249,251,252,253,254,255,256,258,259,264,265,266,267,276,277,278,279,287,289,290,298,302,310,315,328,329,338,339,340,345,350,354,356,358,370,382,387,388,399,403,411,412,421,422,424,425,427,429,430,431,432,434,436,442,448],generate_compiled_sieve_script:[160,350],gentoo:[12,81],geo:[198,225,247],geograph:11,geoloc:49,gesang:163,get:[0,1,2,7,9,11,18,19,27,30,41,44,45,47,49,50,51,52,53,55,56,58,59,64,66,68,70,72,74,76,79,80,82,83,84,86,87,88,97,100,125,131,132,133,141,204,223,226,247,251,252,253,254,255,256,267,268,276,277,278,287,288,289,301,312,316,319,327,332,340,350,366,370,375,392,404,407,411,415,423,428,432,433,436,440,446,448],get_stopp:231,getacl:[275,375],getannot:[214,215,216,217,219,220,221,222,350],getent:[268,446],getgrent:[41,274,350],gethostnam:350,getinfo:161,getmd:375,getmetadata:[161,175,192,263,275],getnameinfo:99,getopt:375,getpassphras:156,getprotobynam:379,getquota:[109,287],getquotaroot:[158,206,287],getservbynam:97,getuid:97,getxstr:99,ggg:268,ghudson:97,giant:350,gib:350,gibibyt:350,gif:350,gigabyt:[11,28],gilda:444,gile:154,git2:27,git:[2,48,49,51,52,53,65,71,72,125,137,153,154,160,162,168,178,181,182,183,184,185,186,187,188,195,203,208,209,210,211,212,213,214,215,216,217,235,236,249,259,265,267,268,433,448],github:[42,50,65,70,72,81,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,238,239,240,241,242,243,244,245,246,247,251,252,253,254,255,256,257,261,262,263,267,289,433,446,448],gitpython:[49,52],give:[0,11,13,26,28,40,41,44,45,47,51,58,72,74,79,80,87,97,98,137,268,272,277,287,289,291,293,298,305,322,330,350,403,404,412,443,446],given:[9,11,30,40,41,44,45,56,58,60,61,74,80,84,88,97,98,99,160,164,178,180,181,182,183,184,185,186,187,188,251,252,253,254,255,256,267,268,272,275,278,287,289,291,293,295,297,298,300,310,334,335,337,345,350,353,357,364,366,367,369,371,374,375,383,387,388,389,390,403,404,406,408,409,411,418,423],glaubitz:223,glib:350,glibc:[107,113,243],glob:[80,97,107],global:[3,5,7,40,44,45,58,80,102,160,178,179,180,181,182,183,184,185,186,187,188,268,272,301,302,327,375,415],gloom:445,glusterf:11,gmail:[110,359],gmt:[58,390],gmtime:58,gmtmoff_gmtim:97,gmx:140,gnarli:71,gnu99:[49,51],gnu:[49,65,80,268,375,446],goal:[441,443],god:340,goe:[15,33,48,55,72,97,293,315,331,332],goh:226,going:[7,11,44,51,52,55,74,160,287,290,316,417,444,448],gondwana:[154,440,444],gone:[74,97,267,331],good:[11,44,52,55,71,72,74,80,81,85,88,97,155,238,241,242,268,277,287,301,328,340,344,345,350,404,411],goof:98,got:[57,59,71,72,74,97,158,313,411],gotcha:[74,286,448],gouaux:[98,99],gov:99,govern:[69,279,439,448],gperf:[49,267],gpf:[316,448],gpfss:340,gpg:[48,72],gpl:80,grab:[74,97],gracefulli:[97,243],grade:[11,238,241,242,314],grain:100,gramar:199,grammat:350,grand:293,grant:[18,41,272,273,287,350,375,377],granular:[19,74,160,276,298,350],granularli:160,graphic:72,great:[7,41,51,71,160,268,269,340,441,445],greater:[19,25,47,100,102,298,350,411],greatli:[58,220,221,222],greenfield:[79,444],greet:[106,350],greg:[97,154,444],gregorian:432,grep:[18,305,366],greylist:418,groff:267,gross:97,group:[5,7,11,19,35,36,41,49,51,55,97,100,138,146,206,251,252,253,254,255,256,274,278,279,287,289,293,340,350,375,378,402,412,436,439,444,445,448],groupadd:[268,446],groupid:350,groupwar:[13,314,444],grow:[7,9,11,28,30,277,293,316,331,448],grown:80,growth:[287,342],grundman:444,gss:93,gssapi:[49,287,301],guarante:[5,7,44,47,55,56,81,84,108,267,287,289,443],guess:74,guest:11,gui:[22,81,88,89,93,340],guid:[0,7,9,11,40,41,51,52,55,58,61,66,70,71,74,80,81,90,94,96,104,136,160,161,178,183,184,185,186,187,188,206,267,268,271,276,279,285,289,291,294,298,315,320,350,364,388,404,407,411,418,436,437,442,447,448],guidanc:[1,72,267,436,440,448],guidelin:[0,440],guidsearch:[223,226],guilherm:444,guimard:[191,223,229],gut:72,gzip:[49,74,276,432],gzname:74,hack:[1,44,54,97,415,448],hacmp:340,had:[5,6,47,74,97,154,157,191,200,203,223,233,245,251,252,253,254,255,256,269,287,289,331,340,350,363,407,441],haferkamp:[160,444],hagberg:97,hajimu:100,half:[61,97],ham:27,hammer:154,hand:[11,60,97,108,141,269,272,276,287,297,350,441,449],handi:[44,80],handl:[6,15,41,44,47,55,59,68,72,74,97,98,99,100,110,113,114,122,129,130,131,133,136,137,138,139,146,147,152,153,158,161,169,171,176,178,179,180,181,182,183,184,185,186,187,188,193,199,201,202,206,208,209,210,211,212,213,214,215,216,217,219,220,221,222,227,228,235,236,238,239,240,241,242,243,251,252,253,254,255,256,262,263,268,275,276,287,290,310,324,340,349,350,395,421,422,424,425,427,429,430,431,436,443],handler:[202,229],handshak:6,hang:[97,197,229,233,245,290,316,342,448],hangup:387,happen:[3,4,11,44,47,48,55,58,64,72,80,97,108,268,286,289,291,319,321,343,350,357,433,442,448],happi:[131,340,404],happili:[11,47,74],hard:[36,41,44,55,97,98,156,162,300,350,385,397,421,424,425,426,427,429,430,431],hardcod:[191,219,220,221,222,251,252,253,254,255,256],harder:287,hardlink:157,hardwar:[11,58,72,238,241,242,287],harm:11,harmless:350,has:[0,3,5,6,7,9,11,18,19,26,27,28,30,33,36,38,40,41,44,45,47,49,52,53,56,58,59,61,70,74,75,76,79,80,85,86,90,91,93,95,96,97,98,99,100,102,106,107,109,154,158,160,162,166,174,176,178,179,180,181,182,183,184,185,186,187,188,193,196,197,203,206,209,210,211,212,213,214,215,216,217,219,220,221,222,232,233,235,236,238,239,240,241,242,244,245,251,252,253,254,255,256,261,262,263,267,268,269,272,273,275,276,277,278,279,281,282,287,289,290,291,293,298,301,305,308,309,310,312,314,315,324,325,331,334,336,340,349,350,353,356,369,370,375,379,388,390,398,407,411,412,418,436,440,443,444,449],has_chang:47,hasattach:350,hash:[59,74,76,97,98,99,100,104,196,232,244,267,268,270,276,279,318,350,387,405,406,448],hash_del:196,hashimapspool:[267,268,282,350,405],hashtabl:[9,30],hasn:[6,33,287,350,449],hasnochildren:[162,305,375],hat:[2,12,81,316,448],haustein:[151,168,195,230],hav:350,have:[0,3,5,6,7,8,9,10,11,15,18,19,22,24,25,27,28,30,33,36,40,41,44,46,47,48,49,50,51,52,53,55,56,57,58,59,60,61,65,66,69,71,72,74,75,76,77,80,81,87,88,89,90,91,92,93,96,97,98,99,100,102,107,139,156,160,164,165,166,174,178,181,182,183,184,185,186,187,188,190,191,192,193,199,205,206,209,210,211,212,213,214,215,216,217,219,220,221,222,223,227,244,251,253,254,255,256,262,263,267,268,269,273,274,275,276,277,278,279,280,283,284,285,286,287,289,290,291,293,297,298,300,301,304,305,308,309,310,311,314,315,316,319,320,321,325,329,331,332,335,337,338,340,341,343,344,345,349,350,353,356,357,360,369,370,374,375,383,387,404,405,407,411,418,433,436,440,441,442,443,444,446,448,449],have_acte_krb:97,have_libdb:97,haven:[18,51,98,100,334],hba:[3,11],hdd:[11,314],hdrfromsmtp:40,hdrsize:[388,418],head:[7,48,72,74,88,125,340,442],header:[12,41,47,49,59,66,75,78,80,97,98,99,100,113,117,120,122,131,132,133,134,138,139,140,142,146,147,161,169,178,180,181,182,183,184,185,186,187,188,192,206,212,213,214,215,216,217,219,220,221,222,224,226,227,228,230,246,251,252,253,254,255,256,278,279,283,284,293,308,311,314,316,319,350,357,360,364,371,377,383,388,390,394,404,411,432,448],headerbodi:[278,350],headerdata:58,headernam:58,health:11,heap:[80,350],hear:[11,70],heart:[58,349],heartbeat:350,heat:[269,441,445],heavi:[74,100,114,293,443],hei:44,height:350,heimdal:[107,267],heino:[98,139,146,158,161,173,174,444],heirarchi:[251,252,253,254,255,256],held:[18,35,44,45,52,57,58,71,74,75,100,139,356,435],hello:[61,98,268,388],help:[1,12,16,17,26,29,34,36,37,48,49,51,53,56,58,72,80,96,97,99,109,268,287,289,293,316,325,339,340,342,388,392,411,428,436,442,446,448],helpdesk:26,helpfil:52,hen:98,henc:44,henriqu:[99,100,137,444],henz:150,her:[19,33,48,72,76],herdomain:40,here:[11,12,15,19,27,33,40,41,44,45,47,48,51,53,56,58,61,63,72,74,80,87,96,97,98,100,160,268,276,279,281,284,287,289,293,298,313,317,325,331,339,349,350,413,432,442],herodotu:[269,441],heurist:[74,374],hex:[56,74,305,350],hexadecim:62,hhmm:349,hidden:[11,80,360],hide:[102,104,272],hierarch:[33,97,98,350],hierarchi:[11,13,19,22,24,27,30,33,34,41,63,69,72,74,88,89,91,92,97,98,99,104,105,160,161,163,251,252,253,254,255,256,273,277,281,287,293,298,299,301,305,306,331,350,375,388,404,443],hiersep:74,high:[7,11,15,36,97,102,267,270,287,293,311,314,316,322,338,378,387,439,448],higher:[11,15,19,27,30,49,298,310,325,350,354,380,382,387,394,396,399,414],highest:[6,30,58,388],highestmodseq:[74,122],highli:[56,235,236,238,239,240,241,242,269,340,345,443],highlight:[52,219,220,221,222,235,236,238,239,240,241,242,251,252,253,254,255,256,261,262,263,370,449],him:[28,301],hinder:[269,441],hint:[44,45,98,432,448],his:[3,28,33,36,76,77,98,269,287,441],hisdomain:40,histor:[350,411,441],histori:[436,439,448],hit:[56,74,75,98,268,276,350],hmac:350,hmh:[99,100,137],hoeger:[98,160],hold:[5,7,11,35,41,47,57,58,59,69,74,76,99,160,276,287,291,314,315,331,350,356,446],holdfor:227,holduntil:227,hole:108,holidai:39,holschuh:[99,100,137,444],home:[40,51,80,88,132,268,281,289,301,314,350,386,449],honest:268,honor:[97,98,441],honour:[165,235,236,238,239,240,241,242],hook:315,hope:0,hopefulli:[55,97,98,99,287],horizont:[12,36,41,286,289],horribl:[44,62,340,405],hors:[269,441],horsfal:[196,232,244],host:[3,4,11,18,36,40,41,68,96,97,268,276,287,289,293,295,296,310,313,314,315,322,340,344,349,350,351,384,385,393,397,407,433,434,436,444,446,447,448],hostmast:33,hostnam:[40,41,93,97,268,291,310,315,322,349,350,378,379,394,407,421,422,424,425,427,429,430,431],hostname_mech:350,hostname_password:350,hosts_access:349,hot:[276,279,315,345,350,358],hour:[48,57,72,74,80,97,109,267,268,293,310,342,349,350,356,369,401,411,418],hourli:[72,95,374],hous:293,housekeep:98,how:[0,1,7,9,11,24,30,31,33,41,45,46,48,49,51,53,56,57,58,66,69,70,72,74,79,80,81,88,90,93,94,96,97,98,152,160,251,252,253,254,255,256,268,274,276,277,279,283,288,289,290,291,293,298,299,310,312,315,316,331,340,342,350,356,379,433,436,448],howard:99,howev:[3,5,7,9,11,36,44,45,57,70,81,99,160,267,275,280,287,288,289,291,309,314,322,324,329,331,336,345,350,441],howto:[36,270,448],hps:98,hpux:97,href:128,hs256:350,hs384:350,hs512:350,hsk:[113,158],hst:432,html:[46,48,49,52,58,65,91,100,110,178,180,181,182,183,184,185,186,187,188,225,247,268,350,366,374],hton:97,http2:193,http:[18,49,51,53,55,65,66,70,72,80,81,87,88,89,92,131,133,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,210,211,212,213,214,215,216,217,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,236,238,239,240,241,242,243,244,245,246,247,251,252,253,254,255,256,257,261,262,263,266,267,268,285,287,289,350,380,394,421,432,436,448],http_h2_altsvc:350,http_jwt_kei:[251,252,253,254,255,256,350],http_jwt_key_dir:350,http_jwt_max_ag:[251,252,253,254,255,256,350],http_timezon:125,httpallowcompress:350,httpallowcor:[130,350],httpallowedurl:[129,350],httpallowtrac:350,httpcontentmd5:[132,350],httpd:[87,124,128,162,163,164,165,176,190,191,198,199,204,205,219,223,225,228,229,247,268,289,341,350,352,361,382,384,385,393,396,397,398,399,410,414,415,421,448],httpdocroot:[91,93,128,350],httpkeepal:350,httploghead:350,httpmodul:[66,88,178,179,180,181,182,183,184,185,186,187,188,268,285,350,398],httpprettytelemetri:[130,350],httppts_uri:[262,263,350],httptest:[352,448],httptimeout:350,hudson:97,huge:[46,74],human:[6,11,305,350],humili:11,hunch:74,hundr:[36,136,340],hung:[105,350],hunstock:[262,263],hurt:[99,305],husband:19,hybi:432,hypertext:432,hypervisor:11,hyphen:[74,449],hypothet:30,i18nlevel:432,iOS:[175,202],ian:[147,175],iana:[88,96],iat:350,ibm:340,ical:[51,198,202,225,247],ical_obj:[6,267],ical_uid:6,icalendar:[6,88,93,126,131,133,226,228,251,252,253,254,255,256,262,263,267,350,432],icalendar_max_s:[251,252,253,254,255,256,262,263,350],icu:[49,191,223],idea:[0,49,58,71,74,75,80,85,276,287,328,340],ideal:[11,38,57,74,75,267,276,287],idempot:315,ident:[5,41,44,45,74,97,274,301,318,350,353,421,422,424,425,427,429,430,431],identifi:[3,5,14,18,27,33,58,74,75,100,137,267,270,271,275,278,289,291,300,350,375,404,407,432,448],idl:[4,26,47,49,51,79,82,83,84,86,87,96,98,100,103,109,110,147,160,162,163,174,201,206,233,245,267,268,281,296,309,349,350,352,387,411,432,448],idlesocket:[96,268,281,296,350],ids:[6,97,163,215,216,217,219,220,221,222,276,350,406],idx_ical_uid:6,idx_sieve_nam:6,ietf:[23,66,90,102,131,235,236,238,239,240,241,242,251,252,253,254,255,256,262,263,301,327,350],ifdef:268,ifels:268,ignor:[41,72,76,89,92,97,98,108,122,164,191,229,233,243,245,251,252,253,254,255,256,275,349,350,351,365,369,377,379,380,395,404,407,432,449],ignorequota:[47,432],ignorerefer:350,ihav:[293,301,350,432],iii:[11,439,448],ill:[11,59],illustr:[3,11,36,41,52,275,310],ilovecyru:40,imag:[3,11,36,287,340,350,432,449],imagin:[11,28,280,283,314,340],imailbox:383,imap2:443,imap2bi:443,imap4:[56,82,83,84,86,97,269,275,312,432,439,448],imap4flag:[267,350,432],imap4rev1:[68,82,83,84,86,87,97,382,399],imap4rev2:[235,236,238,239,240,241,242],imap:[1,2,3,4,5,6,9,10,11,13,14,18,19,26,27,28,33,34,35,38,39,40,45,46,47,49,50,51,54,66,68,69,70,73,74,80,81,82,83,84,85,86,87,88,89,90,92,93,95,96,266,268,270,271,272,274,275,277,278,279,281,282,283,285,286,288,289,290,291,293,294,295,296,297,298,299,300,301,302,305,308,310,311,313,315,318,327,333,334,336,337,339,341,342,343,345,349,350,354,355,358,359,360,362,363,366,370,374,375,377,379,380,381,382,383,384,385,387,389,391,392,393,394,396,397,399,404,407,410,411,414,415,418,421,422,424,425,427,429,430,431,433,434,438,439,444,445,446,448],imap_:44,imap_current_stable_vers:448,imap_dupdeliv:58,imap_enum_virtdomains_on:80,imap_mailbox_lock:[47,59],imap_quotaroot_nonexist:97,imap_remot:333,imap_sharedseen:58,imap_uid:6,imapclon:199,imapd:[2,6,9,10,15,18,19,22,24,25,28,30,33,40,41,44,45,46,48,49,51,52,58,65,66,68,70,72,74,80,81,82,83,84,86,87,88,89,90,91,92,93,97,98,99,100,102,104,106,107,110,115,117,121,142,147,151,152,158,160,161,162,163,164,165,166,167,168,169,170,171,172,174,175,176,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,216,217,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,235,236,238,239,240,241,242,243,244,245,246,247,251,252,253,254,255,256,257,261,262,263,267,268,271,272,273,275,276,277,278,279,280,281,282,283,284,285,287,288,289,290,293,296,298,301,303,304,305,308,309,310,311,313,314,316,317,319,320,324,327,334,336,338,339,341,342,348,349,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,377,378,379,380,381,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,410,411,412,413,414,415,416,417,418,421,422,424,425,427,429,430,431,433,446,448],imapd_authst:46,imapd_conf:[268,446],imapd_out:46,imapd_userid:46,imapext:327,imapflag:[262,263,267,301,350],imapidlepol:350,imapidletimeout:[147,163,350],imapidrespons:350,imapmagicplu:[63,100,350],imapnew:303,imapopt:[262,263],imapopt_annotation_db:[44,45],imapopt_annotation_db_path:[44,45],imaprev1:136,imaptalk:51,imaptest:[70,154,442],imapus:[268,446],imaputf7:[51,267],imapv:97,imapwiki:70,imb:[113,158],imclient:[67,97,98,99],imclient_addcallback:68,imclient_authent:[68,97],imclient_clearflag:68,imclient_clos:68,imclient_conn_nonsyncliter:68,imclient_connect:68,imclient_eof:68,imclient_getselectinfo:68,imclient_havetl:68,imclient_proc_t:68,imclient_processoneev:68,imclient_repli:68,imclient_send:[68,97],imclient_servernam:68,imclient_setflag:68,imclient_starttl:68,imip:[178,180,181,182,183,184,185,186,187,188,251,252,253,254,255,256,350,432,448],imip_send:448,imipnotifi:[178,180,181,182,183,184,185,186,187,188,350],immedi:[11,15,24,25,30,41,58,59,66,74,75,102,104,109,141,156,160,233,245,275,291,331,332,338,350,356,374,398,407,440],immens:80,immut:432,impact:[5,7,8,11,96,277,287,310],imper:11,implement:[1,4,6,11,12,13,40,41,44,45,46,47,49,66,73,80,93,97,98,99,106,107,117,147,152,173,178,180,181,182,183,184,185,186,187,188,225,227,229,238,241,242,247,251,252,253,254,255,256,262,263,268,274,275,286,291,293,301,340,345,350,375,432,436,443,448],implementor:272,impli:[11,81,275,331,354,380,382,394,396,399,411,414,417],implic:[5,11,100,267,312],implicit:[3,5,56,99,161,246,350,375,411,448],implicit_owner_right:[41,273,350],implicitli:[41,88,273,350],implicitownerright:105,importantli:[11,443],impos:[41,97],imposs:287,impost:5,impract:11,impress:11,improperli:[97,322,350],improv:[55,58,80,97,98,99,100,104,139,142,145,160,162,169,176,178,179,180,181,182,183,184,185,186,187,188,199,200,209,210,211,212,213,214,215,216,217,219,220,221,222,235,236,238,239,240,241,242,251,252,253,254,255,256,262,263,267,282,287,290,350,366,442,443,448],improved_mboxlist_sort:[1,44,73,121,143,175,192,251,254,255,256,350,448],imsp:[97,98],imspd:97,imtest:[82,83,84,86,87,97,98,99,119,156,203,268,352,421,424,425,426,427,429,430,431,448],inabl:11,inaccur:[44,449],inact:[41,251,252,253,254,255,256,350,358],inadvert:[88,275],inbound:[276,315],inbox:[3,19,20,27,33,36,40,41,58,61,66,74,76,88,89,91,92,97,98,99,102,104,105,109,142,146,156,160,161,189,223,273,287,289,298,301,307,308,314,316,327,350,374,375,377,383,448],inc:86,incdir:[12,49,99],inclin:11,includ:[0,6,8,10,11,12,13,18,19,24,25,27,33,36,41,44,47,48,49,51,52,55,56,58,64,68,71,72,74,75,76,80,81,82,83,86,87,90,91,93,96,97,99,100,102,117,133,137,141,143,144,156,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,212,213,214,215,216,217,219,220,221,222,228,246,267,268,274,275,278,279,282,289,291,293,301,305,310,311,319,320,322,334,339,343,348,350,353,354,360,370,380,381,382,383,384,385,393,396,397,399,404,410,411,414,415,432,433,440,443,444,449],inclus:[24,25,53,136,178,181,182,183,184,185,186,187,188,287],incom:[19,88,90,100,236,238,239,240,241,242,268,287,288,290,293,298,301,316,325,345,350,387,412,441,448],incompat:[108,301],incomplet:[97,112,140,154,223,276,297,310,432],inconsist:[41,160,175,251,252,253,254,255,256,267,287,289,403],incorpor:[11,19,52,53,71],incorrect:[44,45,80,97,108,109,142,154,156,268,403],incorrectli:[97,99,161,226,251,252,253,254,255,256,388],increas:[10,11,35,44,56,58,99,104,108,156,162,251,252,253,254,255,256,289,290,310,332,345,350,356,364,387,398,407,411],increasingli:44,increat:156,increment:[59,74,75,97,106,178,183,184,185,186,187,188,411],incur:11,inde:[44,345],indefinit:[105,331,350],indent:[55,350,365],independ:[41,55,97,235,236,238,239,240,241,242,276,287,293,300,310,412,432,443],index:[1,4,11,18,25,31,41,43,44,47,56,57,59,61,75,78,88,97,100,102,106,108,120,122,136,138,145,147,152,153,156,158,164,175,191,205,212,213,214,215,216,217,219,220,221,222,223,235,236,238,239,240,241,242,251,252,253,254,255,256,262,263,267,275,276,279,281,283,284,300,301,302,305,310,311,314,315,322,327,331,337,350,356,357,366,371,375,388,390,404,411,432,448],index_check:98,index_clos:46,index_init:46,index_lock:46,index_open:46,index_record:[46,47],index_refresh:46,index_search_evalu:97,index_searchcachehead:98,index_st:46,index_statu:47,index_tellchang:46,index_tellexpung:46,index_unlock:46,index_upgrad:153,indic:[11,12,18,51,56,58,62,63,68,78,108,160,275,287,289,291,327,339,349,350,366,375,404,411,423,432,449],indirect:81,individu:[3,7,11,24,28,34,38,41,44,47,58,74,75,78,80,88,102,145,160,251,252,253,254,255,256,279,289,302,314,331,337,367,404,407,432,439,443,448],ineffici:[145,411],inet6:267,inet:268,inet_aton:379,inetd:97,inetdomainbasedn:350,infect:[95,216,217,219,220,221,222,350,374],infin:353,infinit:[11,141,156,204,319,350],inflict:61,influenc:[80,356],info:[11,33,38,41,51,58,72,74,97,98,99,191,293,299,301,305,306,319,320,350,369,388,432,434],inform:[3,5,6,7,11,12,14,20,21,22,24,28,34,35,36,38,41,47,49,51,53,58,61,64,68,70,72,74,88,90,95,97,99,106,137,152,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,209,210,211,212,213,214,215,216,217,219,220,221,222,233,245,268,270,274,275,276,278,279,281,282,287,291,298,301,310,315,334,337,339,340,341,348,350,357,364,370,371,373,374,375,379,387,388,390,402,404,405,407,411,420,421,422,424,425,427,429,430,431,432,433,448,449],infrastructur:[3,4,5,11,19,36,48,72,80,160,163,223,310,443],ingest:398,inher:[147,315],inherit:[33,41,166,192,193,293,350,369,375,411],ini:[51,225,247,334],inifil:[51,267],init:[46,52,55,74,80,267,268,446],initgroup:98,initi:[9,11,19,30,44,45,56,68,74,75,88,97,98,99,100,122,268,277,286,296,310,349,350,384,385,397,421,422,424,425,427,429,430,431,432,442,446,448],initialis:[44,59,80,374],inject:[156,327,375],inlin:[11,55,350],inmsg:68,inn:[97,293],inner:99,innosoft:322,inod:6,input:[44,47,53,60,68,74,80,97,196,232,244,297,354,356,357,360,362,377,380,382,384,385,393,394,396,397,399,407,410,412,415,418,421,422,424,425,427,429,430,431,449],inquir:440,insecur:432,insensit:[97,99,236,238,239,240,241,242,350],insert:[11,18,41,44,76,88,106,142,196,232,244,268,272,274,275,291,293,305,310,336,349,350,375,377,432],insid:[27,33,40,47,55,60,62,74,98,99,268,297,301,305,446],insist:49,inspect:[48,74,364,365,370],inspir:[98,109,122,276],instabl:321,instal:[2,3,7,11,12,19,40,41,42,44,49,52,61,65,70,72,80,82,83,84,85,86,87,88,93,94,95,96,97,98,99,100,110,160,164,178,179,180,181,182,183,184,185,186,187,188,190,193,200,202,203,270,286,293,302,305,314,315,319,320,334,340,350,374,375,391,421,423,424,425,426,427,429,430,431,436,437,447,448,449],installbinsymlink:[178,179,180,181,182,183,184,185,186,187,188],installsiev:[97,352,448],instanc:[3,9,11,13,30,52,56,65,68,88,91,97,160,267,274,277,289,293,310,315,325,340,349,350,355,407,411,446,448],instant:[11,432,444],instanti:289,instead:[11,18,19,25,36,41,44,47,52,53,55,56,58,66,71,72,74,75,80,90,96,97,98,99,100,109,160,162,163,178,182,183,184,185,186,187,188,197,202,215,216,217,219,220,221,222,228,233,245,251,252,253,254,255,256,267,268,275,282,287,289,290,310,327,331,335,344,348,350,359,360,375,378,383,384,385,387,392,396,397,403,404,407,409,412,421,422,423,424,425,427,428,429,430,431],instruct:[18,40,41,48,49,51,52,56,65,70,72,75,85,90,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,262,263,267,299,310,334,414,448],instrument:98,insuffici:287,insur:287,int64:51,int_dat:[388,418],integ:[6,9,30,55,56,58,62,75,80,97,115,174,277,349,350],integr:[5,50,51,53,65,80,87,88,97,100,102,163,164,178,179,180,181,182,183,184,185,186,187,188,350,354,380,382,394,396,399,414,421,422,424,425,427,429,430,431,436,442,448],intel:97,intellig:[160,277],intend:[1,3,11,12,41,44,66,90,231,243,276,286,289,390,443,446],intens:[11,312,360],intent:[15,25,80,365,370],inter:[40,42,448],interact:[11,44,45,52,97,100,105,141,235,236,238,239,240,241,242,268,287,293,340,350,360,375,402,421,422,424,425,426,427,428,429,430,431,432,446],interchang:[56,287,432,443],interest:[1,6,11,12,44,45,47,70,71,81,85,276,278,287,344],interfac:[7,11,36,40,41,45,46,49,53,58,66,68,96,97,98,100,208,268,272,274,295,296,303,322,349,350,379,446,448],interfer:[80,160,310],interleav:287,interm:97,intermedi:[11,75,97,214,215,216,217,219,220,221,222],intermediari:[251,254,255,256,360],intermeta:98,intern:[11,33,36,41,44,45,47,51,52,59,62,63,69,91,97,98,100,178,180,181,182,183,184,185,186,187,188,193,194,289,308,322,348,350,355,366,375,411,420,436,443,448],internal_flag:47,internald:[58,74,122,145,157,214,215,216,217,219,220,221,222,375,390,404],internaldate_heurist:145,internalindex:411,internation:[1,54,97,432,448],internet:[3,13,96,268,269,295,349,384,385,397,432,443,444,446],interoper:[96,208,209,210,211,212,213,214,215,216,217,219,220,221,222,432,436,437,448],interpret:[11,49,56,63,74,277,322,331,356,364,377,403,407],interrupt:[11,36,175],interv:[79,106,251,252,253,254,255,256,276,327,349,350,412,418,432],interven:[56,160,287],intervent:[231,243,276],intial:97,intimid:56,intra2net:140,intra:40,intro:[377,390,448],introduc:[11,24,25,50,61,74,80,99,100,154,160,191,200,262,263,267,275,310,357,361,363,367,369,370,372,374,380,404,411,412],introduct:[1,42,270,363,436,446,448],intuit:5,invalid:[47,62,74,97,98,138,139,163,189,226,228,251,252,253,254,255,256,276,322,350,360],invari:[57,98],invent:[269,441],inventor:269,inventori:432,invert:383,invest:11,investig:80,invis:[191,275],invit:[88,350],invoc:[52,276,302,310,356,364,398,412,418],invok:[15,41,68,99,147,268,270,276,301,308,310,350,354,356,374,375,380,382,384,385,393,394,396,397,399,410,411,415,446,448],involv:[0,13,55,98,100,143,267,290,337,442],ioerror:[189,193,404],iolog:350,ionic:411,iov:80,iov_bas:80,iov_len:80,iovec:80,ipaddr:379,iphon:[142,158],ipop3d:142,ipsum:80,ipurg:[52,98,99,109,138,152,176,189,192,206,352,448],ipv4:[349,350,407],ipv6:[99,100,349,350,407],irc:444,irk:74,irrelev:19,irretriev:331,irrit:449,is_tacki:55,isact:6,isc:392,isched_send:448,ischedul:[93,124,200,268,350,432,448],ischedule_dkim_domain:350,ischedule_dkim_key_fil:350,ischedule_dkim_requir:350,ischedule_dkim_selector:350,iscsi:3,ish:72,isn:[0,11,18,44,45,47,55,56,58,59,71,74,97,100,126,147,178,180,181,182,183,184,185,186,187,188,268,289,305,338,344,346,444],iso8601:51,iso:[27,56,97,219,221,222,223,350],isod:444,isol:[80,287],issu:[11,27,36,41,44,48,49,61,66,68,71,72,74,82,83,84,86,87,97,98,99,100,103,104,105,106,107,108,109,114,117,120,121,122,140,147,150,151,154,156,160,162,163,164,166,167,168,176,178,181,182,183,184,185,186,187,188,189,190,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,215,216,217,219,220,221,222,223,224,225,226,227,228,229,230,231,233,238,240,241,242,243,244,245,246,247,251,252,253,254,255,256,257,262,263,267,268,275,277,287,289,291,306,312,314,331,336,350,388,404,421,422,424,425,427,429,430,431,433,440,448,449],issubscrib:66,ital:52,itchi:55,item1:277,item2:277,item3:277,item4:277,item:[6,11,33,40,41,47,57,58,60,62,74,76,105,155,178,179,180,181,182,183,184,185,186,187,188,215,216,217,219,220,221,222,276,281,297,315,350,436,447,448],iter:[44,45,47,58,72,99,194,195,229,310,411,432],iter_skip_expung:47,itip:[88,350,432,448],its:[3,5,6,9,11,15,30,31,36,40,41,44,45,49,52,53,60,61,64,65,71,74,76,88,93,97,149,173,176,192,217,219,220,221,222,238,241,242,251,252,253,254,255,256,262,263,267,268,269,272,273,274,275,276,277,278,279,281,283,285,287,289,290,291,293,297,298,301,309,310,315,324,331,332,349,350,353,354,355,356,357,358,359,360,361,362,364,365,366,367,368,369,370,371,372,373,374,375,377,378,379,380,381,382,383,384,385,387,388,389,390,393,394,395,396,397,398,399,400,401,402,403,404,406,407,410,411,412,413,414,415,416,417,418,441,445,449],itself:[6,11,35,41,46,52,55,69,70,74,80,82,83,86,87,97,99,192,219,220,221,222,278,279,281,289,310,315,321,331,349,350,375,387,398,411,412,434,446],iversen:97,j16:51,jack:268,jakob:[192,194,206],jame:33,jan:[154,375,388],jane:[3,18,19,27,33,36,403],janepas3:18,janepass:18,janitor:387,jansson:[49,133,162],januari:61,japanes:66,jarosch:[113,140,172,174],jarosh:147,jason:[199,205],javascript:[91,432],jbro:350,jcal:[133,432],jdoe:[3,5,19,308],jean:444,jeff:97,jeffrei:[226,440,444],jen:[147,174,175,178,180,181,182,183,184,185,186,187,188,444],jena:[113,158],jeremi:[99,102],jeroen:[163,440,444],jessi:49,jhoward:99,jim:97,jimson:98,jj12:351,jmap:[6,13,42,93,178,179,180,181,182,183,184,185,186,187,188,189,199,200,203,209,210,211,212,213,214,215,216,217,219,220,221,222,227,228,229,235,236,238,239,240,241,242,244,245,247,251,252,253,254,255,256,262,263,278,322,350,432,436,442,448],jmap_emailsearch_db_path:350,jmap_guesstz_fnam:[262,263],jmap_imagesize_annot:350,jmap_inlinedcids_annot:350,jmap_mail:[225,247],jmap_mail_max_size_attachments_per_email:[262,263,350],jmap_max_calls_in_request:350,jmap_max_catenate_item:350,jmap_max_concurrent_request:350,jmap_max_concurrent_upload:350,jmap_max_delayed_send:350,jmap_max_objects_in_get:350,jmap_max_objects_in_set:350,jmap_max_size_blob_set:[262,263,350],jmap_max_size_request:[262,263,350],jmap_max_size_upload:[262,263,350],jmap_nonstandard_extens:[217,219,220,221,222,223,226,235,236,238,239,240,241,242,243,350],jmap_preview_annot:350,jmap_preview_length:[262,263,350],jmap_pushpol:[251,252,253,254,255,256,350],jmap_querycache_max_ag:350,jmap_set_has_attach:350,jmap_vac:350,jmapemail:[251,252,253,254,255,256,278,350],jmapnotif:350,jmapnotificationfold:350,jmappushsubscript:350,jmappushsubscriptionfold:350,jmapqueri:[235,236,238,239,240,241,242,350],jmapsearch:350,jmapstat:[278,350],jmapsubmiss:350,jmapsubmission_deleteonsend:350,jmapsubmissionfold:350,jmaptalk:51,jmapuploadfold:350,jmp:56,job:[41,64,74,97,160,276,285,310,331,349],john:[3,5,19,27,28,33,36,69,97,98,102,150,176,223,228,305,307,310,311,335,353,355,375,403,418,444,449],johnsmit:418,johnsmith:[370,418],join:[7,71,74,268,316,435,448],jonathan:202,josh:199,journei:[269,441],jpeg:350,jscalendar:350,jscontact:90,jsmith:[74,371,388,389,390,404,406],json:[66,74,90,93,251,252,253,254,255,256,267,350,356,360,364,365,403,432],jsr:56,jtampli:102,judgement:[11,55,340],jul:[388,390],juli:289,julian:80,julien:[113,139,146,158,160],jump:[56,75],jun:64,june:55,junk:[19,173,251,252,253,254,255,256,278,301,350,373,375],just:[0,3,9,11,18,36,39,41,44,46,47,48,51,52,55,58,59,61,62,71,72,74,75,76,80,97,98,99,108,156,173,191,205,215,216,217,219,220,221,222,251,252,253,254,255,256,267,268,276,282,284,286,287,288,289,291,302,310,319,324,325,327,330,340,350,356,404,405,406,411,413,446],justgotspammedlot:369,justifi:[71,311],jwz:98,jy9o:351,jyager:351,kamen:202,katu:139,kbyte:[6,52,383],kcyru:268,kde:11,keep:[12,15,26,41,44,45,46,47,53,55,56,57,58,74,75,87,88,97,98,104,129,160,196,229,232,244,246,251,253,254,255,256,267,268,276,277,279,287,290,293,314,315,316,331,340,350,378,404,407,417,432,443,448],keepal:[138,350],kei:[4,5,27,33,41,48,61,68,72,76,80,98,160,196,216,217,219,220,221,222,223,232,244,268,278,279,281,289,315,319,350,366,421,422,424,425,427,429,430,431,448,449],ken:[79,97,98,99,141,319,440,444],kept:[7,74,99,178,180,181,182,183,184,185,186,187,188,267,276,287,289,293,332,337,350,415,423],kerber:[96,268,295,396,446],kerbero:[5,13,49,68,93,97,289,319,350,351,432,443,448],kerberos_v4:[41,287,289,301,421,422,424,425,427,429,430,431],kernel:[11,314,329],key1:62,key2:62,key3:62,key_fil:68,keyboard:68,keycap:449,keyfil:[173,375,421,422,424,425,427,429,430,431],keytab:5,keyword:[41,55,75,97,275,335],kib:[9,30,277,289,350],kibibyt:[15,19,298,350],kick:[11,33,36],kick_mupd:141,kiev:374,kill:[110,198,225,247,340,387],kilobyt:[34,41,300,375],kind:[6,10,33,44,57,74,80,268,278,331,350,432],kinda:[51,56],king:51,kingdom:445,kirk:33,kleinespel:444,kmurchison:74,knight:40,know:[3,5,7,9,30,31,40,41,44,47,49,51,55,56,71,72,74,79,93,109,267,268,275,276,277,283,287,301,303,315,319,350,382,399,411,433],knowledg:97,known:[4,5,7,11,19,27,33,44,49,56,58,68,70,74,80,88,90,133,158,268,276,287,301,315,356,364,370,377,407,436,447,448],kolab:[27,314,444],kolab_3:27,kolbu:444,konold:136,korean:66,korreio:81,kpop:[13,35,41,96,97,268,289,295,396,443,446],kravchenko:98,krb5:[49,316,350,448],krb5_enctyp:319,krb:[41,274,350,352,448],krb_pt:97,krb_sasl_client:68,krbck:97,krbimpl:49,kristof:[139,444],kssl:[316,448],kssl_build_principal_2:319,kssl_cget_tkt:319,kssl_check_auth:319,kssl_ctx:319,kssl_ctx_setkei:319,kssl_ctx_setprinc:319,kssl_ctx_setstr:319,kssl_sget_tkt:319,kssl_validate_tim:319,kthxbye:55,kueck:190,kxte:[82,83,84,86,87],label1:350,label2:350,label3:350,label:[55,56,251,252,253,254,255,256,303,322,350,449],lack:[11,55,100],lag:[9,30,277,289,350],lai:11,laid:52,lam:375,land:[44,66],languag:[49,56,66,96,223,236,238,239,240,241,242,268,295,301,350,432,436,438,446,448],lappend:97,laps:[9,30,277],larg:[7,9,11,13,18,24,25,27,28,30,33,36,55,56,74,97,98,99,100,102,136,207,209,210,211,212,213,214,215,216,217,234,235,236,238,239,240,241,242,248,249,258,259,264,265,266,267,268,276,277,278,279,287,290,305,312,314,316,325,331,340,350,356,369,394,411,412,436,440,443,445,448],larger:[4,11,15,19,33,36,56,100,276,287,311,350,383,412],largest:[11,15,41,133,160,277,350,445],larri:[99,444],last:[6,39,44,47,58,60,61,72,74,97,100,162,238,241,242,251,252,253,254,255,256,267,280,283,301,310,327,350,375,378,379,388,411,418,432],last_appendd:74,last_chunk_id:74,last_uid:[74,200],last_upd:[47,74],lastchang:74,lastpop:[100,327],lastread:74,lastuid:74,lastupd:[6,327,388,418],latch:350,late:[74,97],latenc:[11,251,252,253,254,255,256],later:[11,24,25,56,65,72,74,80,97,102,104,147,160,178,182,183,184,185,186,187,188,191,262,263,267,268,269,276,277,296,298,311,314,322,324,331,350,418,441,443,445,446],latest:[12,49,51,72,81,88,97,100,266,267,287,315,320,350,356,404,436],latter:[15,74,287,305,338,349,350,411],launch:[436,447,448,449],lauri:444,lawrenc:79,layer:[1,5,11,36,41,44,54,79,87,93,97,98,99,107,108,270,311,350,354,380,382,394,396,399,414,421,422,424,425,427,429,430,431,432,436,448],layout:[97,298,310,311,350,448],lazi:[74,97,268],lcunit:80,lcyru:68,ldap:[5,11,13,41,49,51,100,160,268,274,287,350,402,448],ldap_authz:350,ldap_bas:350,ldap_bind_dn:350,ldap_ca_dir:[160,350],ldap_ca_fil:[160,350],ldap_ciph:[160,350],ldap_client_cert:[160,350],ldap_client_kei:[160,350],ldap_deref:350,ldap_domain_base_dn:350,ldap_domain_filt:350,ldap_domain_name_attribut:350,ldap_domain_result_attribut:350,ldap_domain_scop:350,ldap_filt:350,ldap_group_bas:350,ldap_group_filt:350,ldap_group_scop:350,ldap_id:350,ldap_mech:350,ldap_member_attribut:350,ldap_member_bas:350,ldap_member_filt:350,ldap_member_method:350,ldap_member_scop:350,ldap_password:350,ldap_realm:350,ldap_referr:350,ldap_restart:350,ldap_sasl:350,ldap_sasl_authc:350,ldap_sasl_authz:350,ldap_sasl_mech:350,ldap_sasl_password:350,ldap_sasl_realm:350,ldap_scop:350,ldap_serv:350,ldap_size_limit:350,ldap_start_tl:350,ldap_time_limit:350,ldap_timeout:[162,350],ldap_tls_cacert_dir:[160,350],ldap_tls_cacert_fil:[160,350],ldap_tls_cert:[160,350],ldap_tls_check_p:[160,350],ldap_tls_ciph:[160,350],ldap_tls_kei:[160,350],ldap_uri:350,ldap_use_sasl:350,ldap_user_attribut:350,ldap_verify_p:[160,350],ldap_vers:350,ldflag:65,lead:[19,27,62,69,287,289,310,338,350,375,443,444],leader:61,leak:[51,55,58,80,88,97,98,99,100,122,129,130,132,133,143,147,160,163,164,168,169,195,199,206,230,247],leap:[88,350],learn:[0,11,268,293,320],least:[3,11,44,56,65,66,74,80,87,100,262,263,267,268,275,276,279,283,287,289,310,314,322,331,339,349,350,351,353,354,369,383,390,404,411,446],leastfre:30,leav:[24,47,51,59,72,75,80,88,89,92,108,110,175,251,252,253,254,255,256,289,319,350,387,418],led:44,lee:[173,175,178,180,181,182,183,184,185,186,187,188],leena:[98,139,146,158,161,173,174,444],leewai:350,left:[61,74,97,102,120,145,226,251,253,254,255,256,289,310,314,322,350,377,407,421,422,423,424,425,427,429,430,431,444,449],legaci:[6,41,49,136,174,181,208,209,210,211,212,213,214,215,216,217,219,220,221,222,275,350,360,363,389,390],legal:[44,45,81,99,432],lemonad:432,len:56,length:[41,44,45,55,56,58,74,75,97,100,114,268,305,350,379],lengthen:310,less:[6,9,10,11,30,48,55,74,96,98,132,133,155,161,191,267,276,277,281,287,310,314,331,350,356,404,411,443],lessen:98,let:[11,36,44,45,61,74,80,97,219,220,221,222,267,268,276,280,283,289,446],letter:[41,282,287,333,350],level:[1,3,27,33,36,41,47,58,72,74,97,98,99,141,178,181,182,183,184,185,186,187,188,251,252,253,254,255,256,267,268,270,285,287,289,299,308,314,321,348,350,375,387,407,411,439,440,448],levenshteinx:51,leverag:310,lex:[49,51,75,97,100],lexer:[97,98],lhlo:106,liabl:81,lib64:321,lib:[11,12,44,45,49,55,56,65,74,80,97,98,160,267,268,281,298,301,305,308,309,310,311,313,314,319,321,339,350,360,362,366,381,391,411,412,446],libacap:98,libanyev:51,libari:97,libbrotli:49,libbsd:[49,51,267],libc:80,libcal:51,libcap:194,libchardet:49,libclamav:[49,321],libcld2:49,libclon:[51,267],libcom_err:97,libcomerr2:87,libconfig:[51,267],libcrypto:321,libcunit1:[49,80,267],libcunit:80,libcurl:350,libcyru:[44,55,68,80,97,99,100,193],libcyrus_imap:[49,190,199],libcyrus_init:55,libcyrus_min:[44,100],libdata:51,libdatetim:[51,267],libdigest:267,libdir:[12,49,99],libencod:[51,267],liber:350,libexecdir:[178,179,180,181,182,183,184,185,186,187,188],libfil:[51,267],libglib2:267,libic:[49,88,93,125,176,198,219,220,221,222,225,247,267,268,350],libicu:49,libimap:55,libio:[51,267],libjansson:[49,267],libjson:51,libldap2:[49,267],libmag:51,libmariadb:49,libmim:51,libmysqlcli:[49,267],libnet:[51,267],libnew:[51,267],libnghttp2:[49,193],libpam0g:267,libpcre3:[49,267],librari:[0,12,41,42,49,51,66,70,80,81,95,97,98,104,139,140,145,155,156,205,267,268,319,321,343,350,421,422,424,425,427,429,430,431,434,448],libressl:[150,164,203],librt:[164,199],libsasl2:[49,87,267],libsasl:[97,98],libsqlite3:[49,267],libsrs2:49,libssl:[49,267,321],libstr:51,libtest:[51,267],libtext:51,libthread_db:80,libtool:[49,80,97,267,334],libunix:[51,267],liburi:267,libuuid:[49,74],libvex:80,libwrap0:267,libwrap:98,libwrap_init:98,libwslai:49,libxapian:[49,267],libxml2:[49,133,267],libxml:[49,51,191,267],libzephyr:267,licens:[2,27,66,268,278,436,448],lies:315,life:[84,200,349,433,449],lifetim:[416,448],light:[11,80,96],lighter:75,lightweight:[96,268,291,295,296,446],liinu:98,like:[0,3,5,7,11,15,16,17,18,19,26,29,30,33,34,36,37,41,44,45,46,47,48,51,52,55,58,60,62,68,72,74,78,79,80,87,96,97,121,191,203,236,238,239,240,241,242,267,268,274,275,276,278,280,287,288,289,291,293,297,301,305,310,313,315,319,320,321,325,334,336,340,349,350,354,358,360,366,374,379,380,381,382,384,385,393,396,397,398,399,404,407,410,412,414,415,421,422,424,425,427,429,430,431,442,446,449],likelihood:11,likewis:[55,57,97,98],limit:[4,5,6,7,10,11,12,15,33,36,41,74,81,87,91,93,97,110,138,160,163,166,191,193,235,236,238,239,240,241,242,251,252,253,254,255,256,268,270,277,289,298,299,300,325,349,350,355,357,375,388,403,411,436,440,447,448],limitless:342,lin:140,line:[11,18,41,48,49,51,55,58,65,66,71,72,80,87,96,97,98,106,138,154,160,200,262,263,268,269,274,276,289,291,293,295,301,303,305,310,315,324,331,333,334,343,349,350,351,353,356,360,362,366,371,372,374,382,388,391,399,404,407,411,418,441,446,448],liner:305,lingual:432,link:[9,11,41,42,44,48,49,52,55,61,68,78,79,80,88,97,98,109,205,227,277,279,281,300,310,315,321,338,343,350,385,397,421,424,425,426,427,429,430,431,432,434,443,448],linkag:[72,74,315],linkend:9,linker:321,lint:[219,220,221,222,267,370,442],linux:[2,11,12,18,19,49,65,81,84,97,99,229,268,281,302,314,316,321,329,342,343,433,446,448],list:[0,3,4,5,8,9,10,11,12,13,14,19,30,33,36,40,44,45,47,48,49,51,55,56,58,61,63,64,65,66,72,75,79,80,81,82,83,84,86,87,88,89,90,92,93,96,97,98,99,100,104,121,122,130,132,133,136,140,141,142,146,155,156,157,158,160,161,162,163,164,165,166,175,176,178,179,180,181,182,183,184,185,186,187,188,190,191,192,193,198,199,200,201,205,206,208,209,210,211,212,213,214,215,216,217,219,220,221,222,244,267,268,270,271,272,273,274,276,277,278,279,281,283,288,289,293,295,296,299,301,305,308,310,312,314,315,318,320,331,336,337,339,340,343,348,349,350,353,355,360,362,364,366,367,370,371,375,389,390,391,392,400,403,404,406,407,411,412,418,420,423,428,432,433,436,438,440,442,443,444,446,448,449,450],list_curv:[160,350],list_fe:129,list_opt:74,listacl:375,listaclmailbox:41,listaclmamilbox:41,listen:[18,74,87,96,98,164,203,268,276,278,281,287,289,291,293,295,296,301,303,310,315,342,349,350,354,379,380,382,384,385,387,393,395,396,397,399,410,411,414,415],listext:[82,83,84,86,98,136],listmailbox:[40,161,305],listquota:41,listquotaroot:[41,306,307],listright:[275,375],liter:[3,33,36,44,62,68,82,83,84,86,87,97,99,139,156,235,236,238,239,240,241,242,291,350,432,449],literal8:44,literalminu:350,littl:[44,72,74,79,97,98,122,314,337],live:[6,11,36,44,47,56,61,74,77,80,92,97,99,160,267,268,282,287,289,301,342,350,360,379,381],liveli:[74,276],lkxan:350,lmr:99,lmtp2nntp:[293,350],lmtp:[8,40,58,63,64,74,87,96,97,98,99,100,105,113,138,142,161,244,268,275,281,287,289,290,293,295,296,303,308,315,336,345,349,350,377,380,382,384,385,393,396,397,399,410,414,415,424,432,446,448],lmtp_admin:[41,100,289],lmtp_allowplaintext:100,lmtp_catchall_mailbox:350,lmtp_downcase_rcpt:[99,336,350],lmtp_exclude_specialus:350,lmtp_fuzzy_mailbox_match:[102,350],lmtp_over_quota_perm_failur:[41,298,350],lmtp_prepars:[236,238,239,240,241,242,350],lmtp_strict_quota:[41,298,350],lmtp_strict_rfc2821:350,lmtpa:27,lmtpd:[19,40,41,87,98,100,102,146,147,149,156,161,166,174,193,200,202,203,206,223,226,229,268,281,289,296,298,301,310,315,325,329,332,334,349,350,352,359,377,380,382,385,387,393,395,396,397,399,410,412,414,415,424,448],lmtpengin:[98,100],lmtpproxyd:[87,99,100,102,288,289,290,325,352,448],lmtpsocket:[96,268,281,296,350],lmtptest:[99,352,448],lmtptxn_timeout:350,lmtpunix:[27,87,268,336,349,380,382,384,385,393,396,397,399,410,414,415],load:[5,7,36,44,45,49,72,74,76,77,100,114,139,236,238,239,240,241,242,267,280,281,283,290,293,301,315,340,349,350,360,374,375,411,436,438,443,448],loader:[49,281,296,402],loc:173,local0:350,local4:97,local6:[41,97,268],local7:350,local:[3,5,6,7,11,36,40,49,53,59,61,65,72,74,80,88,97,100,102,103,122,174,193,198,225,247,257,267,268,274,277,281,286,287,289,291,293,296,310,315,329,340,350,351,355,358,360,375,389,407,412,432,441,443,445,446,448],local_config:268,local_localaddr:268,local_onli:74,local_rule_0:293,local_ruleset:268,localaddr:268,localdef:319,localdomain:301,localhost:[18,28,41,66,82,83,84,86,87,268,290,293,301,349,350,375,378],localpart:[40,163,267],localtim:305,locat:[6,7,12,27,31,36,41,44,45,48,51,56,72,74,75,80,88,93,96,97,99,122,191,267,268,270,276,285,287,288,289,290,291,293,294,300,305,311,314,329,350,357,358,359,360,361,362,366,368,371,388,389,406,408,432,446,448],lock:[1,4,5,6,11,44,45,46,54,64,80,88,96,97,99,100,106,109,133,136,142,146,147,158,172,193,215,216,217,219,220,221,222,233,236,238,239,240,241,242,245,251,253,254,255,256,262,263,267,268,279,281,283,287,316,325,333,340,345,350,411,412,448],lock_debugtim:350,lock_exclus:[47,59],lock_expir:6,lock_nonblock:59,lock_opt:74,lock_own:6,lock_ownerid:6,lock_shar:[47,59],lock_token:6,locker:99,lockfil:333,locktyp:59,lodg:0,log:[3,5,11,13,18,19,40,44,45,49,51,53,58,64,65,74,97,98,99,100,104,108,109,117,131,134,136,141,142,152,160,162,166,193,200,202,235,236,238,239,240,241,242,245,251,252,253,254,255,256,267,268,276,281,293,301,310,316,341,350,354,356,358,366,370,372,380,382,383,387,393,394,395,396,399,411,412,418,433,443,448],log_debug:350,logfil:387,logic:[3,5,7,11,46,55,56,97,152,158,358,383],login:[3,5,18,19,40,49,58,63,82,83,84,86,87,93,97,99,100,140,153,170,268,274,290,293,298,327,341,350,366,375,388,421,422,423,424,425,427,428,429,430,431,432,436,438,446,448],login_sasl_cli:68,login_unix_getspnam:97,login_unix_pwcheck:97,login_unix_shadow:97,logindis:[82,83,84,86,87],loginrealm:[41,350],loginuseacl:[41,99,350],logout:[18,68,82,83,84,86,87,227,301,387],logrot:268,logtimestamp:[97,350],longer:[11,46,74,80,97,98,99,100,102,107,142,145,146,147,160,161,162,163,164,166,169,172,173,174,175,176,189,190,191,192,193,197,198,199,200,202,203,204,205,206,214,215,216,217,219,220,221,222,225,227,229,233,235,236,238,239,240,241,242,245,247,251,252,253,254,255,256,257,262,263,267,275,287,290,291,305,310,343,345,349,350,443,448],longest:108,longev:342,longstand:98,longwind:47,look:[11,18,33,36,40,41,44,45,47,48,51,52,55,56,58,62,66,72,74,79,80,91,96,97,98,158,160,196,203,219,220,221,222,268,274,281,287,288,289,315,316,321,340,350,375,388,442],lookup:[40,41,76,88,99,100,244,268,272,273,275,287,293,318,350,369,375],loop:[44,45,55,74,97,98,99,137,141,196,204,232,244,268,344,350],loopback:303,loos:[28,287],lorem:80,lose:[7,11,58,74,155,162,203,267,287,289,340],loss:[11,58,80,81,161,287,449],lost:[41,74,80,145,157,227,262,263,276,289,310,336,390,411],lot:[6,24,44,46,51,74,98,105,140,141,155,156,178,179,180,181,182,183,184,185,186,187,188,268,276,277,282,293,301,325,332,420],love:[27,52,70,71,80,267,340,442],low:[55,58,287,314,350,378,434],lower:[1,15,27,56,287,342,350],lowercas:[56,99,268,350],lowest:[9,30,58,277],lqm:375,lqr:375,lrp:41,lrs:[27,41,350,375],lrsip:375,lrsp:[41,293,375],lrswip:41,lrswipcda:61,lrswipkxt:375,lrswipkxtea:41,lrswipkxtecda:[41,305,375,388],lrwipkxtan789:88,lrwipkxtan9:88,lrwipkxtan:88,lrxte:375,lsb:267,lsdfmnqxz:268,lseek:55,lsub:[63,97,121,137,141,155,158,287,289,350,375,432],ltd:444,ltmp:160,lucent:117,luck:[80,97],luke:40,lukecag:40,lun:3,lvm:11,lwi:41,lwn:11,lying:51,lyndon:97,lynx:206,machin:[1,11,40,56,64,99,100,120,268,276,287,289,290,301,310,325,340,350,369,379,441,443,448,449],maciel:444,maco:134,macro:[41,80,243,245,448],mad:315,made:[4,7,44,45,46,51,55,57,58,68,74,80,91,97,98,100,107,108,139,153,154,156,173,267,288,289,291,307,349,350,356,407,440],mageia:81,magic:[41,44,47,58,75,100,283,404],mahoroba:100,mai:[3,5,7,8,9,10,11,18,19,25,27,30,31,33,36,38,40,41,44,45,49,51,52,55,56,57,58,60,68,69,74,75,80,81,87,90,96,97,98,99,100,102,130,160,166,174,191,193,220,221,222,227,228,238,241,242,251,252,253,254,255,256,262,263,267,268,272,274,275,276,277,278,279,280,281,282,283,285,287,289,290,291,293,295,296,297,298,299,303,305,308,310,311,312,314,319,321,325,331,332,336,337,339,340,341,342,343,344,349,350,355,360,364,366,369,375,387,390,404,405,407,411,417,418,421,422,424,425,427,428,429,430,431,433,440,441,442,443,446,449],maiden:19,mail1:289,mail1_password:289,mail2:289,mail2_password:289,mail:[0,3,5,6,11,13,15,18,19,22,27,31,33,36,44,47,48,51,56,58,61,66,70,72,74,80,88,90,93,95,96,97,99,100,142,156,160,164,165,166,178,180,181,182,183,184,185,186,187,188,190,191,192,193,205,206,217,219,220,221,222,235,236,238,239,240,241,242,267,269,270,276,278,280,281,282,283,284,286,288,293,295,296,303,305,310,311,313,315,316,318,320,327,331,339,340,341,345,350,353,355,366,373,374,375,377,379,383,384,385,391,397,412,418,432,433,436,438,440,441,443,444,445,448,450],mail_us:18,mailalternativeaddress:5,mailbox:[1,3,4,7,11,12,15,22,24,25,26,27,28,32,34,36,38,40,43,44,46,49,52,54,59,61,63,64,66,69,77,82,83,84,86,87,88,89,92,93,97,98,99,100,102,103,104,106,108,109,117,121,122,125,127,130,136,137,138,139,141,142,143,145,146,147,150,152,154,155,156,161,162,163,164,166,169,172,174,175,178,180,181,182,183,184,185,186,187,188,189,191,192,193,194,195,197,202,203,205,206,214,215,216,217,219,220,221,222,223,224,225,229,233,235,236,238,239,240,241,242,244,245,246,247,251,252,253,254,255,256,262,263,267,268,270,271,272,274,275,276,278,279,280,281,282,283,284,286,288,293,298,299,300,301,302,310,311,312,313,315,316,318,327,331,337,339,345,348,350,353,354,355,356,357,358,360,362,363,364,369,371,372,373,374,375,376,377,379,381,383,388,389,390,392,394,403,404,406,407,410,411,412,417,418,419,428,432,436,438,443,446,447,448],mailbox_append_index_record:47,mailbox_badformat:97,mailbox_cacherecord:47,mailbox_clos:[47,58],mailbox_commit:47,mailbox_cr:47,mailbox_creation_distribut:9,mailbox_default_opt:[108,350],mailbox_delet:[47,58],mailbox_delete_cleanup:47,mailbox_id:74,mailbox_index_repack:47,mailbox_index_unlock:47,mailbox_initial_flag:350,mailbox_it:47,mailbox_iter_don:47,mailbox_iter_init:47,mailbox_iter_step:47,mailbox_legacy_dir:[251,252,253,254,255,256,267,350],mailbox_lock:59,mailbox_lock_index:47,mailbox_maxmessages_addressbook:[235,236,238,239,240,241,242,350],mailbox_maxmessages_calendar:[235,236,238,239,240,241,242,350],mailbox_maxmessages_email:[235,236,238,239,240,241,242,350],mailbox_messag:74,mailbox_needs_repack:[47,58],mailbox_notsupport:97,mailbox_open_exclus:47,mailbox_open_irl:47,mailbox_open_iwl:47,mailbox_read_index_record:47,mailbox_rename_copi:47,mailbox_rewrite_index_record:47,mailbox_unlock_index:47,mailboxacl:[278,350],mailboxdb:393,mailboxexist:203,mailboxid:[27,215,216,217,219,220,221,222,226,236,238,239,240,241,242,243,350,432],mailboxlist:376,mailboxptr:47,maildrop:110,mailer:[40,293],mailert:40,mailfoldernam:305,maillog:[18,336],mailnotifi:[41,99,350],mailoffsit:310,mailproxi:289,mailrepl1:310,mailrepl2:310,mailserv:268,mailspool:[14,102,315,350],mailstor:[61,69,269,310,315,337,384,385,397],mailto:[27,163,233,245,395,432],main:[28,44,45,55,66,68,80,268,279,280,281,283,284,287,310,320,337,357,449],mainli:[108,350,364,407],mainlin:380,mainstream:160,maintain:[6,10,11,22,33,35,36,38,41,46,47,48,49,52,71,72,75,84,90,97,269,272,275,276,279,287,289,291,312,317,345,398,434],mainten:[44,49,349,369,387],major:[56,81,97,99,100,106,160,266,269,287,314,317,321,440,441,443],make:[0,1,7,10,11,12,18,25,35,36,40,41,44,45,47,48,49,51,52,53,55,58,59,60,62,66,72,74,75,76,78,79,87,88,96,97,98,99,100,109,110,117,122,131,140,141,143,152,155,160,161,171,178,179,180,181,182,183,184,185,186,187,188,190,192,228,251,254,255,256,267,268,272,275,276,287,290,293,295,297,300,301,303,307,308,309,314,315,316,319,329,331,337,339,340,343,348,349,350,358,370,374,387,394,404,406,418,420,435,436,440,442,446,448,449],make_chang:47,make_md5:136,make_sha1:136,makedepend:97,makefil:[48,52,80,88,97,99,178,181,182,183,184,185,186,187,188],makemak:49,male:19,malet:154,malform:350,malici:[88,196,232,244],malloc:[47,55,80,227],man:[1,18,19,49,87,98,156,178,181,182,183,184,185,186,187,188,223,233,245,269,276,279,284,293,295,310,339,350,436,437,441,448],manag:[6,11,15,33,44,49,52,74,79,81,88,89,96,97,98,147,160,172,268,287,302,309,315,349,350,366,370,374,415,423,428,432,433,436,437,438,440,443,446,448],managesiev:[6,98,99,100,107,108,205,227,289,301,350,428,429],mandatori:[3,160,219,220,221,222,291,407],mani:[5,11,19,24,36,41,44,47,55,58,62,70,74,75,80,93,97,98,99,100,152,155,156,191,196,206,229,232,244,267,268,276,279,281,287,289,293,310,311,314,321,325,331,340,344,349,350,379,382,399,412,443],manifest:202,manipul:[41,75,121,279,287,301,366,388,428],mann:444,manner:[3,11,24,97,350],manpag:[52,97,203,276,317,378],manual:[48,52,66,72,80,88,90,93,95,203,251,252,253,254,255,256,267,268,276,288,315,364,388,449],map:[6,11,40,41,44,46,47,55,56,74,80,88,97,100,215,216,217,219,220,221,222,262,263,267,268,274,276,315,322,340,350,351,410,432],map_fre:448,map_priv:97,map_refresh:448,map_stupidshar:97,mapnl:56,mar:[305,388,418],marclaport:205,marco:206,margin:331,mari:[27,353],mariadb:[49,163],mario:[151,168,195,230],mark:[33,38,56,60,75,79,97,136,140,262,263,267,268,275,287,293,297,301,305,372,378,407,444],markdeliv:97,marker:268,market:340,markup:350,marri:19,marti:[173,175,178,180,181,182,183,184,185,186,187,188],martin:[99,136,189,301,350,428,432,444],marysmith:355,mask:76,mass:[74,276,293,386],massag:276,massiv:[44,178,183,184,185,186,187,188],masssievec:[301,352,408,409,448],master:[1,2,6,7,10,11,18,36,48,53,61,71,72,74,76,77,87,95,98,99,100,108,122,137,139,141,152,153,154,158,160,162,164,174,175,178,179,180,181,182,183,184,185,186,187,188,203,207,219,220,221,222,234,248,258,264,266,267,268,286,287,290,293,308,309,315,325,334,335,349,350,352,354,355,357,358,359,360,361,369,374,379,380,381,382,384,385,393,394,395,396,397,399,410,411,412,414,415,416,433,442,446,448],master_bind_errors_fat:[219,220,221,222,350],master_machin:64,master_start_tim:64,master_uuid:64,match:[6,18,41,44,45,47,49,51,52,55,56,58,63,74,76,87,91,95,97,99,102,139,152,156,158,197,206,227,233,245,262,263,267,268,274,276,281,291,296,301,312,318,350,356,358,364,366,367,374,375,383,390,403,418],matchmim:226,materi:81,math:51,matt:[440,444],matter:[0,11,47,58,59,80,105,110,147,154,175,339,350,444],matthew:[196,232,244],matthia:[262,263],matur:90,matuska:189,matveev:444,max:[160,267,350,404,444],max_user_flag:58,maxcallsinrequest:350,maxcatenateitem:350,maxchild:[87,98,342,349,380,382,384,385,393,396,397,399,410,414,415],maxconcurrentrequest:350,maxconcurrentupload:350,maxdelayedsend:350,maxdomnam:229,maxfd:[99,349],maxforkr:349,maxheaderlin:350,maximum:[7,15,28,74,98,160,178,180,181,182,183,184,185,186,187,188,235,236,238,239,240,241,242,268,276,298,331,349,350,354,357,379,380,382,384,385,394,395,396,397,399,410,421,422,424,425,427,429,430,431,448],maxlogins_per_host:[160,166,193,350],maxlogins_per_us:[160,166,193,350],maxlognam:229,maxmessag:[27,161],maxmessages:[262,263,350],maxobjectsinget:350,maxobjectsinset:350,maxquot:[107,262,263,350],maxsizeattachmentsperemail:350,maxsizeblobset:350,maxsizerequest:350,maxsizeupload:350,maxssf:[375,421,422,424,425,427,429,430,431],maxword:[107,262,263,350],mayadditem:66,mayadmin:66,mayb:[0,49,55,58,72,74,191,219,220,221,222,235,236,238,239,240,241,242,251,252,253,254,255,256,261,262,263,277,310,370,412,449],maycreatechild:66,maydelet:66,mayreaditem:66,mayremoveitem:66,mayrenam:66,maysetkeyword:66,maysetseen:66,maysubmit:66,mbexamin:[99,106,205,206,262,263,267,352,418,448],mbname:74,mbox:[74,353,366],mboxcfg:[301,375],mboxconfig:[161,369],mboxev:[178,179,180,181,182,183,184,185,186,187,188,199],mboxkei:[4,281,448],mboxkey_db:[160,350],mboxlist:[44,45,97,100,146,366,404],mboxlist_:47,mboxlist_create_partit:74,mboxlist_db:[160,243,350],mboxlist_db_path:[281,350],mboxlist_renamemailbox:74,mboxlock:59,mboxmetadata:350,mboxnam:[46,47,59,74,80,193,194,200,276,364,407],mboxname_lock:[10,59],mboxname_lockpath:[10,96,268,281,350],mboxname_releas:59,mboxpattern1:374,mboxpattern:374,mboxtyp:74,mboxutil:172,mbpath:[97,98,100,114,140,156,215,216,217,219,220,221,222,251,252,253,254,255,256,267,352,448],mbtool:[352,448],mbtype:[278,350],mbtype_delet:172,mbyte:[52,383],mcmurtri:[154,440],mcyru:375,md5:[5,18,41,49,93,99,132,155,350,375,421,422,424,425,427,429,430,431],mda:[26,268],mdn:[90,97,350,432],mean:[3,6,11,19,28,35,36,40,41,44,45,51,52,53,55,58,59,69,71,72,74,80,96,97,100,125,141,152,160,164,191,198,225,247,251,253,254,255,256,257,268,271,272,274,275,276,279,287,289,293,299,301,310,314,315,331,349,350,354,369,380,382,383,394,396,399,412,414,432,449],meant:[11,196,232,244,331,379],meantim:[72,74,350],meanwhil:[272,276],measli:28,measur:350,mebibyt:350,mech_list:93,mechan:[5,8,14,40,41,49,66,68,88,90,93,97,98,99,136,268,274,282,287,289,291,310,314,350,375,421,422,423,424,425,427,429,430,431,432,436,446],mechlist:156,media:[15,279,284,340,350,432],meet:[71,88,322,436,441,448,450],meeuwen:[163,440,444],mega:74,megabyt:332,melbourn:27,mellon:[81,160,269,436,441,443,444,445],melnikov:[440,444],member:[38,41,97,131,251,252,253,254,255,256,350,411,432,440,448],membership:[49,350,402],memcheck:80,memcpi:448,memmem:129,memmov:97,memori:[9,10,11,30,46,47,49,51,56,75,79,80,96,97,98,99,122,129,130,132,133,143,147,163,164,168,169,195,199,206,223,230,247,340,350,444,448],memrchr:229,memset:[46,80],men:[269,441],meng:[147,150,164,174,202,206],mental:97,mention:[41,56,57,108,136,143,275,299,301,350,433,449],menu:[97,449],merced:40,mercedesknight:40,merchant:81,mere:[11,41,55,331],merg:[0,49,71,88,98,99,100,102,136,174,197,233,245,289,350,412],merit:96,mesh:[310,350],mess:[57,72,74,405],messag:[6,8,11,15,18,19,24,25,27,29,31,33,34,35,36,38,39,46,47,48,49,56,66,68,71,72,78,80,81,82,83,84,86,88,90,91,93,95,97,98,99,100,102,103,104,106,109,113,117,118,119,121,122,137,138,139,140,141,145,146,147,153,154,156,160,161,171,178,179,180,181,182,183,184,185,186,187,188,191,206,215,216,217,219,220,221,222,226,227,229,235,236,238,239,240,241,242,244,251,252,253,254,255,256,262,263,267,268,269,270,272,274,275,276,278,279,280,281,283,284,287,288,289,290,298,300,301,302,304,308,310,311,312,314,315,316,318,325,327,332,337,340,344,345,350,355,357,364,366,367,368,369,371,373,374,375,377,379,382,383,387,388,389,399,403,404,407,411,412,418,432,434,436,438,441,442,443,444,445,446,448],message_guid_s:58,message_id:74,messageappend:[278,350],messagecont:[27,278,350],messageexpung:192,messagehead:27,messagenew:[278,350],messages:[27,278,350],messeng:[269,441],messi:74,met:[81,441,445],meta:[33,56,58,59,87,142,206,279,312,340,350,389,391,432],metadata:[6,13,58,102,121,173,175,178,180,181,182,183,184,185,186,187,188,251,252,253,254,255,256,267,270,280,301,302,350,368,371,375,389,404,406,432,448],metapartit:[102,279,283,284,311,350],metapartition_fil:[58,102,279,283,284,311,350],method:[5,41,58,59,76,80,87,88,95,97,99,110,129,133,163,226,267,268,269,276,278,287,290,301,350,374,375,377,441,448,449],methodcal:66,methodrespons:66,metric:[285,350,398],meyer:444,mfs:281,mib:[164,203,350],mic:350,michael:[147,150,164,174,202,206],micro:266,microsoft:[350,432],middl:[58,142,266,267,310],midset:[27,278,350],might:[0,7,11,40,44,48,49,52,56,58,72,74,80,100,160,251,252,253,254,255,256,267,287,289,293,303,304,310,314,315,321,322,329,334,341,349,350,360,379,446,449],migrat:[7,15,40,98,122,267,279,280,283,303,369],mileston:440,mill:[98,122],million:[11,46,340,445],milter:418,mime:[27,51,56,58,97,99,102,138,147,206,223,229,251,252,253,254,255,256,322,350,364,374,432,439,448],mimetransport:432,mimick:443,min:[72,100,173,350],mind:[11,58,276,277,304],mini:56,minim:[11,12,40,52,268,287,297],minimum:[18,49,74,268,276,285,293,350,412,421,422,424,425,427,429,430,431],minlevel:411,minor:[58,97,98,99,100,160,178,183,184,185,186,187,188,266,267,388,404],minpol:350,minssf:[375,421,422,424,425,427,429,430,431],minut:[72,97,163,196,232,244,268,293,327,349,350,369,418,446],mirapoint:[287,428],mirror:[11,56,441],misbehav:[235,236,238,239,240,241,242],misc:[99,158,293],miscellan:[100,103,104,105,106,107,114,117,120,121,122,172,245],misconfigur:289,miscount:223,misinterpret:432,mislabel:223,mislead:[44,45,97,227],mismatch:[74,127,161,316,404,448],misnam:97,miss:[58,61,72,74,80,93,96,99,110,137,140,145,147,152,153,154,162,163,164,166,178,185,186,187,188,191,193,199,204,225,226,227,231,232,244,247,251,254,255,256,267,268,288,295,349,350,357,404,446,449],missingok:268,missingstatoverrid:268,mistakenli:105,mit:[41,48,49,66,72,97,396],mithj:74,mitig:[11,314],mitr:[210,211,212,213,214],mix:[27,44,45,55,58,121,199,316,448],mkcalendar:88,mkchartabl:[97,448],mkcol:[88,228,432],mkdir:[51,97,268,341,446],mkf:11,mkgmtime:97,mkimap:[51,268,311,352,448],mknewsgroup:[293,352,448],mkstemp:74,mktime:97,mmap:[55,75,97,142,155,169,340,345],mmap_priv:98,mmape:46,mmddyyyi:353,mnenom:56,mnp:268,mobil:443,mod:[6,388],mod_ssl:49,modal:56,mode:[4,24,25,40,44,45,48,49,51,52,56,58,64,69,72,74,80,99,100,142,150,152,156,160,203,251,253,254,255,256,267,270,276,278,286,289,293,302,308,331,334,349,350,357,369,387,398,402,405,411,412,413,417,448],model:[11,36,52,58,66,90,448],moder:317,modern:[18,46,80,152,269,279,441,445],modif:[6,58,81,97,105,272,287,309,327,411],modifi:[41,44,45,49,56,58,60,80,97,98,105,106,136,152,160,161,238,241,242,268,287,297,309,350,360,369,370,387,411,418,432,445,448],modseq:[6,27,47,57,58,74,82,83,84,86,87,109,119,143,191,278,350,388,418],modsequ:108,modul:[5,18,41,44,45,47,49,66,74,80,87,88,89,91,92,97,98,99,124,131,133,178,181,182,183,184,185,186,187,188,199,202,219,220,221,222,236,238,239,240,241,242,246,262,263,268,274,285,350,361,375,448],modulo:98,moench:191,moment:[11,51,82,83,84,86,87],mon:[27,305,388,390],mondai:435,monitor:[11,28,98,270,448],month:[6,11,97,331,340,353],monthli:[160,331],moor:[97,344],mora:[99,100,137,444],more:[3,5,6,7,9,11,12,13,22,26,27,28,30,33,34,36,40,41,44,47,49,51,53,55,58,62,65,66,68,71,72,74,75,80,90,95,97,98,99,100,106,107,108,110,114,133,136,139,140,141,143,152,153,160,173,176,178,179,180,181,182,183,184,185,186,187,188,199,202,209,210,211,212,213,214,215,216,217,219,220,221,222,238,241,242,251,252,253,254,255,256,268,272,274,275,276,277,279,280,281,283,287,289,290,291,293,296,298,301,305,310,311,315,320,331,333,334,339,340,344,348,350,351,357,366,374,375,377,379,382,387,390,399,403,404,405,411,412,420,421,422,424,425,427,429,430,431,436,440,443,446],moreov:432,morgan:141,morn:356,mortal:[269,441],most:[4,5,11,12,13,19,36,40,41,44,45,47,55,58,59,64,66,74,80,97,99,109,158,178,180,181,182,183,184,185,186,187,188,192,267,272,276,279,281,283,287,288,289,290,299,320,329,331,344,349,350,356,366,404,412,433,443,445,448,449],mostli:[51,97,98,278,314,350,356,360,382,399,407],motd:[97,327,375,382,399],motiv:448,motto:445,mount:[11,28,59,314,328,340,449],mous:449,move:[10,15,27,36,44,45,47,58,61,65,74,75,88,90,97,98,99,100,133,141,156,162,178,181,182,183,184,185,186,187,188,203,229,251,252,253,254,255,256,262,263,267,275,282,287,304,315,350,375,412,432,441,445],movi:340,mozilla:350,msa:3,msg:[58,61,64,97,374,382,399],msg_base:56,msg_date:374,msg_from:374,msg_id:374,msg_subject:374,msg_uid:374,msgno:68,mss:449,mta:[3,26,40,41,82,83,84,86,87,287,289,293,294,298,301,315,322,325,336,345,350,436,448],mtbf:[3,11],mtime:[6,97,122],mua:3,much:[6,11,18,44,48,55,56,58,72,74,75,88,97,98,100,136,137,141,143,153,215,216,217,219,220,221,222,251,252,253,254,255,256,272,278,287,294,310,311,325,350,356,360],mult:97,multi:[4,5,6,11,33,40,152,206,289,310,340,350,432,442,448],multiappend:[82,83,84,86,87,98,100,432],multilingu:[56,223],multimailbox:[262,263,432],multipart:58,multipl:[7,8,11,13,27,28,36,39,41,44,47,55,56,57,58,59,74,97,98,99,102,106,108,138,141,142,145,154,205,251,252,253,254,255,256,280,283,284,286,287,289,291,310,314,315,316,318,321,331,349,350,356,364,375,398,407,412,421,422,424,425,427,429,430,431,443,448],multiplexor:287,multipli:55,multipurpos:432,multithread:315,mung:[71,138,350],munge8bit:[120,350,377],mupdat:[7,36,59,74,87,96,99,109,121,122,141,147,150,151,157,164,168,169,174,175,195,200,202,230,267,268,270,286,295,310,315,345,350,352,360,407,412,425,432,446,448],mupdate_authnam:[289,350],mupdate_config:[102,350],mupdate_connections_max:350,mupdate_password:[289,350],mupdate_port:350,mupdate_realm:[289,350],mupdate_retry_delai:[288,350],mupdate_serv:[289,290,350,393],mupdate_synchron:109,mupdate_usernam:[289,350],mupdate_workers_max:350,mupdate_workers_maxspar:350,mupdate_workers_minspar:350,mupdate_workers_start:350,mupdatepush:[289,360],mupdateslave1:289,mupdatetest:[99,289,290,352,448],murch:[88,89,92],murchison:[79,97,98,99,319,432,440,444],murder:[4,13,19,40,47,51,59,76,87,88,91,93,98,99,100,102,107,109,137,140,141,142,153,154,156,157,158,162,164,192,202,203,263,270,275,277,310,314,316,325,340,350,360,379,385,397,399,407,432,433,436,438,441,446,447,448],murdermast:288,murrai:246,must:[3,7,11,18,19,31,40,41,44,45,47,49,55,56,58,60,66,68,80,81,87,88,89,91,92,93,95,96,97,100,104,107,109,117,156,160,208,209,210,211,212,213,214,215,216,217,219,220,221,222,243,251,252,253,254,255,256,267,268,275,276,279,281,282,283,284,285,287,289,291,293,297,301,310,315,316,322,333,334,340,343,344,349,350,354,355,360,361,362,364,366,375,380,382,383,384,385,390,393,394,395,396,397,398,399,405,407,410,411,415,417,440,443,446,448],mutf:97,mutual:[11,40],mux:[268,446],mvgroup:293,my_next_bestselling_novel:449,my_script:301,mybox:80,myconsist:366,mydb:44,mydestin:3,mydomain:336,myer:97,myhost:336,mynewsgroup:293,mypassword:268,myright:[66,275,432],mysasl_canon_us:100,myscript:[301,375],myscriptnam:375,mysql:[11,12,49,107,163,199,316,350,448],myuser:336,nag:41,nagl:104,nah:74,naiv:72,name:[2,3,5,6,7,9,11,15,18,19,27,30,31,33,40,41,44,45,47,48,49,51,52,53,55,56,58,59,61,62,63,66,68,69,71,72,74,80,81,87,88,89,92,93,97,98,99,100,106,108,117,121,128,138,140,141,145,156,164,173,175,178,180,181,182,183,184,185,186,187,188,189,193,194,197,199,206,210,211,212,213,214,215,216,217,219,220,221,222,233,245,251,252,253,254,255,256,267,268,269,274,275,276,277,279,280,281,283,289,291,293,301,303,305,310,311,313,314,325,327,333,341,349,350,351,353,356,363,364,366,367,370,371,374,389,391,394,403,404,406,407,411,412,417,420,421,422,423,424,425,427,429,430,431,432,436,441,443,445,446,448,449],namelock:[1,46,47,54,57,58,448],namespac:[3,13,19,27,28,42,82,83,84,86,87,88,89,91,92,96,97,139,160,169,192,193,194,217,219,220,221,222,232,236,238,239,240,241,242,244,267,270,271,280,283,286,287,289,291,302,315,331,350,360,417,432,448],nasti:[59,137,158],nativ:[55,97,287],natur:[11,33,58,277,286,289,291,350],navig:72,ncontent:27,ndate:27,nearest:[19,298,350],nearli:[215,216,217,219,220,221,222,446],necessari:[11,40,41,47,51,55,58,59,71,74,75,77,78,87,97,100,106,127,251,253,254,255,256,267,268,276,287,291,293,310,328,350,391,404,407],necessarili:[5,11,38,74,80,315,375],necessit:443,need:[1,3,4,5,7,11,15,16,17,18,19,26,29,33,34,35,36,37,40,41,44,45,46,47,48,49,51,52,53,55,56,57,58,59,65,66,68,71,72,74,75,76,77,80,83,87,88,89,90,91,92,93,95,96,97,98,99,100,143,145,160,162,164,168,174,178,179,180,181,182,183,184,185,186,187,188,189,192,195,199,203,214,215,216,217,219,220,221,222,235,236,238,239,240,241,242,251,252,253,254,255,256,261,262,263,267,268,269,272,274,275,276,277,278,280,283,284,287,288,289,290,291,293,296,298,299,301,303,305,308,309,310,313,315,320,321,330,331,334,338,340,341,345,349,350,356,357,361,364,367,370,374,375,377,383,387,391,398,404,407,411,412,420,436,441,442,445,446,448,449],need_sys_errlist:97,neg:[109,350,448,449],neglig:81,negoti:[11,68,82,83,84,86,87,93,98,173,291,350,412,421,422,424,425,427,429,430,431,432],neighbour:276,neither:[11,36,74,106,293,319,407,445],nerenberg:97,nest:[44,45,55,62,91,143,350],net:[18,40,51,80,81,100,109,140,267,315,341,370],netnew:[41,49,58,97,100,178,182,183,184,185,186,187,188,293,350,417,432],netscap:[82,83,84,86,97,287,350],netscapehack:97,netscapeurl:350,network:[7,11,41,46,58,60,75,96,98,100,109,141,268,276,287,295,297,310,313,344,349,350,432,443,446,448],never:[25,40,47,56,57,58,59,80,97,141,154,276,287,289,293,319,342,350,407,411],new_cr:97,new_fnam:74,newer:[6,44,49,80,97,108,113,120,160,191,196,198,223,225,247,257,262,263,267,336,350,383,407,411],newest:72,newgroup:293,newhost:87,newimap:267,newli:[251,252,253,254,255,256,262,263,267,308,309,330,350,407,448],newlin:[41,97,316,366,448],newmailboxptr:47,newman:[97,322,444],newmboxlist:360,newmboxnam:74,newmod:56,newnam:[47,375],newnew:[100,293,350,378,394],newpart:47,news2mail:[293,327,375],newsaddhead:350,newsfe:97,newsgroup:[41,97,100,270,350,378,392,394,448],newsmast:[293,350],newspeer:[293,350,394],newspostus:[293,350,394],newsprefix:[293,350,394],newsrc:[281,350],newsrc_db_path:[281,350],newsspool:97,newsstamp:378,next:[6,9,11,18,24,25,28,30,44,45,47,48,49,56,58,60,72,74,76,80,82,83,84,85,86,87,178,179,180,181,182,183,184,185,186,187,188,276,277,281,287,293,297,301,310,349,350,356,398,440],nfrom:27,nghttp2:49,nginx:[7,36,270,286,289,448],nic:[3,40,189,444],nice:[74,141,287,316,412,448],nicknam:[6,189],nicola:444,night:[269,331,441,445],nightli:[51,276],nil:[27,58,164,327,350,418],nist:350,nix:[87,267],nmessag:27,nmime:27,nntp:[13,35,41,49,51,58,87,96,100,114,140,268,270,287,289,295,315,327,350,375,378,394,426,432,446,448],nntpclient:[51,267],nntpd:[87,100,111,112,114,139,140,143,146,157,268,289,293,310,350,352,412,426,448],nntptest:[352,448],nntptimeout:[114,350],no_atomic_renam:[82,83,84,86,87],no_receiv:27,no_relai:27,noarg:55,noauth:350,noauthent:375,nobodi:[0,71,85],nodaemon:411,node:[3,7,11,13,36,314,350,360],noinferior:275,noisi:[51,350],nomin:440,non:[7,12,33,41,44,45,46,47,56,58,59,68,74,80,87,88,93,97,98,110,126,131,139,160,161,164,190,199,200,206,223,226,229,243,270,272,273,274,276,287,302,310,314,340,349,350,356,365,369,404,411,412,432,440,441,445,448],nonconform:322,none:[6,11,15,19,28,88,91,160,224,235,236,238,239,240,241,242,246,249,251,252,253,254,255,256,259,261,262,263,265,268,278,279,280,281,283,284,285,289,296,298,350,367,375,388,421,422,424,425,427,429,430,431,446],nonexist:[74,97,162,191,201,203,350,389],nono:323,nonsens:147,nonstandard:227,nonzero:[58,68],noop:[139,350,366],nopasswd:51,nor:[36,60,74,106,276,277,293,297,331,345,348,350,369,407,433],norbert:161,norc:375,normal:[6,11,13,38,41,44,45,49,52,64,72,74,80,87,91,97,98,99,267,268,273,279,289,290,293,301,303,319,324,325,331,337,350,353,356,366,375,390,405,443,446],normalis:[190,238,241,242,350],noselect:[97,141,287],nosync:[100,362],notabl:[99,350],notat:[350,353,366,432],note:[1,2,4,7,9,15,19,30,33,40,41,42,44,45,47,49,52,53,55,71,75,80,81,87,88,89,91,92,93,101,123,135,159,177,207,218,234,237,248,250,258,260,264,268,272,273,274,275,276,277,279,280,282,283,287,289,291,293,298,301,308,310,314,322,331,332,336,339,340,344,349,350,353,354,356,357,360,362,365,366,374,379,380,382,384,385,394,395,396,397,399,404,405,407,410,411,417,428,433,436,447,448],notebook:443,notesmailbox:350,notfound:66,noth:[3,11,25,56,57,64,97,147,197,202,233,245,251,253,254,255,256,269,283,287,328,350,407,441],notic:[0,41,44,58,72,74,80,81,97,98,99,100,154,251,252,253,254,255,256,268,342,350,404],notif:[13,87,97,98,99,161,164,169,170,178,180,181,182,183,184,185,186,187,188,216,217,219,220,221,222,228,235,236,238,239,240,241,242,268,278,281,296,344,350,381,418,432,436,438,448],notifempti:268,notifi:[11,27,41,75,87,96,99,100,102,160,268,281,296,301,315,350,374,380,382,384,385,393,395,396,397,399,410,414,415,432],notify_extern:[350,395],notify_unix:98,notifyd:[41,87,99,163,178,180,181,182,183,184,185,186,187,188,268,278,349,350,352,380,382,384,385,393,396,397,399,410,414,415,448],notifysocket:[96,268,281,296,350,395],notl:[173,375],notspam:350,notwithstand:[3,11,13],nov:388,now:[5,9,11,28,30,33,41,44,46,47,48,53,55,56,58,61,72,74,75,80,81,82,83,84,86,87,96,97,98,99,100,102,104,105,106,117,122,125,131,132,133,134,136,145,146,147,149,150,151,152,155,156,158,160,161,162,163,164,165,166,167,168,174,175,176,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,202,203,204,205,206,208,209,210,211,212,213,214,215,216,217,219,220,221,222,223,224,225,226,227,228,230,232,233,235,236,238,239,240,241,242,244,245,246,247,251,252,253,254,255,256,257,262,263,267,268,275,278,287,289,301,310,312,322,340,350,398,411,443,446],nreceiv:27,nss:[41,274],nss_ldap:[41,274],nsubject:27,nthi:27,ntht:432,ntlm:[93,432],nto:27,ntoz:279,nuanc:305,nul:[56,75],num:[28,41,58,82,83,84,86,87,199,300,375,403,421,422,424,425,427,429,430,431],num_record:47,number:[4,6,7,9,11,15,25,27,30,34,41,47,48,52,55,56,58,62,64,75,76,80,96,97,98,99,100,102,110,154,156,157,160,174,178,180,181,182,183,184,185,186,187,188,198,223,225,229,247,257,266,268,269,276,277,287,289,291,293,298,300,303,309,310,315,320,325,327,338,340,342,349,350,353,354,366,369,375,379,380,382,384,385,387,388,394,395,396,397,399,407,410,411,419,421,422,424,425,427,429,430,431,440,441],numer:[56,125,136,178,180,181,182,183,184,185,186,187,188,327,349,448],numrecord:58,nurtur:11,nvfsbc:74,nwdiag:52,nye:444,nyota:33,o_dsync:99,o_rdwr:55,obata:[139,140,223,228],obei:[46,97,110,145,160,350],obfusc:5,object:[3,11,41,44,47,49,58,61,76,80,88,178,180,181,182,183,184,185,186,187,188,235,236,238,239,240,241,242,251,252,253,254,255,256,262,263,300,350,407,412,432,440,442],object_storage_:[178,180,181,182,183,184,185,186,187,188],object_storage_dummy_spool:350,object_storage_en:350,objectclass:350,objectstor:[178,180,181,182,183,184,185,186,187,188],obligatori:413,obscur:[71,97],observ:[9,30,277],obsolet:[58,156,275,350,432],obstacl:432,obtain:[3,5,40,41,47,66,74,91,97,251,253,254,255,256,268,275,276,291,306,331,350,356,423],obviou:[287,315],obvious:[12,74,276,331,350],occas:59,occasion:[55,58,61,97,316,350,448],occur:[8,11,19,27,44,45,56,74,75,80,97,100,125,152,153,160,199,207,209,210,211,212,213,214,215,216,217,234,235,236,238,239,240,241,242,248,249,258,259,264,265,266,276,278,287,288,291,298,301,310,333,342,350,356,369,389,407,411],occurr:350,oceana:[97,98,99],oct:[27,388],octal:268,octet:[58,206,291,375],octob:65,odd:[266,404],off:[11,40,41,48,56,58,62,72,74,80,87,88,97,98,99,100,160,173,178,182,183,184,185,186,187,188,200,216,217,219,220,221,222,251,252,253,254,255,256,267,273,276,305,308,310,314,329,350,363,390,421,422,423,424,425,427,429,430,431,432,444,449],offer:[10,11,18,156,160,286,289,331,350,411],offic:[81,96,268,269,295,432,443,446],offici:[90,434,446],offlin:11,offset:[55,56,58,74,75,350],offset_header_crc:58,offsit:310,offsite_shutdown:310,offsite_shutdown_fil:310,offsite_sync_host:310,offsite_sync_port:310,offsite_sync_repeat_interv:310,offsitesync:310,often:[5,7,11,26,36,41,44,55,58,72,251,252,253,254,255,256,268,272,293,296,313,331,342,421,422,424,425,427,429,430,431,443],ogri:[227,236,238,239,240,241,242,243],ohio:[98,343],okai:[61,233,245,276],old:[11,25,44,46,47,48,49,51,52,55,57,58,72,74,77,80,81,96,97,109,134,139,142,154,160,162,164,191,206,251,252,253,254,255,256,267,268,275,298,301,350,353,358,362,375,405,417],old_config_virtdomain:80,older:[2,6,15,48,51,66,72,74,75,80,81,82,83,86,87,97,108,110,141,147,152,160,205,267,268,279,305,310,350,357,360,363,369,383,401,411,412,436,442,448],oldest:[72,147,262,263,267],oldimap:267,oldmailbox:47,oldmailboxid:27,oldmboxnam:74,oldnam:375,oldschool:350,olduidset:27,olivi:139,olson:[88,361],omit:[41,55,160,274,291,350,366,407],on_backend:9,onc:[3,9,11,27,30,40,44,45,48,53,55,56,58,59,66,71,72,74,87,90,95,97,98,100,102,104,136,137,238,241,242,251,253,254,255,256,268,276,277,284,287,289,290,293,308,310,315,316,356,375,398,404,411,412,421,422,424,425,427,429,430,431,440,446,448],ondrej:[113,158],one:[3,5,6,7,9,11,13,15,18,19,28,30,31,33,36,38,39,40,41,44,45,48,49,52,55,56,58,59,62,65,68,69,71,72,74,80,84,87,97,98,99,100,102,108,137,152,154,158,160,191,196,227,232,235,236,238,239,240,241,242,244,251,252,253,254,255,256,267,268,269,272,274,277,279,280,282,283,287,289,290,291,293,299,301,305,310,314,315,318,319,321,322,331,333,339,340,341,345,349,350,351,353,354,365,366,369,371,374,375,377,379,383,386,390,393,403,404,407,411,412,417,418,421,422,423,424,425,427,429,430,431,446,448],ones:[4,57,72,80,98,173,267,301,340,407],ongo:15,onli:[3,5,6,7,9,10,11,12,18,19,27,30,33,36,39,40,41,44,45,46,47,52,53,55,56,58,59,62,63,68,71,72,74,76,80,84,87,88,91,93,95,97,98,99,100,102,104,114,136,138,139,140,152,155,156,158,160,161,178,180,181,182,183,184,185,186,187,188,191,199,200,207,208,209,210,211,212,213,214,215,216,217,223,226,234,235,236,238,241,242,243,248,249,251,252,253,254,255,256,258,259,262,263,264,265,266,267,268,272,275,276,277,278,287,288,289,291,293,297,303,305,308,310,311,314,315,318,320,329,331,333,340,345,349,350,355,356,357,358,360,367,369,370,374,375,379,383,384,385,388,389,390,392,393,394,395,397,398,403,404,407,411,412,413,418,421,422,424,425,427,429,430,431,432,434,442,448,449],onlin:[11,28,48,71,80,276,287,301],onto:[7,15,60,79,97,297,415,423],onward:15,opaqu:[44,45,60,297],opcod:75,open:[11,13,36,41,44,45,49,51,55,57,58,59,71,74,80,97,98,99,109,136,139,152,155,160,178,180,181,182,183,184,185,186,187,188,267,268,278,287,291,314,331,340,349,350,356,421,422,424,425,427,429,430,431,436,444,448],openbsd:[142,155,227],openio:[178,180,181,182,183,184,185,186,187,188,350],openio_:[178,180,181,182,183,184,185,186,187,188],openio_account:350,openio_autocr:350,openio_namespac:350,openio_proxy_timeout:350,openio_rawx_timeout:350,openio_verbos:350,openldap:[49,100],openssl:[18,49,97,99,115,147,160,176,178,181,182,183,184,185,186,187,188,251,254,255,256,289,316,319,350,448],opensus:[2,12,81,448],oper:[3,6,8,11,15,18,19,33,41,42,44,47,49,52,55,58,59,60,70,74,80,82,83,84,86,87,88,99,100,104,160,199,267,270,275,276,279,288,289,291,293,297,308,312,315,331,340,342,345,349,350,356,357,358,359,360,361,374,391,403,404,407,411,412,413,418,421,422,424,425,427,429,430,431,432,436,443,448],opera:160,opinion:11,opportun:[11,28,314,331,350],oppos:[3,58,97,160,275,304,331,375],opposit:[44,45,404],opt:[268,319,324],opt_mailbox_delet:47,optim:[7,11,41,56,97,110,287,314,337,443],optimis:[74,178,180,181,182,183,184,185,186,187,188,229,235,236,238,239,240,241,242,245,350],option:[4,6,7,9,10,11,15,18,19,22,27,30,33,36,40,41,44,45,47,48,51,52,56,58,72,74,75,80,87,89,91,92,93,96,97,98,99,100,102,104,106,107,108,109,110,114,120,121,122,126,129,130,132,137,138,139,140,145,147,152,155,156,158,161,162,163,164,166,174,176,178,179,180,181,182,183,184,185,186,187,188,190,193,199,200,208,209,210,211,212,213,214,215,216,217,219,220,221,222,223,226,227,229,233,235,236,238,239,240,241,242,243,245,246,251,252,253,254,255,256,261,262,263,267,270,273,276,277,279,280,282,283,284,287,289,291,293,298,301,305,309,310,311,314,315,320,322,324,327,331,334,336,337,338,342,343,349,350,375,419,433,436,446,447,448],order:[3,9,12,19,30,40,41,42,44,45,49,52,55,58,74,75,88,89,92,93,97,100,107,109,146,156,160,164,193,202,231,262,263,268,269,272,275,287,289,293,313,315,332,334,349,350,365,404,407,419,441,448],orderedsubject:[82,83,84,86,87],ordinari:74,org:[3,5,11,18,19,27,28,33,36,38,40,48,51,55,65,69,70,72,88,99,100,137,141,210,211,212,213,214,266,267,268,301,305,307,310,311,313,350,351,355,359,366,370,392,403,418,436],organ:[6,7,11,19,24,27,55,88,163,233,245,279,284,350,443,444,448],organis:[251,252,253,254,255,256,267,301],orient:[11,47],orig:77,origin:[3,5,11,44,53,74,75,77,81,99,130,158,251,252,253,254,255,256,275,303,305,310,322,331,350,356,407,441,443,444],original_repositori:53,ornl:99,orst:141,oshrin:[440,444],osi:11,ostens:74,other:[3,5,7,9,11,12,13,18,19,22,25,30,31,35,36,38,44,45,46,47,48,51,52,53,55,56,57,58,59,61,62,63,65,66,69,72,74,80,81,87,88,93,96,97,98,99,100,109,110,125,132,139,141,142,152,154,155,156,158,160,172,178,179,180,181,182,183,184,185,186,187,188,190,191,196,205,232,235,236,238,239,240,241,242,244,251,252,253,254,255,256,268,269,271,272,274,275,277,278,279,281,283,287,289,291,293,294,301,302,305,308,313,314,320,321,330,331,334,337,338,340,341,342,344,345,349,350,351,353,356,365,370,375,404,407,411,412,440,443,446,448],other_funct:55,othercond:55,otherwis:[5,11,19,27,44,49,56,58,74,75,76,80,84,88,89,92,93,138,160,166,193,268,275,276,277,287,289,291,293,298,305,320,322,331,333,338,350,353,354,355,356,357,358,359,360,361,362,364,365,366,367,368,369,370,371,372,373,374,377,378,379,380,381,382,383,384,385,387,388,389,390,393,394,395,396,397,398,399,400,401,403,404,406,407,410,411,412,413,414,415,416,417,418,449],otp:[421,422,424,425,427,429,430,431],ouch:[44,141],our:[3,49,52,66,70,71,74,76,80,81,84,94,99,156,160,266,267,268,280,283,284,287,291,314,320,340,360,433,436],ournew:293,ourselv:[68,71,74],out:[0,7,11,16,17,25,26,28,29,30,33,34,36,37,40,41,46,51,52,53,55,56,58,59,68,70,71,72,74,75,77,80,81,94,97,99,100,109,122,156,160,161,169,178,185,186,187,188,203,204,220,221,222,226,251,253,254,255,256,267,268,269,275,276,277,278,287,289,291,293,311,315,340,343,350,353,354,355,356,357,358,359,360,361,362,364,365,366,367,368,369,370,371,372,373,374,376,377,378,379,380,381,382,383,384,385,387,388,389,390,393,394,395,396,397,398,399,400,401,402,403,404,406,407,410,411,412,413,414,415,416,417,418,419,421,422,424,425,427,429,430,431,441,449],outag:[74,290,314],outbound:315,outbox:[20,88,350,404,448],outbox_sendlat:[217,219,220,221,222],outbuf:56,outcom:41,outer:99,outgo:[226,293,350],outindex:56,outlen:56,outlin:[0,5,11,27,267,290],outlook:[102,161,289,350],output:[18,41,44,52,56,58,60,68,72,74,75,80,88,97,99,100,114,127,130,131,142,173,233,243,245,262,263,267,268,297,303,305,308,327,350,353,354,355,356,357,359,360,361,362,363,364,369,371,374,375,376,380,382,383,384,385,388,389,393,394,396,397,399,400,403,406,409,410,415,418,419,421,422,423,424,425,427,429,430,431,449],outputfil:408,outsid:[3,27,40,41,56,113,128,146,171,278,293,319,320],outstand:99,over:[5,7,11,36,44,45,49,58,59,62,66,74,75,76,88,91,93,96,97,100,109,145,147,154,156,172,202,216,217,219,220,221,222,223,251,252,253,254,255,256,262,263,268,289,293,295,298,310,314,315,327,331,340,350,356,377,380,382,383,390,394,396,399,404,412,421,422,424,425,427,429,430,431,432,441,443,445,446,448],overal:[11,58,289,310,350,440,448],overcom:287,overflow:[99,100,109,111,115,138,139,147,174,189,200,350],overhead:[6,11,41,88,300,301,342],overlai:75,overload:[290,325,369],overlook:449,overquota:223,overrid:[56,58,74,97,100,133,147,236,238,239,240,241,242,267,293,310,327,350,380,407,412],overridden:[44,65,76,251,252,253,254,255,256,281,350,374,375,405],overrun:[80,100,165,190],overshadow:443,overtur:66,overview:[1,4,41,42,140,270,286,297,436,441,448],overwrit:[44,68,77,99,108,200],overwritten:[58,268,423],owe:98,own:[1,3,7,11,27,31,33,38,40,41,44,45,51,52,53,74,77,88,97,174,192,268,273,274,278,279,283,289,290,293,300,315,350,353,375,385,397,433,443,445,446,448,449],owner:[27,33,44,57,58,76,88,97,268,350,353,374,375,407,448],ownership:[18,51,71,268,329],p615:340,p630:340,pace:277,packag:[2,19,49,51,52,65,82,83,84,86,87,88,90,93,267,268,281,289,293,309,310,314,320,433,434,436,448,449],packet:[269,342,441],pad:[75,350],page:[1,18,19,48,49,53,66,72,87,97,98,156,178,181,182,183,184,185,186,187,188,223,233,245,275,276,279,284,288,293,295,310,320,339,350,436,437,448],pai:96,pair:[6,11,61,216,217,219,220,221,222,282,315,318,350,357,392],pairwis:51,palauzov:[139,141,268],pam:[5,41,448],pam_deni:18,pam_ldap:[41,274],pam_nologin:18,pangolin:87,paragraph:[74,276,349,449],parallel:[11,325],param:[66,225,247,350],paramet:[9,11,18,27,30,44,45,46,47,49,51,55,56,62,75,76,88,93,97,100,161,169,190,228,229,267,278,289,291,329,331,350,411,428,432],paranoia:156,paranoid:98,parcel:374,pardon:3,parent:[9,10,30,41,74,142,166,193,229,251,252,253,254,255,256,267,273,275,277,287,289,293,296,350,375],parent_id:74,parenthes:[55,62,375],parentid:66,pariti:11,parlanc:80,pars:[47,62,68,74,75,97,98,99,102,104,105,131,134,138,145,153,156,158,160,189,198,203,225,236,238,239,240,241,242,247,257,262,263,276,291,293,301,350,357,404],parser:[75,97,350,360],part1:[9,30,277,279,283,284,350],part2:[9,30,277],part3:[9,30],part4:[9,30],part:[3,5,11,13,19,27,33,40,41,44,45,47,52,56,58,63,71,74,75,80,85,86,93,97,98,99,100,105,145,166,178,183,184,185,186,187,188,193,223,251,252,253,254,255,256,274,277,287,288,289,293,310,331,341,350,358,364,375,392,407,411,432,441,443,449],parta:[9,30],partb:[9,30],parti:[5,19,27,70,110,278,350],partial:[74,97,98,100,178,183,184,185,186,187,188,206,262,263,310,345,350,355,369,411,432],particip:[7,11,88,175,243,286,448],particular:[5,7,9,11,12,28,30,41,53,58,74,85,97,98,99,100,109,178,180,181,182,183,184,185,186,187,188,236,238,239,240,241,242,268,277,287,289,291,298,300,305,310,315,340,350,356,357,363,375,411,440,446,449],particularli:[11,44],partit:[3,4,6,11,13,15,40,59,62,65,97,99,102,109,117,122,141,156,157,158,178,179,180,181,182,183,184,185,186,187,188,190,200,203,206,228,262,263,268,270,277,282,287,289,291,293,302,310,315,327,339,340,350,354,355,360,368,369,375,383,389,391,392,404,407,412,436,438,442,446,448],partition_mod:9,partition_mode_exclud:[9,30],partition_mode_soft_usage_limit:[9,30],partition_mode_usage_reinit:9,partition_select_exclud:[30,289,350],partition_select_mod:[9,30,277,289,350],partition_select_soft_usage_limit:[30,277,289,350],partition_select_usage_reinit:[30,277,289,350],partli:11,partlist:74,partlist_local_init:74,partlist_local_select:74,partner:[11,61],partstat:76,pass:[40,41,44,45,46,47,48,49,55,56,59,72,74,75,79,80,93,95,97,98,140,154,268,269,276,287,310,349,350,355,375,386,411,421,422,424,425,427,429,430,431,440,441],passiv:11,passphras:5,passwd:[41,82,83,84,86,87,97,268,274,421,422,424,425,427,429,430,431,446],password:[5,18,28,41,53,66,82,83,84,86,87,93,97,98,140,156,229,268,289,293,301,341,350,378,382,399,421,422,424,425,427,428,429,430,431,432,446],password_column:18,password_crypt:18,passwordless:51,past:[6,44,46,48,52,58,72,147,158,268,291,350,353,357,439,448],pat:56,patch:[0,53,65,66,79,88,97,98,99,102,158,178,179,180,181,182,183,184,185,186,187,188,201,227,229,267,322,346,433,440,448],path:[3,9,11,19,27,30,49,51,57,63,65,72,74,80,88,97,127,147,149,156,158,161,164,175,178,179,180,181,182,183,184,185,186,187,188,192,200,203,226,227,267,268,276,279,281,284,285,287,293,296,298,305,315,319,341,344,349,350,356,371,374,375,377,386,388,389,395,404,449],pathnam:[15,99,268,279,280,281,283,284,350,446],patholog:[161,276],pattern:[6,11,45,52,91,97,161,175,276,314,337,350,366,367,375,378,383,392,448],paul:[154,223,287],paus:[350,356,411],pavel:[189,203,206],payload:[3,11,36,314,350],pcre:[49,104,154,158,192,200,268],pdf:160,peek:[33,46],peer:[100,293,350,378],peernam:378,pem:[268,350,443],penalti:11,pend:[85,137,291,440],peopl:[33,55,71,72,80,97,98,290,320,345,419],per:[6,11,40,41,44,45,56,57,58,59,74,88,89,90,93,97,98,102,104,117,122,137,152,160,196,208,219,221,222,223,231,232,236,238,239,240,241,242,243,244,251,252,253,254,255,256,267,270,275,276,279,282,287,289,291,293,301,310,315,327,349,350,353,356,366,371,374,375,387,398,407,440,448],perceiv:350,percent:[9,30,76,277,289,298,350],percentag:[9,28,30,97,277,356],percentil:30,perdit:[286,287,289],perfectli:[0,11,44],perform:[4,6,7,9,30,33,36,41,44,45,47,49,52,55,58,68,74,75,81,88,93,96,97,98,99,100,102,104,114,136,146,160,176,215,216,217,219,220,221,222,223,226,235,236,238,239,240,241,242,267,268,272,275,277,287,289,290,291,293,309,310,311,314,315,325,328,332,349,350,355,356,357,358,359,360,361,369,374,375,383,387,390,395,403,404,407,411,412,436,447,448],perhap:[11,24,33,41,274,297,314],perimet:[7,36],period:[11,41,44,74,88,95,96,98,178,179,180,181,182,183,184,185,186,187,188,268,276,277,291,293,315,327,331,340,349,350,356,358,369,374,387,411,418,446],perl5lib:268,perl:[49,51,52,66,74,97,98,99,113,139,154,156,158,178,181,182,183,184,185,186,187,188,199,202,226,246,267,268,305,375,379,391],perman:[9,30,41,97,298,305,308,331,350,432,443],permiss:[5,7,19,41,48,55,68,72,81,91,99,200,268,275,287,293,301,330,334,350,375,446,449],permit:[7,13,18,33,41,44,57,81,97,202,275,289,350,394,443],persia:51,persian:[51,269,441,445],persist:[59,97,268,287,350],person:[1,5,13,19,27,28,55,88,89,91,92,97,98,160,271,278,287,301,327,350,353,375,443],perspect:[33,331],pertain:96,pertin:298,peski:98,petabyt:11,pf_inet:379,pghmcfc:418,pgp:293,pgsql:[12,49,350],phabric:[178,181,182,183,184,185,186,187,188],phase:[58,75,441],philip:[136,141],philipp:[136,141,163,190],phish:374,photo:[39,92,449],php:267,phpdomain:52,phrase:[48,72,421,422,424,425,427,429,430,431,449],phx2:418,physic:[3,11,279,284,350],pick:[38,48,72,74,97,268,350,412,446],pictur:[11,268,446],pid:[27,64,310,315,329,341,350,387,421,422,424,425,427,429,430,431],pidfil:[99,387,421,422,424,425,427,429,430,431],piec:[19,44,49,71,80,97,109,291,449],pile:[137,138],pine:[97,106,289],ping:287,pip:49,pipe:[74,133,324,375,421,422,424,425,427,429,430,431],pipelin:[121,268,432],pipermail:65,pittsburgh:81,pkg:[49,164,267],pkg_config_path:65,pkgconfig:[49,65,199],pki:[268,446],place:[7,19,25,31,44,46,47,52,55,58,72,75,80,87,96,99,102,228,268,275,277,281,283,287,291,293,301,305,319,340,349,350,360,407,411,413,441,446,448],placehold:449,placement:287,plai:[55,61,316,331,350,448],plain:[5,27,41,49,58,82,83,84,86,87,97,120,156,173,225,244,247,268,290,301,339,350,356,375,418,421,422,424,425,427,429,430,431,432],plaintext:[93,97,98,156,268,287,293,350,366,448],plaintextloginalert:[100,114,350],plaintextloginpaus:[97,174,350],plan:[4,7,11,18,44,47,52,53,71,87,268,269,277,287,340,441,448],plane:56,platform:[4,58,80,96,100,115,142,147,160,163,174,199,223,228,229,267,277,350,433,436,443,447,448],pleas:[3,7,11,12,16,17,24,25,26,29,34,36,37,41,48,49,72,81,82,83,84,85,86,87,94,96,160,164,165,166,190,191,192,193,203,205,206,209,210,211,212,213,214,215,216,217,219,220,221,222,251,254,255,256,267,268,269,272,277,279,280,281,283,287,291,295,301,310,311,317,322,329,339,353,366,411,417,423,433],pleasur:79,plu:[11,74,97,100,160,268,272,276,291,331,350,411],plug:[129,130,132,133,436],plugin:[93,97],pmr:340,png:49,pod:[49,52,178,181,182,183,184,185,186,187,188],point:[3,4,11,19,44,45,46,53,56,72,74,75,80,84,88,89,91,96,97,99,207,209,210,211,212,213,214,215,216,217,234,235,236,248,249,258,259,264,265,266,268,276,281,287,289,291,310,345,350,363,369,407,412,448],pointer:[44,45,46,55,56,60,68,75,79,97,100,157,228,297,350,432],poitra:444,poke:[74,276],pokorra:205,polici:[3,56,84,287,350],poll:[76,251,252,253,254,255,256,350],pollin:[42,448],pollstatu:76,pom:[49,52,178,181,182,183,184,185,186,187,188],poni:445,poodl:432,pool:[55,99,279,280,283,289],poor:[74,411],poorli:[196,232,244,289],pop3:[4,13,18,19,58,63,87,93,96,97,99,100,102,114,145,153,178,180,181,182,183,184,185,186,187,188,268,269,289,295,313,315,316,327,341,350,366,375,388,396,414,415,427,432,436,438,443,446,448],pop3_last_login:74,pop3_new_uidl:[58,108,388],pop3_show_aft:74,pop3d:[87,97,98,100,110,174,227,268,289,310,315,316,349,350,352,387,397,412,414,415,427,448],pop3newuidl:327,pop3proxyd:[87,99,100,352,448],pop3showaft:375,pop3test:[99,352,448],pop:[8,18,35,40,41,58,61,63,64,110,268,269,290,313,342,350,396,427,432,443],popd:143,popexpiretim:350,popminpol:[97,166,193,268,350],poppollpad:350,popsubfold:[102,350],poptimeout:[58,327,350],popul:[88,288,360],popular:[3,11,145,443],popuseacl:[100,350],popuseimapflag:[110,350],port:[11,18,68,74,96,97,98,102,219,220,221,222,270,276,293,296,301,302,310,315,349,350,375,378,387,407,421,422,423,424,425,427,428,429,430,431,433,436,448],portabl:[44,75,97,98,99,100,139,140,359],portaddr:379,portion:[276,350,421,422,424,425,427,429,430,431,443],pose:33,posit:[11,56,58,74,349,350],posix:[10,35,41,192,274],possibl:[3,6,11,18,25,41,44,45,52,55,56,57,58,59,63,68,74,80,88,95,97,98,99,100,108,251,254,255,256,267,268,274,276,278,279,287,288,289,293,305,308,321,322,331,340,343,349,350,375,404,411,421,422,424,425,427,429,430,431,433,440,446,449],post:[26,28,41,66,88,96,100,131,133,160,268,269,274,275,295,349,350,375,394,411,432,443,446,448],postabl:410,postal:[269,441,445],postconf:268,postfix:[3,41,87,287,293,301,325,350,446,448],postfold:336,postgresql:[12,18,49,107],postman:289,postmast:[33,350],postpon:98,postrot:268,postus:[63,275,350],potenti:[5,11,74,97,99,107,109,154,267,272,276,287,309,350,449],power4:340,power:[11,13,14,41,58,65,314,350,434],ppc:191,practic:[11,36,41,44,45,55,74,268,276,314],prade:[193,206],prancer_sync_host:370,pre5:181,pre:[42,44,49,56,58,65,74,81,99,156,176,178,181,182,183,184,185,186,187,188,191,268,275,276,293,310,322,343,349,350,369,374,446,448],preauth:105,preauthent:41,preauthor:[384,385,397],preced:[40,56,58,74,268,327,350],precis:[11,38,44,87,272],preclud:350,precomput:[75,196,232,244],predat:267,predecessor:350,predefin:[2,375,436,448],predict:[11,80,276,340],preemptiv:74,prefer:[3,6,28,41,49,51,71,87,95,96,97,131,146,160,268,293,301,320,331,338,339,350,374,404,432,449],prefix:[24,33,41,49,51,58,68,72,74,80,88,89,92,139,142,145,147,160,169,178,179,180,181,182,183,184,185,186,187,188,219,220,221,222,233,245,268,274,276,291,305,310,331,350,356,366,369,375,394,403,404,407,411],prefork:[74,87,141,268,276,289,293,301,303,349,354,379,380,382,384,385,393,395,396,397,399,410,414,415,446],pregener:[178,181,182,183,184,185,186,187,188],preliminari:[98,99,176,178,180,181,182,183,184,185,186,187,188,251,254,255,256],prematur:[68,350],prepar:[44,51,88,89,140,141,436,447,448],prepend:[284,350,394],prerequisit:[42,448],prese:5,presenc:[80,95,268,308,432],present:[33,56,58,69,74,91,96,133,153,154,224,246,251,252,253,254,255,256,268,272,281,287,295,310,348,350,360,369,375,377,412,421,422,424,425,427,429,430,431,446,449],preserv:[11,24,41,52,74,98,104,121,164,199,275,276,308,336,350,356,404,407],press:[313,449],presum:[56,74,288,314],pretend:[275,350],pretti:[44,45,74,79,272,278,287,340,365],prevent:[3,11,36,40,64,74,84,88,89,92,96,97,99,105,122,203,217,219,220,221,222,268,287,314,319,329,344,350,358,413],preview:[52,251,252,253,254,255,256,350,432],previou:[11,56,58,72,74,97,147,192,267,268,280,285,287,305,370,398,443],previous:[9,30,56,60,74,96,97,99,160,174,178,182,183,184,185,186,187,188,191,251,252,253,254,255,256,267,277,297,350,369,407],prevost:97,price:11,primari:[6,11,19,40,53,206,268,269,287,315,316,344,350,448,449],primarili:[6,11,277,350,387,443],prime256:350,prime256v1:[146,160,350],primit:59,princip:[41,268,274,301,350,351,375,412,413,432],principl:[9,11,80,277],prindevil:[136,141],print:[11,68,80,97,140,145,147,154,162,305,360,365,370,372,374,379,383,392,403,405,419,421,422,423,424,425,427,429,430,431],printabl:[27,97],printf:[68,97],prior:[4,7,9,10,30,74,81,88,93,97,160,191,200,251,254,255,256,267,268,275,296,331,349,350,374,407,440,441,445],priorit:11,prioriti:[11,74,350],priv:350,privaci:[5,97,262,263,267,354,380,382,394,396,399,414,443],privat:[13,35,161,192,226,268,293,322,350,375,421,422,424,425,427,429,430,431,436,443,446],privileg:[11,18,35,36,41,88,273,287,387,446],pro:290,probabilist:49,probabl:[9,15,18,30,41,47,51,55,58,62,64,72,74,98,102,160,267,276,277,286,289,305,308,328,343,356,375,404,412,446,449],probe:350,problem:[8,28,33,41,49,51,56,71,72,74,80,97,98,99,100,108,109,120,121,122,133,161,203,244,267,268,281,287,289,301,322,323,324,325,336,344,350,374,404,411,436,437,443,448],problemat:[11,75],proc:[10,60,64,68,96,97,153,156,268,281,297,316,329,350,370,448],proc_path:[10,96,157,268,281,350],proce:[75,80,412,440],procedur:[74,97,251,254,255,256,270,311,349,448],proceed:[48,72,287],process:[0,3,5,10,11,12,19,25,35,41,42,44,45,47,56,58,59,61,68,70,72,74,75,77,80,88,96,97,98,99,100,105,110,137,139,140,147,152,160,175,178,179,180,181,182,183,184,185,186,187,188,196,206,219,220,221,222,229,232,235,236,238,239,240,241,242,244,251,252,253,254,255,256,261,262,263,267,274,276,278,279,281,285,287,289,290,293,309,310,315,316,322,324,325,329,340,349,350,354,356,360,364,370,379,380,382,384,385,387,389,393,394,395,396,397,398,399,404,405,407,410,411,412,420,421,422,424,425,427,428,429,430,431,433,439,446,448],process_attende:448,processimip:[251,252,253,254,255,256],processor:56,procfnam:97,procp_result:[44,45],produc:[41,49,52,56,81,131,173,190,268,276,301,310,350,353,356,360,363,374,375,376,398,407,409],product:[2,11,18,51,81,99,220,221,222,293,329,340,350,433,436,445,448],profession:[0,340],profil:[3,53,432],profit:81,program:[2,41,56,74,80,97,98,99,160,268,278,310,319,321,329,331,334,350,355,356,395,400,401,413,418,420,421,422,423,424,425,426,427,429,430,431,446,448],programoutput:52,progress:[66,85,88,98,160,276,411,428,441],prohibit:[11,345,350],project:[12,50,53,71,80,81,82,83,84,86,87,160,174,269,320,353,436,440,441,442,443,444,445],prometheu:[93,210,211,212,213,214,215,216,217,219,220,221,222,285,350,398],prometheus_en:[285,350,398],prometheus_need_auth:[285,350],prometheus_stats_dir:[285,350],prometheus_update_freq:[285,350,398],promin:[11,331],promot:[74,81,106,314,350],prompt:[41,48,72,97,98,268,329,375,421,422,424,425,427,429,430,431,449],promstatsd:[223,285,350,352,448],prop:128,propag:[287,293,387],proper:[75,76,87,96,268,293,295,298,329,350,446],properli:[18,44,45,56,97,99,104,114,126,155,157,161,163,164,169,192,198,204,225,226,247,257,289,322,350,374,382,395,399],properti:[6,56,76,88,145,198,202,204,225,228,243,247,251,252,253,254,255,256,262,263,267,276,350,365,432],propfind:[88,131,191,251,252,253,254,255,256,268],propnam:131,proport:293,propos:[56,268,287,440],proppatch:88,proprietari:317,propstat:76,prot:[1,54,55,73,97,270,319,448],prot_addwaitev:[60,79,297],prot_fil:[74,97],prot_fill_cb:74,prot_flush:99,prot_printf:97,prot_removewaitev:[60,79,297],prot_select:297,prot_waitev:[60,297],prot_waiteventcallback_t:[60,297],protallow:68,protect:[11,18,41,57,68,74,82,83,84,86,87,93,97,98,115,147,174,195,227,235,236,238,239,240,241,242,287,350,354,360,380,382,394,396,399,400,414,421,422,424,425,427,429,430,431],proto:[74,87,349,379,380,382,384,385,393,395,396,397,399,410,414,415],protocol:[1,4,13,19,22,33,35,36,54,59,60,69,74,87,90,93,96,97,98,99,104,105,141,146,160,174,203,217,219,220,221,222,267,269,276,287,289,291,295,296,297,299,301,310,315,349,350,354,364,377,379,380,382,393,394,396,399,412,421,422,424,425,427,428,429,430,431,432,436,443,447,448],prototyp:97,protstream:[60,297],prove:[41,274],provid:[3,5,6,7,8,10,11,12,13,14,15,19,22,27,33,40,41,44,45,46,48,49,53,55,58,65,70,71,72,74,80,81,84,88,90,93,96,97,99,100,136,160,220,221,222,227,235,236,238,239,240,241,242,262,263,267,268,272,274,277,278,282,286,287,289,293,295,296,298,310,315,320,343,349,350,356,364,365,366,367,370,374,375,377,379,381,386,398,402,403,405,407,411,412,414,432,433,441,443,444,446],provis:[11,20,66,132,276,350],provision:[13,350],provok:350,prox:[100,114],proxi:[4,11,36,61,66,87,97,99,100,102,107,109,114,120,121,122,130,132,133,142,157,162,163,164,176,202,263,267,270,286,287,289,315,338,345,349,350,379,415,421,422,424,425,427,429,430,431,432,446,448],proxy_and_backend:350,proxy_authnam:[289,350],proxy_compress:350,proxy_password:350,proxy_realm:350,proxyd:[79,87,98,100,102,287,289,350,352,448],proxyd_allow_status_referr:350,proxyd_disable_mailbox_referr:[141,287,350],proxyserv:[97,145,289,350],prune:[305,332,353,369,416],pselect:[174,175],pseudo:[9,30,277,289,293,350],psuedo:47,ptclient:[5,97,205,206,281,296,350],ptdump:[97,165,352,448],ptexpir:[165,352,448],pthread:343,ptloader:[5,41,49,97,99,100,152,165,169,262,263,274,281,296,350,352,448],ptloader_sock:[281,296,350],ptr:75,pts:[97,350,401,402],pts_modul:[262,263,350,402],ptscach:[4,96,97,267,268,281,350,448],ptscache_db:[160,350,401],ptscache_db_path:[96,165,206,268,281,350],ptscache_timeout:350,ptskrb5_convert524:350,ptskrb5_strip_default_realm:350,ptsmodule_standard_root_dn:169,ptsock:[281,296,350],pub:39,publican:449,publicli:341,publish:[72,449],pull:[50,58,66,71,72,75,267,278,433,448],punctuat:[56,349],purchas:28,pure:[49,58,74,88,287],purg:[11,24,25,27,58,102,138,160,293,314,316,328,350,369,383,448],purifi:97,purpos:[11,18,22,28,36,41,44,45,55,63,80,93,99,160,207,209,210,211,212,213,214,215,216,217,234,235,236,248,249,258,259,264,265,266,268,279,281,289,310,314,344,350,364,412,448],purposefulli:25,purview:41,push:[27,36,48,50,53,58,72,74,160,178,180,181,182,183,184,185,186,187,188,251,252,253,254,255,256,270,287,288,310,350,448],pushdivert:268,pushsubscript:90,put:[1,11,15,19,36,41,56,72,74,75,88,97,268,291,293,301,316,349,350,360,423,428,448],pwcheck:[87,97,268,350],pwcommand:97,pwd:375,pwer4:340,python2:223,python3:[198,225,247],python:[49,52],q01:[82,83,84,86],qiu:247,qop:130,qosmark:350,qresync:[25,58,87,136,140,143,331,350,432],qualif:3,qualifi:[3,33,40,350,375,394],qualiti:[287,338],quantiti:28,queri:[47,66,88,93,125,131,132,226,238,241,242,244,251,252,253,254,255,256,275,277,286,291,325,345,350,379,448],querychang:350,question:[7,33,138,160,267,268,350,379,436,437,444,448],queu:[268,345],queue:[38,41,298,345,350,387,443],quick:[52,58,71,74,99,267,350,356,432,436,448],quicker:[236,238,239,240,241,242],quickest:51,quickli:[25,58,74,267,268,272,331,411,443],quickstart:[436,448],quiesc:[282,350],quiet:[350,389,403,404,406],quietli:[403,406],quit:[3,18,41,44,47,74,80,97,98,109,225,247,268,283,287,300,301,350,375,404],quot:[27,68,97,99,157,251,252,253,254,255,256,291,349,350],quota:[4,11,13,27,28,35,40,47,58,64,82,83,84,86,87,96,97,98,100,102,106,108,109,122,138,139,140,143,154,156,157,158,161,162,174,192,199,202,223,225,233,235,236,238,239,240,241,242,245,247,267,268,270,276,278,281,282,287,289,295,306,308,331,350,352,372,375,377,380,388,404,410,432,436,438,442,443,446,448],quota_db:[41,160,281,282,298,350],quota_db_path:[281,298,350],quota_legaci:6,quota_use_convers:350,quotachang:161,quotadb:[100,200],quotalegaci:[4,41,44,100,139,281,282,298,350,362,448],quotaroot:[6,74,99,100,102,143,158,281,287,350],quotawarn:[262,263,350],quotawarnkb:[262,263,350],quotawarnmsg:[298,350],quotawarnperc:[41,262,263,298,350],quotawarns:[262,263,298,350],quux:55,r7dfjm9k083763:374,race:[57,58,59,74,98,100,145,147,154,155,189,217,219,220,221,222,314,350],racl:[267,358],radio:449,raid:[11,58],raii:55,rain:[269,441,445],rais:[11,27,80,196,375],ralf:[160,444],ram:[7,96,281],ran:[11,80,290,443],random:[9,18,30,74,97,98,110,196,232,244,277,289,305,317,338,350],randomli:121,rang:[47,56,59,97,104,113,115,126,131,145,146,147,171,174,350,353,411,432],rank:419,rare:[22,44,154,287,289],raspberri:11,rate:[11,310,350,387],rather:[6,7,11,15,19,33,36,39,40,44,45,46,48,49,56,58,59,74,97,102,104,107,108,131,133,136,137,139,145,157,160,161,191,216,217,219,220,221,222,223,233,245,251,252,253,254,255,256,262,263,267,276,279,283,298,305,327,350,353,354,355,356,357,358,359,360,361,362,363,364,366,367,368,369,370,371,372,373,374,375,377,378,379,380,381,382,383,384,385,387,388,389,390,391,393,394,395,396,397,398,399,400,401,403,404,406,407,408,409,410,411,412,413,414,415,416,417,418],ratio:[276,356],rational:[287,322],raw:[44,58,88,268,276,356,372],rawx:350,raymond:444,rc1:[177,218,237,250],rc2:[72,177,250],rc3:177,rc4:177,rcpt:[40,98,268],rdate:76,rdn:5,reach:[9,30,166,193,277],reachabl:342,reactiv:74,read:[0,6,11,13,18,36,38,40,41,45,46,48,51,55,57,58,60,62,65,68,72,74,80,81,88,91,93,97,100,133,160,171,226,228,246,262,263,267,268,273,275,287,291,297,301,309,350,353,354,355,356,357,358,359,360,361,362,364,365,366,367,368,369,370,371,372,373,374,375,377,378,379,380,381,382,383,384,385,387,388,389,390,391,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,410,411,412,413,414,415,416,417,418,436,443,448,449],read_index_record:47,readabl:[6,19,41,57,71,88,262,263,267,305,350],reader:[41,47,58,100,353,394],readership:353,readi:[0,56,65,72,82,83,84,86,87,97,223,267,268,289,291,313,349],readir:107,readlin:[49,375],readm:[97,178,180,181,182,183,184,185,186,187,188],readonli:350,real:[11,12,40,41,74,80,215,216,217,219,220,221,222,236,238,239,240,241,242,251,252,253,254,255,256,315,340,381,434,443],realist:72,realiz:56,realli:[0,9,15,30,38,55,56,74,276,277,310,319,322,331,340,350,379,387],realloc:56,realm:[3,5,18,33,41,63,274,350,421,422,424,425,427,428,429,430,431],reappear:141,reason:[11,12,41,44,48,55,74,80,96,97,280,283,301,328,329,332,337,340,344,350,374,382,398,399,411,433,443],reauth:[99,421,422,424,425,427,429,430,431],reauthent:97,reboot:[41,268,328],rebuild:[41,72,74,80,88,178,181,182,183,184,185,186,187,188,214,215,216,217,219,220,221,222,267,276,308,339,343,356,357,361,404,407,420,448],rebuilt:[6,80,97,267,361],recal:56,recalcul:[41,267,308,357],receiv:[7,18,19,26,27,36,39,40,41,49,68,74,82,83,84,86,87,97,98,219,220,221,222,268,276,287,289,290,291,293,298,308,318,345,350,356,377,381,387,433,434,442,446],recent:[6,11,12,44,47,56,58,66,74,80,88,96,97,178,180,181,182,183,184,185,186,187,188,194,205,226,227,272,275,279,296,350,356,379,404],recenttim:74,recentuid:[47,74],recipi:[3,6,19,40,41,98,99,102,202,268,275,336,350,395,432,448],reckon:74,recno:47,recogn:[56,97,428],recognis:[74,150,151,167,168,194,195,197,198,225,227,230,233,245,247,251,252,253,254,255,256,257,267,370],recognit:175,recommend:[4,6,7,11,18,28,40,41,53,70,74,80,97,160,219,220,221,222,235,236,238,239,240,241,242,251,252,253,254,255,256,261,262,263,267,268,274,276,282,289,317,329,340,345,350,375,382,395,399,403,405,411,432,436,447,448],recompact:44,recompil:[95,178,185,186,187,188,268,276,338],recompress:74,reconfig:[74,350],reconfigur:[40,69,287,290],reconnect:[36,99,132,251,252,253,254,255,256,287,288,289],reconstruct:[6,58,97,98,99,104,106,108,117,121,122,136,137,145,152,154,156,157,160,161,162,163,173,191,199,203,224,246,251,252,253,254,255,256,270,276,302,316,350,352,357,388,436,447,448],record:[6,11,18,25,41,44,45,46,57,59,74,76,78,80,138,153,154,156,157,163,191,205,213,214,215,216,217,219,220,221,222,251,252,253,254,255,256,276,291,310,331,332,350,356,357,364,366,388,390,404,407,411,412,448],record_crc:58,recov:[11,24,25,28,41,74,104,203,251,254,255,256,267,268,276,286,302,305,331,332,339,349,350,358,404,418],recover:[11,276],recoveri:[11,25,44,64,97,105,136,139,150,164,276,287,289,350,357,411,436,438,448],recreat:[141,160,267,268,281,305,357],recur:[76,126,223,350],recurr:[350,432,448],recurs:[55,58,74,80,98,305,350,357,371,375,383,404,407,411],recursivematch:201,recv:[305,379,418],recycl:387,red:[2,12,81,316,448],redact:79,redbot:131,redefin:[229,296],redesign:97,redfish:[136,141],redhat:[49,70,321],redirect:[6,50,66,75,77,98,99,206,268,301,318,350,375,387,432],rediscov:[191,404],redistribut:81,redo:97,reduc:[25,41,47,55,66,74,90,97,102,106,122,139,267,268,287,301,342,350,356,369,411],reduct:[287,315],redud:99,redund:[3,4,41,97,251,252,253,254,255,256,340,345,448],ref:[82,83,84,86,87],refactor:[75,98,191],refcount:[44,47,74],refer:[3,5,6,7,12,14,19,33,40,41,47,55,58,59,60,82,83,84,86,87,96,97,98,109,122,139,140,146,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,233,245,251,252,253,254,255,256,267,268,269,270,271,272,274,277,281,287,289,291,297,301,303,310,311,314,317,350,375,387,411,432,446,448],referenc:[52,97,301,350,411,432],referr:[41,82,83,84,86,87,99,100,120,289,350,432],reflect:[97,160,287,291],reformat:58,refresh:[9,11,30,46,277,432],refus:[74,97,219,220,221,222,360,375],regard:[11,81,350,434],regardless:[6,7,11,41,44,45,56,91,109,273,275,282,350,377,407,440],regener:[41,75,267,276],regex:[192,205,227,301,350,432],regim:46,region:340,regist:[3,27,44,45],registr:[350,432,433],registrar:3,regress:[50,80,100,145,154,158,350],regul:24,regular:[33,44,45,49,52,58,59,71,88,98,100,267,276,301,310,327,331,350,369,411,432,435],regularli:[11,44,52,71,72,329,356,398],regulatori:[11,25],rehash:[99,142,143,144,282,350,352,448],reindex:[238,241,242,251,252,253,254,255,256,276,350,356,411,448],reindexti:411,reinsert:61,reintroduc:105,reject8bit:[97,350,377],reject:[41,74,75,97,98,99,113,156,161,164,203,206,226,228,251,252,253,254,255,256,267,268,301,316,325,344,350,377,432,448],rel:[11,30,58,267,276,293,350,356,375],relai:344,relat:[5,6,11,19,30,31,35,41,75,80,97,98,99,100,108,160,268,276,277,278,279,283,301,310,350,407,432,434,449],relationship:[5,276,350,354],relax:140,releas:[1,2,12,44,45,46,47,49,59,65,74,84,96,207,209,210,211,212,213,214,215,216,217,234,235,236,248,249,258,259,264,265,267,310,322,356,365,380,411,433,434,436,439,442,444,446,448,449],relev:[6,11,18,41,52,72,74,93,178,179,180,181,182,183,184,185,186,187,188,276,300,350,411,433,449],reli:[68,80,96,99,277,287,411],reliabl:[44,143,155,176,178,179,180,181,182,183,184,185,186,187,188,235,236,238,239,240,241,242,345,441],reload:[270,302,311,448],reloc:[87,267,281,375,406],relocate_by_id:[251,252,253,254,255,256,267,352,448],remain:[11,24,25,44,48,58,59,61,69,76,200,251,252,253,254,255,256,262,263,267,275,276,278,305,310,314,331,342,356,369,407,411,412,440,443],remaind:[40,80],remap:351,rememb:[18,48,56,72,74,98,267,277,366,433],remind:27,remot:[18,40,41,48,53,72,87,88,93,97,100,111,117,139,140,156,161,163,169,198,225,231,243,247,251,252,253,254,255,256,257,269,274,277,287,288,289,301,310,350,380,382,384,385,389,393,394,396,397,399,410,412,415,428,432,443,448,449],remotepurg:99,remount:449,remov:[7,11,24,25,27,36,40,44,45,51,56,57,59,60,61,62,74,79,87,88,95,97,98,99,100,102,104,105,121,136,142,156,160,174,189,191,199,203,206,212,213,214,215,216,217,219,220,221,222,227,233,236,238,239,240,241,242,245,251,252,253,254,255,256,262,263,267,268,272,275,276,281,287,289,290,297,299,304,305,308,314,328,331,350,357,358,360,366,367,369,373,374,375,387,411,412,432,440,448],removeflag:[75,267],renam:[19,24,36,58,59,77,96,97,98,99,100,104,105,108,109,122,141,142,145,147,154,156,158,160,162,163,172,175,178,180,181,182,183,184,185,186,187,188,190,199,217,219,220,221,222,275,287,289,301,305,311,331,350,356,375,405,448],renamemailbox:[305,311],render:[19,52,160],renew:97,renm:375,renounc:97,renown:444,reorder:231,repack:[47,57,58,59,65,154,366],repair:[11,74,251,252,253,254,255,256,270,322,350,404,448],repars:404,repeat:[52,58,175,225,247,276,350,412],repl1:310,repl1_shutdown:310,repl1_shutdown_fil:310,repl1_sync_host:310,repl1_sync_repeat_interv:310,repl1sync:310,repl2:310,repl2_shutdown:310,repl2_shutdown_fil:310,repl2_sync_host:310,repl2_sync_repeat_interv:310,repl2sync:310,replac:[11,44,45,47,49,52,55,60,66,74,76,90,91,97,100,133,136,160,191,196,232,244,268,269,275,277,284,289,297,301,305,322,350,357,432,443,446,449],replai:[158,310],repli:[11,58,68,88,97,100,287,293,350,448],replic:[1,3,4,6,18,25,47,51,54,58,64,74,87,96,102,104,105,108,109,110,117,120,121,122,125,136,139,141,150,152,156,158,162,175,178,179,180,181,182,183,184,185,186,187,188,189,196,197,199,200,203,219,220,221,222,228,231,233,235,236,238,239,240,241,242,243,245,251,253,254,255,256,262,263,268,270,287,295,302,350,354,360,364,404,407,411,412,414,431,436,442,446,447,448],replica:[11,18,61,108,121,152,154,251,253,254,255,256,276,281,287,291,315,350,360,411,412,414,446],replman:310,replyto:350,repopul:74,report:[0,24,41,49,80,88,95,97,98,99,109,112,131,140,147,154,156,158,163,164,165,166,189,190,191,192,193,197,199,202,205,206,223,226,233,245,262,263,267,268,285,344,345,349,350,353,356,360,368,374,381,388,398,403,404,407,411,412,432,445],repositori:[44,48,50,52,63,65,71,72,81,82,83,86,87,160,174,178,181,182,183,184,185,186,187,188,197,233,245,301,334,440,448],repres:[56,60,62,63,68,74,75,216,217,219,220,221,222,277,291,297,377],represent:[6,33,41,69,75,97,350,432],reproduc:[11,81,334],reput:268,reputedli:160,request:[9,11,19,30,36,41,44,50,57,58,60,62,66,68,71,74,88,89,92,97,125,130,131,133,169,178,180,181,182,183,184,185,186,187,188,192,198,223,225,245,247,267,277,287,297,301,350,374,378,379,395,407,412,432,433,434,436,437,446,448],requeu:41,requi:268,requir:[3,4,5,6,7,8,10,11,15,18,19,24,27,35,36,40,41,46,47,55,59,60,66,74,75,76,87,88,91,93,96,97,99,100,110,125,133,157,160,173,178,179,180,181,182,183,184,185,186,187,188,189,196,198,199,217,219,220,221,222,223,225,231,232,235,236,238,239,240,241,242,243,244,247,251,252,253,254,255,256,257,267,268,272,274,275,279,280,281,283,284,285,287,295,296,297,301,308,311,314,319,327,329,331,349,350,356,358,369,379,382,384,385,395,397,399,407,411,412,421,422,424,425,427,429,430,431,433,436,440,446,447,448],requisit:[294,448],reread:[98,349,387],rerun:80,reschedul:[60,79,297],rescu:[25,350],research:[112,140],resent:350,reserv:[33,59,61,74,81,99,192,200,287,288,289,358],reset:[4,99,100,205,413,448],resid:[6,7,15,27,36,41,88,89,91,92,160,279,280,283,287,291,293,331,350,418],resign:440,resili:74,resolut:[58,97,443],resolv:[11,40,75,98,206,267,268,287,289,290,350],resourc:[1,6,10,27,34,41,51,55,88,89,96,99,130,152,160,163,251,252,253,254,255,256,262,263,267,276,279,298,314,315,331,350,375,403,436,444,448],resource_acquisition_is_initi:55,respect:[9,27,28,30,40,68,80,93,100,102,208,215,216,217,219,220,221,222,235,236,238,239,240,241,242,275,279,287,340,350,356,369,375,407,446],respond:[11,33,36,74,268,272,291,344,350,354,379,380,382,384,385,393,394,396,397,399,410,415],respons:[6,18,25,33,44,46,58,60,61,66,74,88,89,92,97,98,100,102,105,106,107,108,109,114,117,122,130,131,132,133,139,140,146,154,155,156,158,162,178,180,181,182,183,184,185,186,187,188,192,200,232,233,244,245,251,252,253,254,255,256,267,268,272,275,286,287,297,312,315,316,331,349,350,387,421,422,424,425,427,429,430,431,432,440,448],rest:[3,11,36,44,51,55,58,59,72,74,75,203,267,276,293,310,350,428],restart:[44,59,72,74,100,228,267,268,276,279,289,290,293,309,310,325,336,341,349,350,387,412,449],restor:[24,41,97,106,162,272,288,305,308,331,350,352,355,360,364,376,388,390,404,418,448],restore_authnam:[350,407],restore_password:[350,407],restore_realm:[350,407],restrict:[5,11,14,33,34,41,56,59,74,231,243,290,293,298,349,350,411,448],restructur:[48,49,52,178,181,182,183,184,185,186,187,188],restructuredtext:[160,449],result:[3,6,11,18,19,25,33,36,40,52,55,56,63,68,72,74,75,80,81,88,97,102,131,142,160,191,193,223,243,262,263,268,272,287,289,291,304,310,314,319,321,324,325,331,333,336,345,350,357,366,374,387,411,432,449],resum:276,resurrect:205,resync:[33,289],resynch:289,resynchron:[97,287,432],ret:56,retain:[25,59,81,331,350,385,397],retent:[15,74,276],retest:80,retext:52,retri:[44,45,74,289,298,325,350],retriev:[3,6,9,30,76,97,272,277,293,331,346,350,378,423,432],retrofit:337,retyp:[82,83,84,86,87],reus:[55,74,98,99,100,108,130,168,195,268,350,421,422,424,425,427,429,430,431,432,448],rev1:312,rev4:[96,268,295,446],reveal:[266,441],revers:[36,40,57,74,100,178,180,181,182,183,184,185,186,187,188,251,252,253,254,255,256,344,349,350],reverseacl:[178,180,181,182,183,184,185,186,187,188,192,235,236,238,239,240,241,242,267,350,358],reverseuniqueid:[235,236,238,239,240,241,242,251,252,253,254,255,256,350],revert:[100,262,263,267,375],review:[7,23,53,71,99,289,293,370,440,446],revis:[53,58,441,443],revisit:[238,241,242],revoc:350,revok:271,rewit:47,rework:110,rewrit:[47,49,58,59,75,143,153,157,191,205,268,350,357,404],rewritecalendareventprivaci:267,rewritten:[58,59,99,136,350],rewrot:[98,102,107,129,131],rfc1234:55,rfc2046_strict:[99,350],rfc2047_utf8:[322,350],rfc3028_strict:[100,350],rfc3501:375,rfc3977:100,rfc4315:100,rfc6203:205,rfc822:[58,97,276],rfc:[6,8,12,13,14,27,33,34,36,41,55,56,68,88,90,91,93,97,99,103,121,122,169,178,180,181,182,183,184,185,186,187,188,208,209,210,211,212,213,214,215,216,217,219,220,221,222,235,236,238,239,240,241,242,251,252,253,254,255,256,262,263,269,271,272,275,278,287,291,300,301,312,322,323,327,331,336,344,350,363,375,377,378,428,442,443,448],rhost:74,rich:[14,271,350,443],richard:444,rid:[49,97],rider:[269,441],right:[5,6,7,11,14,33,44,51,55,72,76,80,81,82,83,84,86,87,88,89,92,98,99,103,105,160,163,267,268,270,271,274,278,293,301,313,327,330,350,353,375,377,379,392,448,449],rightmost:80,ripe:96,risk:[11,44,97,174,374],rivera:223,rjs3:63,rlist:[161,287],rlsub:287,rmgroup:293,rmnew:97,road:[269,441],roadmap:[436,439,448],rob:[98,444],robert:[154,444],robust:[6,105,139,202,436],roc:98,rock:[60,68,79,297],roland:139,role:[20,36,66,277],roll:[44,45,47,65,74,108,147,152,203,262,263,350,411,412,446],rollback:202,roncero:158,room:276,root:[5,6,11,18,27,33,51,58,92,97,108,122,143,162,267,269,270,274,279,281,287,289,293,298,300,306,307,310,330,331,350,369,375,388,403,404,411,444,446,448],rosenbaum:99,rotat:[7,64,268,310,315],rough:440,roughli:58,rougli:46,rouillard:154,round:[11,58],roundtrip:44,rout:[3,11,40,432],routin:[7,36,55,56,75,80,97,98,99,160,277,331],row:[33,74,268,350],rowid:6,royal:[269,441],rpath:[65,343],rpm:[82,83,84,86,309,319,339,433,449],rpost:293,rrule:[76,251,252,253,254,255,256,350],rs256:350,rs384:350,rs512:350,rsa:[10,82,83,84,86,87,216,217,219,220,221,222,350],rscale:125,rss:[93,124,131,141,268,287,322,350],rss_feed:350,rss_feedlist:[91,350],rss_feedlist_templ:350,rss_maxag:350,rss_maxitem:350,rss_maxsynopsi:350,rss_realm:350,rst:[48,52,72],rsvp:76,rsync:[65,191,267,411],rsyslog:[267,268],rtf:244,rudolf_sync_host:370,ruin:417,rule:[3,11,20,36,56,69,80,97,268,276,279,289,293,349,350,432],ruleset:268,rummag:[74,276],rumpf:102,run:[1,6,7,10,11,13,18,19,25,28,33,35,36,41,44,47,48,49,52,55,58,64,65,66,69,70,72,74,75,79,82,83,84,86,87,88,91,93,95,96,97,98,99,100,108,109,114,122,152,154,157,160,162,164,169,176,191,206,220,221,222,236,238,239,240,241,242,251,252,253,254,255,256,267,269,270,276,281,285,287,288,289,290,291,293,296,301,302,305,308,309,310,312,315,316,319,325,327,329,331,336,340,349,350,354,356,357,360,362,366,369,372,373,374,375,379,380,382,383,384,385,387,391,393,394,395,396,397,398,399,402,403,404,405,406,407,410,411,412,414,415,417,419,421,422,424,425,427,428,429,430,431,433,441,442,443,444,445,446,448],run_test:80,runawai:156,rundir:296,runner:64,runtim:[69,80,100,160,277,281,338,365,370],s01:[82,83,84,86,87],s_client:18,sa46093:[112,140],sacrif:287,sacrific:[287,411],safe:[48,55,61,72,74,142,164,268,276,287,315,316,398,405,448],safeguard:413,safer:[45,141,160,267,287,350],safeti:[8,97,100,106,219,220,221,222,356],sai:[11,44,45,72,80,97,268,275,276,315,318,331,340,356],said:[5,7,11,48,72,97,293],sake:160,salt:[18,432],sam:[293,330,353,375,444],samantha:74,same:[3,4,5,6,7,10,11,13,15,26,27,31,33,36,40,41,44,45,47,48,52,55,58,59,64,69,72,74,80,88,89,92,97,98,99,102,104,109,127,142,145,160,169,190,192,196,203,219,220,221,222,232,244,251,252,253,254,255,256,267,268,272,274,275,276,283,287,288,289,291,293,305,310,311,315,318,321,331,333,335,336,340,348,349,350,358,360,362,369,374,389,404,407,418,423,428,443,446,448],sampl:[2,15,40,64,90,189,268,279,280,283,284,293,310,351,411,436,446,448],san:[11,340],sandbox:[267,268,446],sane:[55,98,178,180,181,182,183,184,185,186,187,188,350],sanit:448,saniti:[61,64,121,268,350,374],sasl2:[49,87,267],sasl:[41,53,55,68,70,72,81,82,83,84,86,87,93,97,98,99,100,107,108,119,145,269,287,289,291,297,301,310,315,316,320,338,350,366,421,422,424,425,427,429,430,431,432,433,434,444,445,448],sasl_:[276,350],sasl_auth_mech:[41,274],sasl_auto_transit:[41,268,350],sasl_checkapop:99,sasl_client:68,sasl_maximum_lay:350,sasl_minimum_lay:[87,350],sasl_opt:350,sasl_prot_ani:68,sasl_pwcheck_method:[41,87,268,350],saslauth:[268,446],saslauthd:[82,83,84,86,87,268,315,350,446,448],sasldb2:268,sasldb:[41,268,350,446],sasldblistusers2:[87,268],sasldir:97,saslfic:97,saslpasswd2:[87,268,446],saslserv:100,saslv2:98,sat:[158,418],sata:11,satisfi:267,satur:11,saturdai:331,save:[19,41,47,56,61,72,74,98,109,139,168,195,262,263,299,310,329,339,350,423],saved:[213,214,215,216,217,219,220,221,222,432],savvi:[85,293],saw:391,sbin:[74,301],sbindir:[178,179,180,181,182,183,184,185,186,187,188],scalabl:[4,7,12,13,15,35,41,102,269,287,436,441,443,445,448],scalar:305,scale:[7,11,36,286,287,289,340,443],scan:[27,41,74,82,83,84,86,87,106,109,268,339,350,374,404,448],scanner:[268,374,448],scarf:109,scaveng:[41,339],scenario:[4,11,12,19,58,136,279,314,340,350,436,447,448],sched:88,sched_busytime_queri:448,sched_cancel:448,sched_declin:448,sched_deliv:448,sched_deliver_loc:448,sched_deliver_remot:448,sched_exclud:448,sched_pollstatu:448,sched_repli:448,sched_request:448,sched_tag:6,sched_vpoll_repli:448,schedul:[1,6,11,47,73,74,88,89,92,93,243,245,251,252,253,254,255,256,262,263,281,349,350,356,387,432,448],schema:64,scheme:[49,58,74,93,128,205,231,282,289,293,298,310,350,432],schiller:97,schmiedehausen:98,schult:100,schumach:206,scientif:81,scope:[5,11,40,94,350,443],score:[27,178,180,181,182,183,184,185,186,187,188,418],scott:[98,343],scp:267,scram:[93,219],scrape:285,scratch:[48,72,277],scratchi:55,screen:[97,374],screw:97,script:[1,7,33,36,41,48,49,51,69,72,74,75,93,97,99,100,102,122,138,142,160,166,193,199,203,226,228,235,236,238,239,240,241,242,251,252,253,254,255,256,262,263,267,268,270,276,278,281,287,289,293,324,327,348,350,356,375,386,389,391,408,409,415,417,419,423,428,432,446,448,449],scriptnam:375,scsp:350,sda2:11,sdata:47,sdb2:11,sdk:350,seal:[13,301,443,448],seamless:[13,443],seamlessli:276,search:[4,5,46,49,57,58,76,95,97,98,106,109,115,136,145,147,154,160,163,176,178,179,180,181,182,183,184,185,186,187,188,199,205,212,213,214,215,216,217,219,220,221,222,223,236,238,239,240,241,242,244,245,251,252,253,254,255,256,262,263,267,268,270,275,281,287,302,310,314,315,319,322,350,374,378,404,411,432,436,442,448],search_attachment_extractor_url:350,search_batchs:[65,284,350],search_engin:[65,178,179,180,181,182,183,184,185,186,187,188,284,350,411],search_fuzzy_alwai:[205,236,238,239,240,241,242,350],search_index_head:[65,284,350],search_index_languag:350,search_index_part:350,search_index_skip_domain:[236,238,239,240,241,242,350],search_index_skip_us:[236,238,239,240,241,242,350],search_indexed_db:[6,350],search_maxs:[251,252,253,254,255,256,262,263,350],search_maxtim:350,search_normalisation_max:[238,241,242,350],search_query_languag:350,search_queryscan:350,search_skipdiacrit:350,search_skiphtml:350,search_snippet_length:350,search_stopword_path:350,search_whitespac:350,search_xapian:411,searchabl:350,searchpartit:[279,284,350],searchtier:[279,284,350],searchtierpartit:[279,284,350],sec:[44,82,83,84,86,87,350],second:[11,41,47,55,56,58,64,69,74,79,88,97,157,268,269,274,276,285,287,288,289,291,301,310,315,349,350,351,354,357,367,369,379,380,382,384,385,387,394,395,396,397,398,399,401,404,407,410,411,412,418,432,441,449],secondari:[3,11,19],secondli:350,secret:[5,68,268,289,310,350,421,422,424,425,427,429,430,431,446,448],sect:9,section:[3,6,9,11,12,26,34,36,41,51,52,56,65,70,72,80,87,88,91,93,95,97,147,160,162,163,203,235,236,238,239,240,241,242,267,268,274,275,276,277,279,281,285,287,289,293,301,305,310,312,334,344,350,354,356,358,360,374,380,381,382,384,385,393,396,397,398,399,410,411,412,414,415,448,449],sector:[11,58],secunia:[112,140],secur:[3,5,7,10,18,35,36,41,53,68,71,72,82,83,84,86,87,99,107,108,113,120,128,146,171,172,275,302,315,329,350,354,380,382,394,396,399,414,432,436,438,440,442,448],securityapprais:99,see:[3,7,9,11,19,25,33,36,38,40,41,46,47,48,49,51,52,53,55,56,58,59,64,66,71,72,74,76,79,80,82,83,84,85,86,87,91,93,95,96,97,98,100,102,106,107,110,121,122,132,160,178,179,180,181,182,183,184,185,186,187,188,209,210,211,212,213,214,215,216,217,219,220,221,222,251,252,253,254,255,256,262,263,267,268,273,275,276,277,279,280,281,283,284,287,288,289,293,298,299,301,310,313,315,317,327,331,339,344,348,432,442,446,448,449],seed:[196,232,244],seek:[80,160],seem:[74,99,100,114,130,268,275],seemingli:26,seen:[4,9,13,27,30,41,44,55,56,57,58,61,74,88,97,98,99,100,102,104,106,108,121,136,145,152,153,154,155,158,191,225,229,247,251,252,253,254,255,256,272,273,275,276,277,281,282,287,289,293,327,350,353,372,373,375,389,404,428,448],seen_db:[58,98],seenstate_db:[160,350],seenuid:74,segfault:[100,114,146,150,151,168,172,173,174,195,206,225,230,247],segment:[3,227,287,350],segmul:99,select:[4,6,7,11,18,19,33,36,47,53,56,58,61,68,72,74,93,97,100,109,110,146,154,161,251,252,253,254,255,256,270,272,274,275,276,279,283,287,289,314,350,353,375,389,407,411,418,419,446,448],selector:[251,252,253,254,255,256,350,448],self:[28,82,83,84,86,87],selinux:303,selski:[440,444],semanag:303,semant:[46,47,56,59,71,98,99,287,432],semi:272,semicolon:56,semidelai:[25,350],send:[5,11,26,41,48,49,52,68,71,72,74,76,88,97,100,105,164,174,178,179,180,181,182,183,184,185,186,187,188,233,245,267,275,276,278,287,291,301,309,310,315,336,342,344,345,350,360,375,379,382,395,399,411,421,422,424,425,426,427,429,430,431,436,446,447,448],sender:[3,27,41,49,76,293,316,318,377,448],sendmail:[41,94,97,98,100,158,287,293,301,324,325,350,410,430,446,448],sendmail_auth_id:350,sens:[72,100,345],sensibl:[71,80,287],sensit:[33,97,98,287,350],sent:[10,26,27,33,39,41,44,52,62,74,97,100,154,216,217,219,220,221,222,262,263,268,287,289,291,301,305,308,327,344,350,367,371,373,374,375,388,404,411,418,433,449],sentdat:[58,388,418],sep:[64,366],separ:[5,6,7,9,11,19,24,25,30,31,33,36,40,41,56,58,63,68,69,70,74,75,88,91,93,97,98,102,103,152,158,160,179,180,181,182,183,184,223,268,275,278,279,283,289,291,305,310,314,331,340,349,350,351,353,356,367,374,375,382,389,392,399,406,411,417,418],seq:[104,388],seqdiag:52,seqnum:388,sequenc:[6,11,56,58,62,68,74,75,76,97,98,104,105,215,216,217,219,220,221,222,291,324,327,349,350,366,388,412],sequenti:349,serer:350,sergei:[166,193],seri:[2,56,72,84,96,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,234,248,258,264,267,301,349,350,366,433,436,440,448],serial:[75,340],serialis:59,serious:[97,154,325],serv:[11,36,91,93,97,102,276,287,291,293,310,327,344,350,377,380,382,394,396,398,399,404],servant:110,server:[1,4,5,6,8,9,10,11,12,13,15,19,24,27,30,33,40,44,46,47,48,49,51,54,66,68,69,70,72,73,74,76,80,81,82,83,84,86,87,88,89,90,91,92,93,94,96,97,98,99,100,102,103,104,105,106,107,108,109,110,111,114,116,117,118,119,120,121,122,124,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,146,147,148,152,153,154,155,156,157,158,160,161,166,173,178,180,181,182,183,184,185,186,187,188,193,196,198,225,228,231,235,236,238,239,240,241,242,243,247,257,267,268,269,270,274,275,277,278,279,282,283,285,286,288,293,295,296,298,300,303,312,313,314,315,318,327,331,340,343,344,345,350,353,354,360,363,370,378,379,380,382,384,385,392,393,394,395,396,397,399,402,407,412,414,415,418,421,422,423,424,425,426,427,428,429,430,431,433,434,436,438,441,443,444,446,447,448],server_side_tl:350,serverdomain:27,serverfail:223,serverfqdn:27,serverinfo:[106,173,350],serverlist:[9,30,109,277,289,350],serverlist_mod:9,serverlist_mode_soft_usage_limit:9,serverlist_mode_usage_reinit:9,serverlist_select_mod:[9,30,277,289,350],serverlist_select_soft_usage_limit:[30,289,350],serverlist_select_usage_reinit:[30,277,289,350],servermetadata:350,servernam:[74,88,89,92,93,289,301,350,375,378,412],serverport:27,servic:[2,3,6,7,9,11,18,27,30,35,40,41,49,55,68,74,81,82,83,84,86,87,93,97,98,99,100,110,120,124,133,136,141,147,160,161,163,175,178,179,180,181,182,183,184,185,186,187,188,203,219,220,221,222,236,238,239,240,241,242,267,268,270,276,277,281,285,287,289,293,294,296,301,302,310,311,313,315,316,341,350,354,366,367,370,375,379,380,382,384,385,387,391,393,395,396,397,398,399,402,407,410,414,415,421,422,423,424,425,427,429,430,431,432,436,443,445,446,448,449],service_abort:99,servicenam:100,session:[3,6,8,18,41,97,98,99,108,160,163,168,173,189,195,200,268,281,287,289,291,310,331,350,354,380,382,387,393,394,396,399,416,421,422,424,425,427,429,430,431,449],sessionid:[27,142,278,350],sessionst:66,set:[1,3,5,7,8,9,10,11,13,15,18,22,24,25,27,28,30,33,36,40,41,44,45,47,51,52,53,55,56,58,59,60,61,63,65,66,68,72,74,76,77,79,82,83,84,86,87,88,90,91,93,97,98,99,104,109,110,122,132,133,138,145,147,154,157,160,161,162,163,165,173,174,178,179,180,181,182,183,184,185,186,187,188,189,194,205,206,219,220,221,222,226,227,228,229,235,236,238,239,240,241,242,245,251,252,253,254,255,256,261,262,263,267,272,273,275,276,277,278,279,281,282,283,284,285,287,288,290,293,296,297,298,301,305,310,313,314,315,316,322,327,331,334,338,342,348,349,350,356,363,365,366,369,370,374,375,377,379,383,386,387,391,392,393,394,395,398,401,402,404,405,407,411,412,418,420,421,422,423,424,425,427,429,430,431,436,441,443,445,447,448,449],set_up:80,setacl:[27,40,109,163,275,287,345,350,375],setaclmailbox:[40,41],setannot:[161,214,215,216,217,219,220,221,222,350],setcreat:[228,251,252,253,254,255,256],setflag:[61,75],setgid:98,setinfo:369,setmd:375,setmetadata:[161,275],setquota:[40,41,98,109,287,289,299,307],setrlimit:[98,174],setseen:[41,61],setseen_al:108,settl:11,setuid:[97,329],setuidvalid:104,setup:[1,7,12,18,44,52,94,206,227,268,270,288,290,311,325,436,448],setupd:[228,251,252,253,254,255,256],sever:[11,19,36,41,52,56,72,75,96,97,98,99,100,105,107,131,132,267,268,279,281,289,290,291,296,298,340,441,446,449],severalfold:75,seward:80,sha1:[58,62,74,104],sha1sum:74,sha384:[82,83,84,86],sha:[87,93,267],shadow:[41,97],shake:[74,276],shall:[9,30,81,87,277,440],shape:11,shapelib:49,share:[4,5,6,13,19,27,36,44,47,49,57,58,59,69,74,88,89,90,91,92,96,97,100,102,104,130,139,142,152,155,161,178,180,181,182,183,184,185,186,187,188,189,192,206,215,216,217,219,220,221,222,225,244,247,251,252,253,254,255,256,271,275,276,277,279,280,283,284,286,287,289,293,315,316,327,341,343,345,350,375,383,411,446,448],sharedprefix:[33,350],sharedscript:268,sharedseen:[58,104,225,247,272,275,327,375],she:[33,48,72],shed:80,sheet:91,shell:[33,74,80,97,99,193,268,366,375,392,449],shini:51,shinier:[178,179,180,181,182,183,184,185,186,187,188],ship:[11,81,82,83,84,86,87,96,278,314,321,374],shm:10,shoot:7,shortcut:449,shorter:6,shorthand:[33,375],shortnam:350,should:[3,6,7,9,11,12,18,22,25,26,27,30,33,36,40,41,44,45,47,48,49,52,55,56,58,59,60,63,64,66,68,72,74,75,79,80,82,83,84,86,87,88,89,91,92,96,97,98,99,102,105,160,164,169,207,209,210,211,212,213,214,215,216,217,219,220,221,222,234,235,236,248,249,251,252,253,254,255,256,258,259,262,263,264,265,266,267,268,272,273,275,276,277,281,285,286,287,289,291,293,296,297,301,303,305,310,313,315,316,319,323,327,329,331,333,335,339,344,345,349,350,354,356,361,362,369,370,375,378,379,380,382,384,385,387,388,394,395,396,397,398,399,404,405,407,410,411,412,440,446,448,449],shouldn:[74,80,97],show:[1,13,33,53,58,66,72,74,77,80,88,89,90,91,92,93,99,130,140,141,142,154,268,272,276,287,293,308,350,360,364,366,370,373,375,379,389,441,446],showalt:444,shown:[15,52,87,276,293,314,349,364,389,417],shut:[74,96,97,99,160,251,252,253,254,255,256,276,342,350,354,379,380,382,384,385,394,395,396,397,399,405,410,412,436,447,448],shut_down:55,shutdown:[7,97,99,110,162,174,176,200,262,263,310,327,342,349,375,382,399,412],shutdown_fil:412,sibl:98,side:[5,11,13,19,36,56,57,93,97,98,107,146,160,279,291,301,350,412,414,432,448],siemborski:[98,444],siev:[1,4,7,13,27,33,49,51,69,73,74,80,87,90,96,97,98,99,100,102,106,109,122,136,138,140,143,145,146,160,163,166,178,180,181,182,183,184,185,186,187,188,192,193,199,203,205,206,209,210,211,212,213,214,215,216,217,219,220,221,222,225,226,227,228,230,235,236,238,239,240,241,242,244,246,247,251,252,253,254,255,256,262,263,268,270,276,278,281,282,287,289,295,315,316,318,327,344,347,348,350,352,359,372,375,380,382,384,385,386,389,393,395,396,397,399,408,410,412,414,415,417,423,428,432,436,438,446,448],sieve_allowreferr:[100,120,350],sieve_duplicate_max_expir:350,sieve_emit_bytecod:75,sieve_extens:[102,166,180,181,182,183,184,193,350],sieve_fold:[251,252,253,254,255,256,267,350],sieve_generate_bytecod:75,sieve_maxscript:350,sieve_maxscripts:[262,263,350],sieve_sasl_expect_unsolicited_cap:107,sieve_sasl_send_unsolicited_cap:[107,350],sieve_script:6,sieve_use_lmtp_reject:350,sieve_utf8fileinto:[107,350],sieve_vacation_max_respons:350,sieve_vacation_min_respons:350,sievec:[301,352,386,409,448],sievedir:[97,174,251,252,253,254,255,256,268,281,301,350,386],sievenotifi:[41,99,350],sieveshel:[99,225,229,247,301,352,423,448],sieveusehomedir:[97,268,281,301,350],sig:[160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,238,239,240,241,242,243,244,245,246,247,251,252,253,254,255,256,257,261,262,263],sighup:[98,219,220,221,222,309,349,350,387],sign:[28,48,53,72,82,83,84,86,87,97,127,140,163,291,336,350,441],signal:[58,98,200,309,327,349,350,381,387],signatur:[44,48,72,80,88,350,374,432],signific:[5,11,75,99,301,311,440,441],significantli:[74,100,106,160,287,312,411],sigsegv:[198,225,247,289],sigserv:289,sigterm:387,sigusr2:202,silent:[44,45,47,143,161,329,350,379],silli:98,similar:[8,9,11,18,47,49,56,66,74,75,77,80,93,108,267,268,276,283,286,287,289,291,293,301,305,310,315,349,411,443],similarli:[5,55,80,233,245,276,289,293,331,349],simon:[105,110,147,154,175,339,444],simpl:[48,55,56,58,59,66,74,75,79,80,91,97,98,100,267,268,286,289,291,293,305,350,375,432,436,440,443,446],simpler:143,simplest:[36,446],simpli:[11,41,55,60,74,75,79,97,160,203,289,293,297,300,343,421,422,424,425,427,429,430,431,446],simplifi:[58,75],simplist:11,simultan:[8,74,268,276,449],sinc:[7,9,11,18,25,30,33,35,44,46,55,56,58,59,61,69,74,91,97,98,99,100,102,103,104,105,106,107,108,109,110,111,114,116,117,118,119,120,121,122,124,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,148,152,153,154,155,156,157,158,267,275,277,287,289,290,293,301,305,308,328,331,332,338,343,344,350,360,370,377,378,411,436,443,444],sincest:229,singl:[3,4,6,8,11,13,36,40,44,45,55,56,58,68,71,74,75,80,91,93,97,100,105,178,181,182,183,184,185,186,187,188,193,196,197,232,233,244,245,273,276,278,281,284,287,289,291,298,305,310,314,315,340,345,349,350,357,369,407,411,412,441,448],singleinstancestor:[41,350],singular:11,sip:432,siriusit:140,sit:[7,61,66,340],site:[41,44,50,91,96,97,154,158,267,274,282,287,296,298,310,343,350],situat:[11,33,58,137,160,277,331,340],sivtest:[99,301,352,448],six:71,sixth:411,size:[6,9,11,15,27,28,30,41,55,56,58,59,62,74,75,97,98,100,106,107,108,109,142,147,196,235,236,238,239,240,241,242,251,252,253,254,255,256,262,263,276,277,278,279,302,305,311,316,327,329,332,350,356,357,383,387,388,404,418,432,443,448],size_t:127,sizeof:[46,55,80],skeleton:[68,268,289],skew:350,skip:[6,44,45,47,65,74,75,76,97,99,100,122,236,238,239,240,241,242,251,253,254,255,256,350,356,369,383,407,411,412],skiplist:[4,44,45,77,88,90,98,99,100,105,106,107,109,136,139,140,160,243,267,288,298,313,317,332,337,350,362,448],skiplist_always_checkpoint:350,skiplist_unsaf:350,skynet:310,slash:[33,98,268,375],slave:[11,87,122,287,289,393],sleep:[47,310,349,411],sleepycat:343,sleev:74,slide:6,slight:310,slightli:[44,74,79,133,160,289,310,344,350,445],slocal_localaddr:268,slot1:355,slot:[310,350],sloti30t15:27,slow:[6,11,28,109,138,223,277,279,316,317,350,356,369,443,448],slower:[11,15,51,55,137,279,310,314,350],small:[0,11,13,28,55,74,80,97,98,99,139,141,267,276,311,314,340,391,413,443,446],smaller:[11,15,74,205,276,298,350,383,412],smallest:80,smart:[11,262,263],smarter:97,smigielski:444,smilint:164,smime:90,smith:444,smithj:74,smmap:[96,268,295,410,446],smmapd:[96,100,268,295,349,352,446,448],smooth:411,smoother:[9,30,277],smoothli:84,smtp:[41,49,61,97,268,289,293,308,315,344,350,359,430,432,439,446,448],smtp_auth_authnam:350,smtp_auth_password:350,smtp_auth_realm:350,smtp_backend:350,smtp_host:350,smtpclient:350,smtpd:87,smtptest:[99,352,448],snakeoil:268,snappi:66,snapshot:[2,3,8,11,46,51,207,209,210,211,212,213,214,215,216,217,234,235,236,248,249,258,259,264,265,267,276,436,448],snip:418,snippet:[15,58,244,251,252,253,254,255,256,268,311,350,433],snmp:[98,100,219,220,221,222,236,238,239,240,241,242],snmpgen:99,snooz:[226,235,236,238,239,240,241,242,350,432],snow:[269,441,445],snuck:[152,223],sock_dgram:379,sockaddr_in:379,socket:[5,27,36,40,41,55,64,87,96,97,98,99,100,122,149,156,164,206,267,268,270,281,289,310,333,349,350,379,380,382,384,385,393,394,395,396,397,399,410,414,415,421,422,424,425,427,429,430,431,432,446,448],socketmap:268,socklen_t:98,soft:[55,277],soft_noauth:350,softer:350,softwar:[4,11,13,35,41,68,80,81,82,83,84,86,87,97,98,198,225,247,257,267,268,269,287,320,323,331,340,350,404,434,443,444,445,448],solari:[12,97,99,127,148,156,161,173,178,180,181,182,183,184,185,186,187,188],sole:[11,443],solut:[11,19,74,80,136,141,268,276,281,286,287,289,314,319,336,339,340,345,350,440,443],solv:[108,133,443],some:[7,10,11,24,25,28,31,33,40,41,44,47,49,51,52,55,56,58,60,61,65,71,72,74,79,80,84,87,88,91,93,96,97,98,99,102,109,115,141,145,147,152,156,160,163,189,191,203,223,228,232,244,245,262,263,267,268,273,275,276,278,279,281,283,287,289,291,293,297,301,305,309,310,314,319,321,325,329,334,337,338,340,343,345,349,350,354,363,374,375,377,380,382,394,396,398,399,404,405,411,414,433,441,442,443,446,449],somebodi:80,somehow:[74,289],someon:[0,59,72,74,276,336,449],someth:[18,26,44,48,49,55,58,61,72,74,76,77,78,80,99,267,268,278,280,293,301,305,313,315,322,334,340,343],sometim:[11,26,72,80,100,244,316,331,411,448],somewhat:[15,47,56,58,80,97,287],somewher:[11,48,51,58,72,74,268],soon:[25,44,45,74,100,277,309,339,350,411,446],soref:199,sorri:[74,97],sort:[41,44,45,46,56,58,74,80,82,83,84,86,87,96,98,104,138,141,178,179,180,181,182,183,184,185,186,187,188,291,301,308,327,350,366,404,419,432,442],sortcache_db:350,sortord:66,soth:98,sound:287,sourc:[2,5,27,41,44,49,51,52,53,55,61,65,71,72,80,88,90,160,161,164,178,180,181,182,183,184,185,186,187,188,190,267,268,270,275,287,289,310,320,331,334,350,361,411,412,432,433,436,440,446,448,449],sourceforg:[18,80],space:[3,6,7,9,10,11,15,19,28,30,41,52,53,55,56,58,64,68,71,74,93,97,109,139,140,142,160,164,190,206,268,276,277,278,279,283,287,289,291,298,300,305,332,350,353,368,389,406,411,418],spam:[27,33,41,160,178,180,181,182,183,184,185,186,187,188,301,350,375,388,404,418],spamtest:432,span:[74,126,219,220,221,222,287],sparc:104,spare:[11,58,340,345],sparingli:55,spawn:[96,98,309,310,315,342,349],speak:[3,11,36,41,262,263],spec:[56,310,403],special:[1,4,19,22,24,31,33,41,44,54,56,58,62,74,75,80,81,95,97,100,104,142,161,164,176,178,180,181,182,183,184,185,186,187,188,200,202,251,252,253,254,255,256,262,263,268,270,274,278,283,287,298,331,350,363,372,375,394,432,436,446,447,448],specialus:[161,375,442],specialuse_extra:350,specialuse_nochildren:350,specialuse_protect:350,specialusealwai:[208,209,210,211,212,213,214,215,216,217,219,220,221,222,350,432],specif:[6,7,8,11,24,40,41,44,48,49,55,56,58,66,68,72,75,76,91,97,98,99,100,147,160,163,168,191,195,203,262,263,268,275,276,287,289,290,310,313,320,322,344,345,346,349,350,356,357,366,369,370,374,375,379,388,404,407,411,432,434,436,447,448,449],specifi:[3,6,9,15,18,19,30,31,33,40,44,45,48,51,56,62,68,74,76,88,89,91,92,93,96,97,98,100,110,160,219,220,221,222,229,235,236,238,239,240,241,242,251,252,253,254,255,256,261,262,263,268,274,276,277,278,279,281,283,284,285,287,289,291,293,296,298,301,305,310,327,331,344,350,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,406,407,408,410,411,412,413,414,415,416,417,418,421,422,423,424,425,427,428,429,430,431,433,443,446,448],speed:[15,58,71,81,99,102,109,269,287,312,350,436,441],spell:[52,56,199,313,350],spellman:154,spelt:350,spend:[36,97],spew:97,spf:436,sph:102,sphinx:[49,52,178,181,182,183,184,185,186,187,188,192,198,199,212,213,214,215,216,217,219,220,221,222,225,247],sphinxcontrib:52,spice:51,spil:[150,164,203],spin:[15,97,121],split:[31,55,58,74,87,97,100,106,109,121,136,206,268,270,275,276,280,283,302,314,315,350,357,369,446,448],splitmeta:311,spnego:[93,432],spock:33,spoke:74,sponsor:102,spoof:41,spoofeddomain:374,spool:[7,11,13,15,31,35,40,57,65,74,87,97,109,122,262,263,267,268,270,276,280,282,284,287,293,302,310,311,331,350,355,360,368,370,388,389,391,404,412,418,446,448],spous:19,spread:[41,44,74,287,340],sql:[4,5,11,13,44,45,90,107,110,146,298,316,350,448],sql_:107,sql_databas:350,sql_engin:350,sql_hostnam:350,sql_passwd:350,sql_user:350,sql_usessl:350,sqldb:44,sqlite3:356,sqlite:[6,44,49,74,107,199,276,350,420],squat:[4,58,98,106,176,203,238,240,241,242,279,283,284,311,327,350,375,411,448],squat_decode_64:140,squatter1:411,squatter:[6,56,65,99,100,106,109,164,189,203,212,213,214,215,216,217,219,220,221,222,238,241,242,251,252,253,254,255,256,262,263,267,270,279,284,302,310,327,350,352,448],squattera:411,squirrl:97,src:[55,268],srcdir:99,srctier:411,srs:229,srs_alwaysrewrit:350,srs_domain:350,srs_hashlength:350,srs_secret:350,srs_separ:350,srvtab:[41,97,350],ssd:[11,15,139,279,314],ssf:[120,350,354,380,382,394,396,399,414],ssh:[61,448,449],ssl2:160,ssl3:160,ssl:[5,6,49,55,68,87,93,98,99,105,152,160,163,268,293,315,319,349,350,380,382,394,396,399,421,422,424,425,427,429,430,431,432,446],ssl_accept:105,ssl_ctx_load_verify_loc:68,sslv23:[98,174],sslv2:[98,113,146,174],sslv3:[113,146,174,432],sssd:[41,274],stabl:[2,11,12,48,52,56,72,81,84,87,96,158,161,162,163,164,165,166,169,170,171,172,173,174,175,176,189,190,191,192,193,199,200,201,202,203,204,205,206,293,340,433,436,448],stack:[56,75,80,100,138,350],stacktrac:448,staff:[11,41,274],stage:[47,48,64,72,74,90,99,100,200,262,263,276,278,331,350,412],stai:[9,30,53,277,289,383],stale:[74,96,276,310,314,356,366],stall:[178,183,184,185,186,187,188,231,243],stamp:390,stand:[7,231,243,268,275,277,280,287,412,446],standalon:[197,233,245,268,276,287,310,315,345],standard:[7,12,13,27,33,56,58,60,65,66,88,96,100,131,141,145,200,251,252,253,254,255,256,267,268,269,270,278,286,287,297,310,315,336,350,354,356,357,359,360,364,375,377,379,380,382,384,385,393,394,396,397,399,410,411,415,423,432,436,441,443,444,445,448,449],standardis:[223,226,243],stanza:281,start:[1,10,11,27,33,36,41,44,45,46,47,48,49,55,56,58,61,72,74,77,80,82,83,84,86,87,88,91,96,97,98,108,113,141,146,152,160,161,171,201,219,220,221,222,233,245,268,269,273,276,281,285,287,288,289,290,291,293,309,310,315,325,334,343,350,353,356,358,360,369,370,374,379,381,387,395,398,403,405,407,411,412,436,441,444,445,446,447,448],starttl:[18,68,82,83,84,86,87,97,98,105,107,156,163,164,173,203,268,289,350],startup:[44,45,74,97,136,174,243,251,252,253,254,255,256,267,281,289,310,315,342,349,350,360,398,407,412],stat:[97,189,199,210,211,212,213,214,215,216,217,219,220,221,222,223,276,285,350,356,398,404],state:[1,4,13,19,36,41,44,46,47,55,56,58,61,66,74,80,88,89,92,97,98,99,100,102,104,106,108,110,145,147,168,178,182,183,184,185,186,187,188,191,195,200,223,230,236,238,239,240,241,242,251,252,253,254,255,256,270,275,276,279,282,287,289,291,310,315,344,350,353,373,398,404,407,445,448],statedir:97,stateless:[44,66,90,315],statement:[55,75,140,143,228,246],station:[269,441],statist:[3,98,99,276,285,350,353,398],statoverrid:268,statscleanup:398,statu:[4,27,47,52,58,61,66,80,88,93,97,106,178,180,181,182,183,184,185,186,187,188,233,245,267,275,276,281,287,289,301,344,350,355,374,375,411,432,435,440,442,448],statuscach:[4,46,47,57,96,106,110,145,146,267,268,281,350,448],statuscache_db:[10,160,350],statuscache_db_path:[10,96,268,281,350],statusdata:47,std:[49,51,100],stderr:[68,100,355,387,412],stdin:[74,156,350,366,387],stdio:[60,68,297],stdout:[44,45,68,74,140,355,359,376,387,409,428],stefan:[112,140],stefano:223,steinar:97,stem:350,stemmer:350,step:[18,41,44,48,49,56,72,74,76,80,88,95,267,268,278,289,290,303,356],stepanek:444,stephen:340,stick:[48,287],still:[3,9,11,19,30,41,44,45,47,50,51,56,58,59,65,71,74,75,79,81,88,97,98,99,104,108,138,153,158,160,178,182,183,184,185,186,187,188,189,191,200,251,252,253,254,255,256,267,275,276,277,287,288,293,303,308,321,322,327,331,340,342,343,345,349,350,356,375,405,407,411,418],stipul:279,stock:[82,83,86,87,268],stomach:11,stonith:11,stop:[56,74,75,77,90,97,154,268,276,288,310,319,350,356,387,389,412,445,446],stopper:231,stopword:350,storag:[3,4,15,19,34,44,58,93,96,160,178,180,181,182,183,184,185,186,187,188,270,277,279,280,281,283,284,285,298,311,345,348,350,354,356,369,375,403,407,411,436,438,442,443,446,447,448],store:[6,9,11,13,15,22,27,30,31,33,36,44,45,46,47,56,58,62,69,72,74,76,88,93,97,98,100,122,160,178,183,184,185,186,187,188,196,206,220,221,222,228,232,244,251,252,253,254,255,256,267,268,269,276,279,280,281,283,284,287,289,293,298,301,305,310,314,315,316,340,345,350,354,357,373,375,378,380,382,386,393,394,396,399,407,411,412,420,432,443,446,448],storm:[24,99,160],straight:[44,45,65,75],straightforward:[277,287],strang:[44,80,289,350],strarrai:200,strategi:11,strcmp:[55,196,232,244],strconcat:[80,140],strdup:55,stream:[26,55,56,60,74,79,97,126,226,291,297,340,356,364,432],strength:[82,83,84,86,87,350,354,380,382,394,396,399,414],strerror:97,stress:[11,70,72,421,422,424,425,427,429,430,431],stretch:[36,444],strict:[350,432],stricter:158,strictli:[11,15,152,160,173,279,280,333,350],strike:98,string:[6,33,41,44,45,55,56,58,62,74,75,88,93,95,97,98,99,100,137,162,196,198,225,232,243,244,247,251,252,253,254,255,256,257,274,279,283,284,289,310,349,350,361,374,375,407,411],stringi:[51,267],stringlist:[75,99],strip:[19,58,88,350],strlcpy:[99,448],strncpy:448,strndup:55,stromso:172,strong:[338,344,350],strongest:[421,422,423,424,425,427,429,430,431],strongli:[40,160,267,289,310,417],strstr:68,struct:[46,47,55,56,58,59,60,68,80,297],structur:[1,6,11,44,45,47,51,54,55,58,59,60,74,75,97,98,102,161,268,283,284,289,297,298,310,315,328,350,361,443,446,448],struggl:52,sts:55,stub:[99,229],stuck:204,student:443,studio:175,stuf:11,stuff:[52,74,97,297,340,374,420,449],stupend:268,stupid:97,style:[18,41,52,55,58,91,178,179,180,181,182,183,184,185,186,187,188,251,252,253,254,255,256,267,274,350,363,375,392,417,448,449],stylesheet:[91,350],styx:205,sub:[4,19,33,41,58,62,74,76,80,93,97,98,109,152,155,275,281,289,299,305,308,350,356,364,370,375,389,404,411,448,449],subaddress:[301,350,432],subcommand:[41,219,220,221,222,235,236,238,239,240,241,242,251,252,253,254,255,256,261,262,263],subdirectori:[41,51,58,88,97,197,233,245,276,329],subdivid:350,subfold:[9,19,30,33,41,63,102,139,141,142,191,273,277,305,316,350,448],subj:[305,388,418],subjct:418,subject:[3,7,8,11,27,49,58,66,79,98,100,125,163,179,180,181,182,183,184,185,186,187,188,190,200,226,272,275,305,350,353,374],submailbox:[63,74,289,371,406,407],submiss:[3,41,227,275,350],submit:[1,36,50,53,71,97,275,350,418,436,440,448],submitserv:350,submitt:440,subpart:58,subprotocol:[90,432],subscrib:[6,7,19,41,52,82,83,84,86,88,100,132,137,160,275,287,289,308,315,350,353,419,434],subscript:[4,7,27,44,74,77,86,97,98,99,108,125,143,246,276,278,281,282,289,350,372,448],subscription_db:[160,350],subsequ:[6,55,97,160,164,196,232,244,251,253,254,255,256,293,327,331,350,366,375],subset:[88,89,92,287,301,315,357,411],subshel:375,substanti:[100,203],substitut:[35,48,72,268,279,283,350,374],substr:[56,99,141,350],subsystem:[44,56,58,59,99,100,122,136,403,448],subtl:[80,98,305],subtract:350,succe:[44,45,47,59,68,77,80,82,83,84,86,87,109,160,178,179,180,181,182,183,184,185,186,187,188,267,275],succeed:[74,197,233,245],success:[4,11,18,19,26,41,44,45,47,55,68,74,80,82,83,84,86,87,99,164,268,275,287,291,298,345,350,446],successfulli:[11,19,82,83,84,86,87,106,219,220,221,222,275,289,291,349,350,356,423],successor:[275,340],suck:[44,46,59,72],suddenli:74,sudo:[49,51,80,87,267,268,334,446],suffer:160,suffici:[11,18,25,105,268,350,411,446],suffix:[74,216,217,219,220,221,222,350,369],suggest:[96,98,268,276,290,319,322,324,340,343,345,440],suid_dump:329,suit:[1,15,51,60,70,74,88,89,90,91,92,93,98,268,297,305,315,350,446,448],suitabl:[11,40,48,99,267,268,276,291,314,315,446,448,449],sum:[9,30,41,71,74,277,299,350],summari:[27,49,80,317,434],summer:441,sun:[97,174,175,418],sundai:331,superb:[269,441],supersed:379,supervis:108,suppli:[5,11,41,68,74,93,97,99,100,130,322,343,360,362,366,369,421,422,424,425,427,429,430,431,433],support:[2,4,7,10,13,23,27,34,40,42,44,49,52,55,56,58,59,68,69,71,74,80,82,83,85,86,87,88,90,96,97,98,99,100,102,104,105,107,109,113,114,115,117,121,122,125,130,131,132,133,136,138,140,142,145,146,147,153,156,161,162,163,164,174,175,176,178,179,180,181,182,183,184,185,186,187,188,189,192,193,197,199,200,203,204,206,209,210,211,212,213,214,215,216,217,219,220,221,222,227,229,233,235,236,238,239,240,241,242,245,251,252,253,254,255,256,262,263,267,268,269,270,272,276,278,279,284,285,287,289,293,298,310,315,316,317,322,331,337,338,340,343,349,350,359,364,366,369,374,375,390,403,404,411,412,418,421,422,423,424,425,427,429,430,431,436,442,443,445,447,448],support_referr:198,suppos:[3,5,7,9,11,30,59,63,97,100,275,276,277],suppress:[6,13,33,51,58,97,98,99,104,139,141,155,268,271,305,316,327,332,350,389,406,448],suppress_cap:[141,350],sure:[7,12,44,47,48,49,53,55,66,72,74,87,96,100,160,228,267,268,276,289,290,293,295,301,309,314,315,319,325,329,339,343,349,350,358,404,435,446],suri:[113,158],surnam:19,surpris:[84,289],surround:449,survei:267,surviv:268,suse:[12,98],suspect:[79,276,289,315],sustain:[160,445],svg:449,svn:[80,449],swap:[33,53,97,267],sweep:[59,387,401],swiftli:11,symbol:[80,193,231,350],symlink:[59,98,178,179,180,181,182,183,184,185,186,187,188,399],sync:[53,58,61,64,65,74,78,87,108,141,173,203,219,220,221,222,268,276,281,287,288,291,315,350,360,372,411,412],sync_:[139,276,310],sync_apply_renam:74,sync_authnam:[310,350],sync_batchs:[178,183,184,185,186,187,188,310,350],sync_cache_db:[236,238,239,240,241,242,350],sync_cache_db_path:[236,238,239,240,241,242,350],sync_client:[64,74,104,108,122,138,145,150,152,176,178,180,181,182,183,184,185,186,187,188,228,251,252,253,254,255,256,276,310,315,350,352,354,360,372,414,446,448],sync_compress:[110,310],sync_crc:[74,154,161],sync_crc_annot:74,sync_host:[310,350,412],sync_lock:412,sync_log:[65,74,276,310,315,350,411],sync_log_chain:[310,350],sync_log_channel:[65,74,276,310,350,411,412],sync_log_fil:412,sync_log_mailbox:47,sync_log_unsuppressable_channel:[310,350,411],sync_mailbox_ful:141,sync_password:[310,350],sync_port:[310,350],sync_realm:[310,350],sync_reconnect_maxwait:[251,252,253,254,255,256,350],sync_repeat_interv:[310,350],sync_reset:[139,153,352,448],sync_response_pars:315,sync_restart:[197,233,245],sync_rightnow_channel:[236,238,239,240,241,242,350],sync_send_lookup:315,sync_serv:[61,74,104,109,122,143,154,174,251,252,253,254,255,256,276,310,315,350,352,407,412,448],sync_shutdown_fil:[310,350,412],sync_sieve_list_gener:74,sync_timeout:350,sync_try_imap:[310,350],syncappli:200,syncclient:[310,360,412],syncget:200,synchron:[11,68,93,97,121,122,270,286,287,288,289,310,360,412,414,432,443,448],synchronis:[66,74,90,224,246,276,315],synclog:411,synclogfil:411,syncnew:97,syncproto:199,syncrestor:200,syncserv:[310,414],syncstop:310,synctest:[276,352,448],syndic:432,synopsi:[310,350,448],syntact:[97,360],syntax:[15,18,40,52,97,301,319,322,350,375,432,449],synthet:[310,350],sys:329,syscal:340,sysconfdir:281,sysconfig:314,sysctl:[41,274],sysexit:[215,216,217,219,220,221,222],sysflag:[388,418],syslog:[51,97,100,139,142,150,156,167,194,203,215,216,217,219,220,221,222,227,267,350,395,404,411,436,438,447,448],syslog_facil:350,syslog_prefix:[268,350],syslogd:100,system:[0,1,3,4,6,11,13,15,18,19,33,36,41,44,47,49,51,55,58,61,64,68,70,74,77,80,82,83,84,86,87,93,96,97,98,99,110,137,143,144,152,155,158,162,175,176,192,193,223,228,251,252,253,254,255,256,266,267,268,269,270,272,275,276,280,282,287,289,301,303,308,310,316,321,327,329,342,345,349,350,353,356,358,375,387,405,411,412,413,414,432,436,437,440,441,443,444,445,446,447,448,449],systemctl:[84,267],systemrc:375,t1searchpartit:65,t227:147,t229:147,tab:[6,41,55,71,97,140,313,356,366,449],tabl:[1,6,18,74,76,88,97,99,100,196,232,244,268,349,350,353,374,387,448],tabul:268,tag:[1,2,11,42,48,68,76,80,91,97,203,266,275,287,291,350,432,436,448],tagged_abov:27,tahr:87,tail:51,tailor:[41,267,296,298],takatukaland:98,take:[7,11,19,25,33,36,40,44,45,46,51,52,55,56,57,58,59,68,71,72,74,75,79,80,81,96,97,98,99,102,122,262,263,267,268,269,276,277,287,289,291,301,303,316,327,331,340,349,350,373,387,407,419,420,441,442,448],taken:[7,11,80,100,276,350],talk:[3,6,15,66,71,74,160,287,289,310,325,343,350],tamplin:102,tape:310,tar:[48,51,72,74,81,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,238,239,240,241,242,243,244,245,246,247,251,252,253,254,255,256,257,261,262,263],tarbal:[2,48,49,72,96,164,178,181,182,183,184,185,186,187,188,233,245,446,448],target:[3,7,9,11,27,30,36,52,61,63,64,76,80,98,152,178,179,180,181,182,183,184,185,186,187,188,267,275,276,310,318,350,374,412,414],tartaru:65,task:[11,33,36,47,49,58,59,66,90,109,126,146,161,162,169,170,171,172,174,175,276,281,349,350,369,375,411,448,449],tast:285,tasti:74,tcl:[97,98,267,375],tcl_rcfilenam:97,tclconfig:97,tclsh:97,tcp4:349,tcp6:349,tcp:[41,96,138,139,268,287,289,294,295,296,303,310,342,349,350,446],tcp_keepal:[342,350],tcp_keepalive_:342,tcp_keepalive_cnt:350,tcp_keepalive_idl:350,tcp_keepalive_intvl:350,team:[12,38,50,53,81,85,87,96,97,175,268,428,433],tear:44,tear_down:80,teardown:[1,448],tech:[41,52,81,353,359,404],technic:[3,40,56,233,245,411,440],techniqu:[11,340],technolog:[5,11,13,26,81,280,283,314,441,443],teged:191,tel:[251,252,253,254,255,256],telemetri:[41,51,97,99,131,134,281,297,316,350,354,380,382,393,394,396,399,448],telemetry_bysessionid:350,tell:[11,31,42,46,71,74,80,97,164,279,283,289,290,291,293,319,350,354,380,382,394,396,399,404,411,412,414,433,448],telnet:[267,268,301,313,433],temp:[74,284,313],temp_path:[276,350],tempfail:345,templat:[52,76,91,93,216,217,219,220,221,222,350,373,374],temporari:[4,41,45,74,77,88,97,99,268,298,303,345,350,411,443,448],temporarili:287,tempsearchpartit:284,ten:[196,232,244,332],tenant:33,tend:[9,11,30,44,84,276,277,281,331,349,382,399],term:[11,33,36,49,74,75,109,226,268,322,331,350,375,411,418,449],termin:[36,52,55,56,58,68,75,99,100,268,301,329,349,350,366,387,411,449],terminolog:[286,302,331],terribl:289,test:[0,27,40,42,44,49,50,52,53,59,71,74,75,90,97,98,99,100,178,179,180,181,182,183,184,185,186,187,188,191,196,199,203,207,209,210,211,212,213,214,215,216,217,220,221,222,223,226,227,234,235,236,248,249,258,259,264,265,266,267,270,288,289,290,293,329,334,342,350,365,395,418,421,422,424,425,426,427,429,430,431,432,436,442,444,447,448],test_iovec:80,test_map:80,test_uncast_nul:80,test_whatev:80,testabl:80,testb:154,testc:80,tester:[0,70],testfold:27,testfolder_renam:27,testrunn:[51,225,247],testsaslauthd:[18,82,83,84,86,87,268,446],testslist:75,text1:80,text2:80,text:[5,6,27,48,49,51,52,56,58,68,74,80,81,87,97,98,100,102,147,178,181,182,183,184,185,186,187,188,198,225,228,244,247,251,252,253,254,255,256,288,339,350,356,357,359,366,374,398,411,418,432,433,449],tfz:48,than:[0,6,7,9,11,12,15,18,19,27,30,33,35,36,40,41,44,45,46,47,48,49,55,56,58,59,61,62,74,75,82,83,86,87,97,100,102,104,107,108,131,132,133,136,137,139,145,156,157,160,161,191,198,216,217,219,220,221,222,223,225,233,245,247,251,252,253,254,255,256,257,262,263,267,268,272,275,276,277,279,283,287,289,291,298,301,305,310,320,327,331,333,344,349,350,353,354,355,356,357,358,359,360,361,362,363,364,366,367,368,369,370,371,372,373,374,375,377,378,379,380,381,382,383,384,385,387,388,389,390,391,393,394,395,396,397,398,399,400,401,403,404,406,407,408,409,410,411,412,413,414,415,416,417,418,421,422,424,425,427,429,430,431,440,448],thank:[97,98,100,109,110,112,113,137,139,140,141,146,147,150,151,154,158,160,161,162,163,164,165,166,168,172,173,174,175,176,178,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,198,199,202,203,205,206,216,217,219,220,221,222,223,225,226,227,228,229,230,231,233,236,238,239,240,241,242,243,245,246,247,251,252,253,254,255,256,262,263,449],thei:[3,7,9,11,15,19,22,25,30,33,36,38,40,41,44,45,47,48,51,55,57,58,65,72,74,78,79,80,81,88,93,96,97,99,141,160,162,166,174,178,181,182,183,184,185,186,187,188,193,208,223,251,252,253,254,255,256,262,263,267,268,269,275,276,277,279,280,281,287,288,289,291,293,295,299,301,308,309,310,315,322,328,331,333,334,340,343,344,349,350,358,369,370,375,382,387,390,398,399,407,441,443,446],them:[3,6,7,10,11,18,25,31,41,44,45,47,48,49,51,55,56,57,58,59,66,71,72,74,75,80,81,88,89,90,92,96,97,100,102,104,160,174,191,219,220,221,222,251,252,253,254,255,256,267,268,272,275,276,283,287,289,291,293,295,299,301,305,315,322,334,341,345,350,356,374,375,378,382,387,392,399,403,404,407,411,412,418,420,443,446],themovieposterpag:374,themselv:[6,28,41,55,56,76,96,146,160,271,272,279,287,289,349,350,404,415],theoret:[44,287],theori:[11,308],thereaft:5,therebi:[11,287],therefor:[3,9,11,26,36,38,41,58,84,96,191,276,312,330,331,344],therein:[11,281,314,388,411],thereof:[11,24,55],thewrittenword:100,thi:[0,1,3,4,5,6,7,8,9,10,11,12,13,14,15,18,19,25,26,27,28,30,31,33,34,35,36,38,40,41,44,45,46,47,48,49,50,51,52,53,55,56,57,58,59,60,61,62,63,64,65,66,68,69,70,71,72,74,75,76,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,96,97,98,99,100,102,104,105,107,109,141,143,144,145,146,147,152,154,155,158,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,219,220,221,222,225,233,234,235,236,238,239,240,241,242,245,247,248,249,251,252,253,254,255,256,257,258,259,261,262,263,264,265,266,267,268,269,272,273,274,275,276,277,278,279,280,281,282,283,284,285,287,288,289,290,291,293,296,297,298,299,301,303,305,308,310,311,312,313,314,315,316,318,319,321,322,324,327,329,331,332,334,336,338,339,340,341,342,343,344,345,349,350,353,355,356,357,358,360,361,363,364,365,366,367,369,370,372,373,374,375,377,379,380,382,384,385,387,388,391,393,395,397,398,399,404,405,407,411,412,413,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,434,436,441,442,443,444,445,446,448,449],thin:80,thing:[3,11,15,41,44,45,47,55,60,72,74,80,81,96,99,136,141,145,152,267,268,274,276,278,281,287,293,297,308,322,325,339,340,350,403,405,446,448,449],think:[0,11,40,44,46,55,61,72,74,80,81,288,340,350,404],third:[19,27,41,47,70,74,75,97,110,269,278,350,357,367,398,411,441],thoma:[27,110,113,140,147,172,174,225,374],thomas_cooper94:374,thomson:432,thorough:289,those:[1,3,5,6,9,11,30,33,40,44,47,71,72,74,76,80,87,88,89,91,92,96,99,133,160,262,263,267,268,275,276,277,281,282,283,286,287,288,289,291,301,310,315,321,339,340,349,350,354,357,360,366,367,370,377,380,382,383,384,385,393,394,396,397,399,410,411,412,415,421,422,424,425,427,429,430,431,446],though:[3,5,33,36,44,55,56,72,74,84,97,99,100,275,278,287,289,291,331,340,343,350,379,412],thought:[1,74,436,448],thousand:[3,36,196,232,244,340],thrash:55,thread:[56,80,82,83,84,86,87,98,100,139,141,146,157,178,179,180,181,182,183,184,185,186,187,188,268,289,293,327,343,350,432],threadid:[251,252,253,254,255,256,278,350],three:[3,5,6,7,24,33,36,40,44,45,56,75,275,284,287,291,331,411,432,449],threshold:[15,27,41,74,412],throttl:411,through:[4,7,11,12,13,19,22,35,36,41,44,46,47,50,55,58,72,75,80,86,93,96,97,99,157,160,268,272,274,275,276,277,287,299,301,331,332,348,349,350,375,388,411,432,433,436,440,443,448],throughout:[3,18,44,45,56,58,98,99,305],throughput:[104,287,325],thu:[7,9,30,33,41,56,104,268,274,276,277,279,287,289,305,349,350,388,449],thumb:11,tibbit:205,tibbitt:199,tick:351,ticket:[5,11,41,433],tickl:97,tidi:[74,141,154,199],tie:51,tied:71,tier1:[279,284,350],tier1searchpartit:[279,284,350],tier:[6,15,65,270,279,350,411,448],tilt:310,tim:[301,428,444],time:[0,3,6,7,9,11,12,15,25,27,30,36,41,44,47,48,53,55,56,58,60,64,72,74,79,80,89,92,93,96,97,98,99,102,104,106,109,122,126,132,136,140,141,154,155,156,158,160,216,217,219,220,221,222,236,238,239,240,241,242,262,263,267,274,276,277,278,287,289,290,291,293,297,305,310,315,320,321,327,331,339,340,342,349,350,353,354,356,364,369,375,378,379,380,381,382,383,384,385,387,390,394,395,396,397,398,399,407,410,411,418,421,422,424,425,427,429,430,431,432,434,443,444,445,448],time_t:[58,60,223,297,327],timefram:11,timeout:[41,80,100,114,138,147,163,223,251,252,253,254,255,256,325,350,354,379,380,382,384,385,394,395,396,397,399,410,412,432],timer:350,timespan:350,timespec_to_timev:228,timestamp:[6,27,58,61,72,74,97,145,278,305,309,350,356,378,432],timestamp_gener:64,timezon:[6,27,51,58,71,88,97,133,191,219,220,221,222,350,361],timonei:444,timotheu:205,timsiev:[33,87,96,97,98,99,100,105,120,139,150,173,203,268,289,295,301,315,349,350,352,380,382,384,385,387,393,396,397,399,410,414,429,446,448],tini:[136,223,276],tinyint:18,tip:[41,71,274,325,448,449],titl:[301,449],tld:[301,335,336,350],tls1_0:[146,160,350],tls1_1:[146,160,350],tls1_2:[146,160,350],tls1_3:[192,350],tls:[82,83,84,86,87,142,223,297,350,421,422,424,425,427,429,430,431],tls_:100,tls_ca_:160,tls_ca_fil:[160,350],tls_ca_path:[160,350],tls_cert_fil:[160,350],tls_cipher:350,tls_cipher_list:350,tls_client_ca_dir:[160,268,350],tls_client_ca_fil:[160,268,350],tls_client_cert:[160,350],tls_client_kei:[160,350],tls_compress:[146,160,174],tls_crl_file:350,tls_eccurv:[146,160,350],tls_key_fil:[160,350],tls_prefer_server_ciph:[146,160,350],tls_prune:[164,202,268,281,349,352,448],tls_requir:[93,173,350],tls_server_ca_dir:[160,350],tls_server_ca_fil:[160,350],tls_server_cert:[160,216,217,219,220,221,222,268,350],tls_server_dhparam:350,tls_server_kei:[160,216,217,219,220,221,222,268,350],tls_session:[4,96,164,202,267,268,281,350,448],tls_session_timeout:[268,350,416],tls_sessions_db:[160,281,350],tls_sessions_db_path:[96,160,268,281,350],tls_version:[146,160,174,350],tlscache_db:[160,350],tlscache_db_path:[160,350],tlskei:[173,375],tlsprune:[268,281,349],tlsv1:[82,83,84,86,87,98],tm_gmtoff:97,tmartin:428,tmp:[44,51,74,77,267,289,301,313,329,350,359,362],tmpf:[59,96,139,267,268,281,314,316,350,411,448],tmpfile:99,tocdepth:199,todai:[8,11,269,441],todd:353,todo:[6,299,448],toe:44,toedtmann:98,togeth:[7,52,58,71,160,268,350,387,446,448],token:[44,82,83,84,86,87,97,251,252,253,254,255,256,319,350],tokenis:227,told:[80,233,245,276,349],tom:[117,287],tombston:195,tomorrow:11,ton:[49,51],toni:98,too:[5,11,46,58,74,80,88,97,136,137,138,149,155,160,162,163,164,200,203,267,268,281,282,320,331,349,375],took:[46,310],tool:[1,2,22,49,51,58,74,80,88,100,109,133,142,143,144,154,156,161,168,193,194,195,197,229,233,236,238,239,240,241,242,245,251,252,253,254,255,256,262,263,267,268,270,315,331,334,350,356,363,364,365,370,390,403,404,407,409,420,436,442,448],toolkit:436,toolnam:[44,45],toomanyarg:55,top:[3,27,33,44,48,55,58,72,80,98,178,181,182,183,184,185,186,187,188,251,252,253,254,255,256,267,268,287,289,308,350,375],topic:[53,350],topicbox:434,toplevel:[52,88,89,91,92,109,160,293,350],topolog:[11,277,314,448],tortiou:81,total:[6,9,11,28,30,58,75,80,277,289,350,388],totalemail:66,totalthread:66,touch:[7,44,309,314,377],toward:[9,11,30,35,40,96,178,181,182,183,184,185,186,187,188,277,307,331],trace:[80,275,350],track:[6,47,58,70,74,90,97,99,106,110,117,156,268,281,285,293,340,350,378,404,407,440,448],tracker:433,trade:310,tradeoff:[6,342],tradit:[6,15,52,55,80,102,279,311,345,417],tradition:[3,75,277,287],traffic:[11,33,46,88,100,110,114,120,136,276,350,369,412,434],trail:[19,71,97,98,350,418],transact:[6,57,64,74,93,98,106,107,287,291,350,358,366,412,448],transcod:448,transfer:[3,7,27,74,81,174,267,276,287,315,375,432,448],transfig:[49,267],transform:56,transit:[56,98,267,311],translat:[3,6,33,41,69,106,267,274,301,350,389,417,448],translates:229,translatesiev:[33,195,199,301,352,448],transmiss:432,transmit:[5,268,291,344],transp:[76,251,252,253,254,255,256],transpar:[7,36,71,74,88,99,262,263,287,314,421,422,424,425,427,429,430,431,432],transport:[5,36,41,66,90,96,268,287,295,296,301,302,344,350,432,443,446],trap:55,trash:[19,33,41,66,251,252,253,254,255,256,301,305,308,315,350,355,371,373,388,404,418],travel:[269,441],travers:[75,98],travi:50,treat:[11,19,41,44,58,91,95,97,171,190,219,221,222,244,274,293,298,315,344,350,374],treatment:80,tree:[5,10,51,59,75,80,160,164,268,282,287,289,293,311,334,337,350,369,406,411],trend:98,tri:[97,138,142,164,192,197,233,245,268,334,344,407],trial:[164,165,166,190,191,192,193,205,206],trick:[41,274,341,448,449],tricki:44,trickier:[56,287],trigger:[24,27,60,87,100,278,297,310,315,331,350,411],trim:[74,76,407],trim_attende:448,trip:[11,97],tripl:11,trivial:[56,345],trojan:374,trojita:154,troubl:[74,164,165,166,190,191,192,193,205,206,289,325],troubleshoot:[35,82,83,84,86,87,286,436,447,448],truncat:[19,55,97,108,131,133,139,278,298,333,350],trust:[5,11,97,160,384,385,397],trusti:87,trycreat:97,tselina:374,tstampfil:378,ttest:27,tue:[374,388,390],tugowar:99,tune:[99,287],turbid:98,turn:[11,40,41,44,80,87,97,98,108,245,251,252,253,254,255,256,267,276,278,308,329,343,350,405,432],turnaround:[236,238,239,240,241,242],tweak:[11,97,98,270,448],twelv:80,twice:[100,145,315,349,412],two:[3,4,5,10,11,15,18,19,28,33,40,41,44,45,53,55,56,58,61,62,64,74,75,80,97,99,152,215,216,217,219,220,221,222,231,243,268,269,271,274,276,279,287,289,290,291,293,301,310,314,315,321,331,334,338,340,350,351,404,411,418,420,432,448,449],twoskip:[4,44,66,74,88,90,169,171,176,215,216,217,219,220,221,222,246,276,298,350,448],txt:[56,77,97,99,344,350,359],ty347:351,typ:350,type:[3,4,7,11,27,44,51,52,55,58,59,66,68,80,88,100,117,127,134,136,145,164,223,229,251,252,253,254,255,256,262,263,268,270,276,281,287,291,298,301,303,313,317,337,349,350,358,372,411,421,422,424,425,427,429,430,431,432,448,449],typedef:[44,60,68,297],typic:[5,11,27,33,36,41,52,61,64,80,272,275,279,281,298,310,314,331,337,349,350,354,364,366,411,412,433,446],typo:[97,98,225,228,230,245,247],tyq4:351,tyranni:71,tyrrel:444,tzdist:[49,93,219,220,221,222,350,361],tzid:[6,76,88,226],tzid_prefix:88,u00fcederli:27,u7f:56,u7n:56,u83:56,u83_2:56,u83_3:56,ubuntu:[2,70,80,81,94,267,268,446,448],ucd:98,ucs:100,udp4:349,udp6:349,udp:[87,99,268,303,349,379,380,382,384,385,393,395,396,397,399,410,414,415],udv:305,ufl:340,uggh:74,ugli:[55,62,139],uhura:[33,69],uid:[5,6,27,36,41,47,58,61,74,76,97,122,204,205,276,287,305,327,331,350,359,364,374,388,404,418],uidl:[58,178,180,181,182,183,184,185,186,187,188,327,350],uidl_format:[178,180,181,182,183,184,185,186,187,188,350],uidlast:61,uidnext:[27,58,97,278,350],uidonli:350,uidplu:[82,83,84,86,87,97,100,331,432],uidset:27,uidvalid:[27,47,58,74,97,137,327,350,388,407,411],uint32:80,uint32_t:[47,80],uint:350,uintptr_t:228,ulimit:329,ulmer:340,ultim:[5,11,160],umanitoba:98,umask:350,umbrella:81,ume:100,umemoto:100,umich:117,unabl:[3,11,68,74,97,142,196,219,220,221,222,231,243,268,316,339,404,448],unaffect:[98,350],unalign:223,unambigu:62,unanim:440,unauthent:[41,88,122,139,192,274,291,432],unavail:[25,41,74,160,208,209,210,211,212,213,214,215,216,217,226,227,235,236,249,259,265,286,287,290,331,339,407],unbind:88,unbound:350,unchang:[6,160,262,263],unclear:79,uncom:[87,268],uncommit:[48,72],uncommon:[11,24,36,39,332],uncomplet:126,uncompress:[74,276,356,364],uncondit:75,uncondition:411,unconfirm:160,uncov:[80,340],undefin:[233,245],undelet:[74,141,270,272,275,302,308,448],undeliver:374,under:[5,6,10,11,19,24,25,28,33,35,41,46,47,48,51,52,55,56,57,58,59,70,72,80,81,88,89,91,92,97,100,108,114,122,160,161,166,178,179,180,181,182,183,184,185,186,187,188,193,217,219,220,221,222,268,293,306,310,316,328,331,349,350,354,382,393,396,399,410,436,440,442,446,448],underestim:356,underflow:227,undergo:53,underli:[11,44,46,47,59,158,350,404],underlin:52,underneath:[41,289,299,331,404],underscor:310,understand:[0,11,41,44,56,98,267,268,289,375],understood:[11,375],undertaken:269,undesir:160,undetermin:331,undifferenti:74,undocu:[106,327],undump:[74,100,117,155,192,251,254,255,256,350,357,360],unencod:[56,120],unescap:[228,350],unexpect:[11,97,142,289],unexpectedli:349,unexpung:[25,47,74,106,109,142,145,305,331,350,352,448],unfortun:[59,98,278,305,382,399],unhappi:80,unicod:[49,136,138,156],unicorn:87,unidata2:56,unifi:[4,98,102,122,277,287,291,315,350,411,448],unifix:56,uniform:[286,289],unindex:411,uniniti:97,uninitialis:[191,200,228],uninterrupt:287,union:[41,74,75,100],uniqu:[3,5,6,11,27,33,55,58,74,137,215,216,217,219,220,221,222,287,289,310,315,349,350,388,390,404],uniqueid:[47,58,61,74,98,104,145,203,224,246,251,252,253,254,255,256,267,276,364,370,390,404,407],uniserv:98,unit:[9,15,19,30,48,49,51,72,158,191,196,199,216,217,219,220,221,222,267,277,278,285,298,340,350,369,375,418,436,445,448],univers:[3,81,100,102,160,269,436,441,443,444,445],unix:[27,33,52,71,87,96,97,98,99,122,164,206,268,281,289,294,295,296,305,310,340,349,350,356,375,389,395,417,446,448],unix_group_en:350,unix_pwcheck:97,unixheirsep:155,unixheriarchysep:139,unixhierarchi:[33,205],unixhierarchysep:[18,33,41,63,87,91,98,99,100,131,145,178,182,183,184,185,186,187,188,267,268,274,293,301,335,350,363,375,417,418,433],unixhiersep:99,unknown:[191,268,322,350,375],unlabel:322,unless:[3,11,19,24,26,28,41,55,56,58,65,71,97,179,180,181,182,183,184,185,186,187,188,214,215,216,217,219,220,221,222,262,263,275,276,287,289,331,335,350,353,354,355,356,357,358,359,360,361,362,364,365,366,367,368,369,370,371,372,373,374,375,377,378,379,380,381,382,383,384,385,387,388,389,390,393,394,395,396,397,398,399,400,401,403,404,406,407,410,411,412,413,414,415,416,417,418,432],unlik:[36,80,287,315,337,369],unlimit:[19,28,140,157,158,171,235,236,238,239,240,241,242,298,329,349,350],unlink:[24,25,47,58,97],unlock:[44,45,46,59,74,88,176,356,448],unmailbox:[74,372],unmaintain:[236,238,239,240,241,242],unmark:[75,262,263,267],unmodifi:99,unnecessari:[227,356],unnecessarili:200,unord:[91,350],unpack:74,unpars:[74,138],unpleas:84,unpredict:74,unqualifi:[40,268,350,375],unreach:287,unread:[38,74,276],unreademail:66,unreadthread:66,unrealm:33,unrecogn:370,unreport:156,unrespons:350,unseen:[6,74,212,213,214,215,216,217,219,220,221,222,227],unseenmessag:[27,278,350],unselect:[82,83,84,86,87,153,251,252,253,254,255,256,350,432],unset:[58,350,418],unsign:[47,56,68,97,228],unsolicit:[61,122,233,245],unspecifi:[97,268,356,407],unstabl:203,unsubscrib:[74,97,100,287,350],unsuccess:[41,310],unsuit:[88,89,92,320],unsupport:[163,174,442],untag:[49,68,97,272],until:[8,11,25,26,44,45,47,55,58,59,74,96,102,142,157,160,219,220,221,222,251,252,253,254,255,256,267,269,276,289,298,303,322,331,349,350,356,387,412],untouch:383,unus:[41,44,49,56,59,74,227,251,252,253,254,255,256,276,332,342,350,372],unusu:[56,98],unwrap_str:75,upcom:[96,197,233,245],updat:[1,6,7,12,18,36,41,42,45,46,47,49,53,57,58,61,64,72,74,78,82,83,84,86,87,88,97,98,99,100,102,103,106,109,125,145,155,158,160,163,192,198,203,225,233,243,245,247,257,276,287,288,289,290,303,310,311,312,315,321,350,356,357,360,381,398,404,407,411,412,432,436,446,447,448,449],updatenotifi:47,upgrad:[33,40,44,58,84,87,96,97,98,100,110,152,153,155,156,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,251,252,253,254,255,256,262,263,320,340,357,363,370,404,411,432,436,447,448],upload:[42,48,61,74,75,99,138,166,193,204,244,251,252,253,254,255,256,262,263,289,310,350,411,428,432,448],upon:[6,9,19,30,55,59,87,88,97,160,267,268,277,279,281,287,289,298,310,350,360,366,375,382,387,399,411,423,448],upper:[56,163,251,252,253,254,255,256,350,440],uppercas:[56,141],upstream:[11,48,51,53,65,72,100,174,189,227,278,293,394,433],urandom:[338,350],urg:98,urgent:72,uri:[27,36,122,192,350],url:[6,47,72,89,91,93,97,121,125,133,202,262,263,350,395,398,432],urlauth:[6,51,82,83,84,86,87,102,136,350,432],urlfetch:[113,115,146,147,162,171,174,432],urn:[66,350],usabl:[80,362,366],usag:[4,6,35,41,44,45,52,66,74,75,80,90,98,99,102,106,109,138,141,143,154,155,160,162,199,228,267,276,289,298,299,308,310,331,350,362,368,372,375,388,403,404,411,448,449],use:[3,5,6,7,8,9,11,12,13,15,19,27,28,30,33,36,38,40,41,45,46,47,48,49,51,52,53,55,56,58,59,64,65,66,68,69,70,71,72,74,79,80,81,88,89,90,91,92,93,95,96,97,98,99,100,103,107,113,129,130,138,139,140,145,146,151,153,154,156,160,161,163,164,166,168,173,176,178,179,180,181,182,183,184,185,186,187,188,189,193,195,202,203,206,215,216,217,219,220,221,222,223,228,230,231,238,241,242,243,245,251,252,253,254,255,256,267,268,272,274,276,277,278,279,280,281,283,284,285,286,287,289,291,293,296,298,300,303,305,310,311,313,314,315,316,319,320,321,324,325,327,329,331,333,334,338,340,345,350,360,362,363,366,370,374,375,378,379,387,388,389,404,407,411,412,417,421,422,423,424,425,427,428,429,430,431,432,434,443,444,446,448,449],used:[3,5,6,7,8,9,11,15,18,19,27,28,30,33,34,35,36,40,41,44,45,46,47,49,51,52,55,56,58,59,60,63,65,68,69,72,74,80,81,87,88,91,93,96,97,98,99,100,102,104,105,106,107,120,129,141,146,160,162,163,169,175,176,178,179,180,181,182,183,184,185,186,187,188,191,193,196,201,203,206,216,217,219,220,221,222,223,232,244,246,251,252,253,254,255,256,267,268,269,272,274,275,276,277,278,279,280,281,282,283,284,285,287,289,291,293,295,296,297,298,300,301,303,305,308,310,313,314,321,327,329,331,333,336,340,342,343,344,349,350,353,354,355,357,358,359,360,361,362,366,367,369,372,373,374,375,377,379,380,382,384,385,387,390,394,395,396,397,398,399,404,407,410,411,412,416,417,418,420,421,422,424,425,427,429,430,431,433,434,436,441,443,445,446,449],useful:[0,9,18,30,31,33,38,40,44,49,51,55,56,58,74,80,87,98,99,100,117,203,215,216,217,219,220,221,222,276,277,278,283,289,293,310,350,356,357,360,364,370,375,387,398,404,407,411,412,418,421,422,424,425,427,429,430,431,443],usefulli:80,usefulness:97,useless:56,usenet:[6,41,100,268,293,350,392,432],user1:268,user2:268,user:[3,4,7,9,10,13,18,24,25,26,27,28,30,35,36,38,39,40,44,46,47,51,55,56,57,58,59,61,63,64,66,68,69,70,74,77,78,80,82,83,84,86,87,88,89,90,91,92,96,97,98,99,100,102,104,105,108,109,110,114,127,128,130,136,138,139,145,146,150,152,153,155,156,157,158,161,164,166,174,178,180,181,182,183,184,185,186,187,188,189,191,193,196,197,200,201,205,208,216,217,219,220,221,222,223,231,232,233,235,236,238,239,240,241,242,243,244,245,251,252,253,254,255,256,267,270,271,272,273,274,275,277,278,279,280,282,283,285,287,288,289,290,291,293,298,299,301,305,307,308,310,311,313,314,315,316,318,327,335,336,340,341,345,348,350,351,353,354,355,356,357,363,364,366,367,369,370,371,372,373,374,375,377,379,380,382,383,386,388,389,390,391,392,393,394,396,399,403,404,406,407,411,412,413,415,417,418,420,421,422,423,424,425,427,428,429,430,431,436,437,443,445,448],user_column:18,user_deleteacl:99,user_deni:[4,110,136,270,281,302,350,366,367,448],user_deny_db:160,user_folder_limit:[110,370],user_som:61,useradd:[268,446],userdeni:[146,281,350],userdeny_db:350,userdeny_db_path:[281,350],userflag:[59,369,388,418],userid:[4,18,27,40,41,46,47,64,74,88,92,93,100,178,182,183,184,185,186,187,188,200,208,245,267,274,276,281,287,341,350,351,353,356,357,364,366,369,377,378,389,392,394,403,404,406,407,412,421,422,423,424,425,427,429,430,431,448],userid_list:420,usermod:[268,446],usernam:[3,5,18,19,33,40,49,51,53,63,66,88,89,93,99,268,282,289,293,313,330,335,341,350,369,375,379,411,412,421,422,424,425,427,429,430,431,446,449],username_idx:18,username_tolow:350,userpassword:87,userprefix:[33,350],userrc:375,userspac:55,uses:[5,6,7,19,30,33,40,41,44,45,51,52,56,58,61,68,74,88,89,91,92,93,97,98,99,100,147,161,174,175,196,200,232,244,251,252,253,254,255,256,266,267,268,279,281,282,287,291,293,294,301,310,314,315,327,350,354,357,370,371,379,380,382,384,385,386,388,389,391,394,395,396,397,399,406,410,428,443,446,449],using:[3,6,7,9,11,12,13,18,22,30,31,33,36,38,40,41,44,45,46,47,48,49,51,52,53,55,58,59,61,62,66,68,72,74,75,80,81,87,88,89,90,92,93,96,97,98,99,100,102,105,106,109,117,127,137,145,156,160,161,164,165,166,190,191,192,193,203,205,206,219,220,221,222,229,233,235,236,238,239,240,241,242,243,245,246,251,252,253,254,255,256,261,262,263,266,267,268,269,272,274,275,276,282,283,284,285,286,287,288,289,290,293,295,301,305,306,308,310,311,312,314,315,319,320,322,324,327,331,335,336,337,339,340,350,355,356,357,358,369,370,372,374,375,377,380,382,386,387,394,395,396,399,404,411,417,421,422,424,425,427,429,430,431,433,443,446,448,449],usr:[49,51,61,65,80,96,97,154,160,191,267,268,281,289,301,305,308,309,310,311,313,319,321,329,350,355,358,360,362,379,381,411,412,446],usual:[6,11,40,41,52,72,74,80,86,98,166,193,268,272,274,276,287,301,311,315,331,350,381,421,422,424,425,427,429,430,431,433,446],uta:98,utc:[226,418,435],utcdat:243,utdalla:[98,99],utf7:350,utf8:[62,322,350],utf8smtp:350,utf:[27,49,97,98,100,106,136,163,206,322,350,374,432],util:[55,80,81,87,98,99,100,104,121,122,154,160,191,200,281,282,289,293,298,301,306,308,310,331,350,375,391,413,418,421,422,423,424,425,427,429,430,431,442,448],utilis:356,utop:87,uuid:[49,51,64,122,251,252,253,254,255,256,262,263,267,390],uutari:203,v14:212,v16:[213,214,215,216,217,219,220,221,222],v17:[235,236,238,239,240,241,242],vacat:[6,75,97,98,99,100,102,139,163,226,301,316,318,350,388,432,448],vader:[315,341],vain:98,val:55,valarm:76,valentin:[176,225],valgrind:[1,49,51,74,129,130,132,133,448],valid:[6,19,33,41,44,45,68,74,98,100,131,166,173,192,193,194,227,251,252,253,254,255,256,267,274,291,313,322,349,350,360,369,379,398],validitii:58,valu:[3,5,6,9,15,19,24,25,30,33,41,44,45,47,49,52,56,58,62,68,74,75,79,80,87,88,89,90,91,92,93,97,100,109,122,133,160,200,209,210,211,212,213,214,215,216,217,219,220,221,222,227,228,238,241,242,243,268,272,273,276,277,278,279,281,283,285,289,293,298,310,315,322,327,331,342,349,350,354,366,369,370,372,374,375,379,380,382,383,384,385,387,394,395,396,397,399,403,410,411,412,421,422,424,425,427,429,430,431,446,449],value1:62,value3:62,van:[163,440,444],vansant:444,varchar:18,vari:[52,305],variabl:[41,44,45,47,49,55,58,71,80,88,91,97,98,102,157,178,185,186,187,188,192,203,301,304,350,356,387,432,449],variant:[41,164],varieti:[5,7,9,10,11,94],variou:[2,11,31,40,41,49,55,58,72,80,88,90,97,100,109,160,161,162,163,174,175,176,193,196,205,206,231,247,262,263,267,280,281,283,286,287,289,293,298,310,314,337,345,350,357,358,359,360,361,369,390,398,411,443,444,446,448],vast:[287,314],vastli:35,vavail:[23,125,350],vcard:[6,93,189,226,251,252,253,254,255,256,350,432],vcard_max_s:[251,252,253,254,255,256,262,263,350],vcard_obj:6,vcard_uid:6,vcardfast:51,velasco:[162,173,229],vendonr:369,vendor:[11,88,99,102,104,117,128,268,272,275,293,320,327,350,369,411,446],ver:375,verbatim:[56,226],verbos:[18,52,74,98,132,262,263,268,350,356,357,361,363,364,369,374,376,383,398,404,405,407,411,412,413,417,418,421,422,424,425,427,429,430,431],verdor:369,veri:[5,7,11,18,28,36,44,47,48,51,55,56,58,72,75,80,87,97,141,145,268,275,276,282,287,289,293,310,317,344,350,356,360,411,441,442,444],verif:[5,41,49,74,87,160,230,276,293,309,356,360,421,422,424,425,427,429,430,431],verifi:[5,7,28,41,80,82,83,84,86,87,88,100,122,130,160,268,276,287,291,303,336,350,356,360,410,436,447,448],versa:[36,291,315,417],version:[2,6,8,9,11,12,18,27,30,42,44,49,51,52,56,58,62,74,75,80,81,82,83,84,86,87,88,96,97,98,99,100,113,141,147,150,152,153,154,156,160,161,162,164,167,168,173,175,178,179,180,181,182,183,184,185,186,187,188,191,194,195,197,198,199,214,215,216,217,219,220,221,222,225,226,227,233,235,236,238,239,240,241,242,245,247,251,252,253,254,255,256,257,261,262,263,268,275,276,287,289,291,293,305,310,311,314,316,317,320,331,340,343,350,353,357,358,360,361,366,367,369,370,372,374,380,387,388,404,407,409,411,412,432,433,436,439,442,445,448,449],vertic:36,vervet:87,verysecret:5,vevent:[23,132,267,350,432],vfreebusi:[23,350],vg_replace_malloc:80,via:[6,11,15,19,28,36,40,41,49,50,51,55,71,74,88,89,91,93,95,96,98,99,100,102,107,132,137,164,165,166,167,168,189,190,191,192,193,194,195,196,197,198,205,206,208,209,210,211,212,213,214,215,216,217,228,233,235,236,245,249,251,252,253,254,255,256,259,262,263,265,267,268,274,279,281,284,287,288,289,293,295,296,298,301,305,308,310,313,315,327,345,350,358,366,374,375,394,395,404,407,411,417,420,428,433,435,446,448],viabil:11,viabl:343,vice:[36,291,315,417],video:39,videocharg:340,vidic:[176,225],viehmann:110,view:[11,33,42,46,49,52,53,66,79,178,181,182,183,184,185,186,187,188,287,315,316,331,345,423,442,448],vim:[49,267],violat:[44,47,289],virtdomain:[18,40,41,100,138,163,178,182,183,184,185,186,187,188,200,245,268,274,341,350,375,433],virthost:268,virtual:[3,6,8,11,13,18,33,56,98,100,120,160,189,268,340,350,375,448,449],virtual_destination_concurrency_limit:268,virtual_destination_recipient_limit:268,virtual_mailbox_domain:268,virtual_mailbox_map:268,virtual_recipi:268,virtual_recipient_domain:268,virtual_transport:268,virtus:268,virtusert:268,viru:[27,268,374,448],virus:[301,374],virusscan_notification_subject:[350,374],virusscan_notification_templ:[350,374],virustest:432,visibl:[41,88,160,231,275,287,350,375],visit:[44,404],visual:[48,449],visudo:51,vivid:87,vjournal:[23,350,432],vladimir:98,vnd:[27,235,236,238,239,240,241,242,251,252,253,254,255,256,278,350],volatil:10,volum:[3,290,293,311,314,325,394],volunt:85,vote:440,voter:448,vpath:199,vpoll:[23,125,175,350,432,448],vsd:340,vtimezon:[76,88,93],vtodo:[23,350,432],vulner:[156,432],vzic:[88,133,350],wai:[7,11,12,31,40,41,44,47,52,55,58,59,60,72,74,77,80,87,97,141,152,160,203,262,263,268,274,275,276,277,283,286,287,289,293,297,301,305,309,310,314,315,316,318,331,334,340,344,348,350,353,357,366,375,404,436,444,448,449],wait:[11,15,26,44,47,58,71,72,74,88,309,349,350,354,356,379,380,382,384,385,387,394,395,396,397,398,399,407,410,412],wait_interv:412,waitev:297,walk:331,walkthrough:53,wall:[49,51,79],wallet:11,walter:[98,444],walther:[225,247],wamerican:267,wan:310,want:[0,5,11,18,26,33,41,44,47,51,52,53,57,65,66,72,74,79,80,81,83,84,87,97,160,164,238,241,242,251,252,253,254,255,256,268,276,280,283,289,293,301,305,319,322,329,334,338,340,350,355,407,412,428,434,436,443,445,446,447,448],wanttowrit:68,warm:340,warmuth:161,warn:[47,49,51,68,97,98,99,100,141,150,160,162,164,167,190,194,196,201,203,223,226,227,229,245,281,298,321,350,357,360,404,448],warranti:81,wart:62,wasn:[97,98,100,158,263,276,444],wast:99,water:[97,293,378],wbreyha:140,wcw:98,web1:370,web2:370,web:[11,22,36,66,88,89,93,208,251,252,253,254,255,256,301,340,350,432],webdav:[6,88,93,228,350,432,448],webdav_attachments_baseurl:350,webdav_attachments_max_binary_attach_s:[262,263,350],webmast:33,webserv:36,websit:[11,42,48,52,56,90,163,219,221,222,448],websocket:[49,90,214,215,216,217,219,220,221,222,251,252,253,254,255,256,350,432],websocket_timeout:[251,252,253,254,255,256,350],wed:388,week:[39,331,418,440],weekend:[24,39],weekli:[268,350,435,436,448,450],weight:[4,30,75,277,289,350,448],weiler:444,weird:[44,97,100,102,268],welcom:[0,346],well:[5,7,10,11,13,19,25,31,33,40,44,45,46,47,48,51,55,58,61,68,74,79,97,98,99,100,122,133,152,160,223,268,272,275,277,283,287,288,289,291,305,310,316,331,340,350,366,375,377,405,440,446,448],went:[74,97,109,267],were:[9,11,30,38,41,44,58,74,80,96,97,98,99,108,127,139,141,147,160,174,191,194,195,196,223,226,227,228,231,238,241,242,243,244,251,252,253,254,255,256,267,268,274,275,276,277,288,303,305,308,311,345,349,350,369,373,378,388,389,404,407,411,418,441],werewolf:87,werror:[49,51],wes:117,wextra:[49,51],wget:267,what:[1,3,4,5,7,11,15,20,24,25,28,33,36,41,44,47,48,51,71,72,74,75,79,84,87,91,97,99,175,268,271,274,278,281,286,291,293,301,315,316,317,319,320,340,350,357,360,373,382,388,399,403,407,411,417,432,433,439,446,448],whatev:[41,44,45,55,80,88,97,267,268,274,276,289,339,340,350,433],whatsoev:81,whatwg:[219,221,222],wheaton:98,when:[3,4,5,6,8,11,12,13,15,18,19,24,25,27,33,36,39,40,44,47,48,49,52,53,55,56,58,59,60,63,65,66,68,69,70,71,72,74,80,82,83,84,86,87,88,89,92,96,97,98,99,100,102,105,106,108,109,114,122,139,141,145,146,147,150,152,154,155,156,157,160,161,162,163,164,166,167,168,169,170,171,174,175,178,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,202,203,204,205,206,219,220,221,222,223,225,226,227,228,229,233,235,236,238,239,240,241,242,243,244,245,246,247,251,252,253,254,255,256,257,261,262,263,267,268,273,275,276,286,289,291,293,297,298,299,300,301,303,304,305,306,308,309,310,311,313,314,315,316,319,325,327,336,340,342,343,344,346,349,350,356,357,360,364,366,369,374,375,377,378,379,385,387,394,397,398,402,403,404,407,411,412,418,428,432,433,436,440,443,445,446,448,449],whenev:[50,55,58,59,97,291,293,305,350],where:[1,3,5,7,11,13,26,33,36,41,44,47,49,51,55,56,58,59,60,61,74,75,81,88,97,98,99,100,108,109,126,127,128,131,133,137,140,153,157,191,206,251,252,253,254,255,256,267,268,275,277,279,281,283,284,289,291,293,296,297,301,305,314,315,319,336,340,349,350,360,363,375,407,411,412,442,443,446,448],where_claus:18,wherea:[75,276,310],wherein:284,wherev:133,whether:[3,7,38,44,45,53,56,68,74,80,81,87,88,93,97,98,100,102,104,120,160,251,252,253,254,255,256,266,268,272,275,277,285,305,310,327,349,350,375,407,411],whi:267,which:[3,5,6,7,9,10,11,15,19,24,25,27,30,31,33,34,36,38,40,41,44,45,46,47,49,51,52,53,55,56,58,60,61,62,64,65,66,68,71,72,74,75,79,80,82,83,84,86,87,88,89,91,92,93,96,97,99,100,102,104,106,109,110,121,122,125,137,138,139,145,152,154,155,156,158,160,178,179,180,181,182,183,184,185,186,187,188,191,196,199,215,216,217,219,220,221,222,232,235,236,238,239,240,241,242,244,251,252,253,254,255,256,261,262,263,267,268,269,273,274,275,276,277,278,279,282,283,284,285,287,289,290,293,297,298,299,301,310,311,314,315,316,321,324,327,329,331,332,334,340,342,343,344,349,350,351,353,356,357,358,360,364,366,367,369,370,374,375,378,381,382,383,389,390,394,398,399,401,404,406,407,410,411,412,413,414,417,418,420,433,434,440,441,443,444,446,448],whichev:[88,109,321],whilst:369,white:444,whitespac:[19,56,97,98,190,289,349,350,351,392],who:[0,5,18,19,33,41,71,72,80,97,158,174,268,273,274,286,287,289,298,301,315,331,336,350,353,370,411,412,415,419,436,439,443,445,448],whole:[11,19,58,80,160,269,298,331,350,441,443],whom:[27,271],whose:[9,30,41,88,219,220,221,222,235,236,238,239,240,241,242,251,252,253,254,255,256,261,262,263,267,289,333,350,356,364,370,375,407,412,420,421,422,424,425,427,428,429,430,431,445],why:[11,33,51,56,58,71,74,268,316,340,367,448],wide:[13,49,58,235,236,238,239,240,241,242,287,303,327,345,363,443,445],widespread:443,widget:72,width:[58,350],wierd:156,wiggl:276,wiki:[55,70,350],wikidb:359,wikipedia:[51,55,80,269],wildcard:[140,367,375,404],wildmat:[6,91,293,350,366,378,392],wili:87,wind:[74,350],window:[11,52,99,219,221,222,267,350,361,432,449],wire:[5,11,58,62,74,93,291,350,436],wisdom:[267,319],wise:443,wish:[8,41,47,87,97,178,181,182,183,184,185,186,187,188,203,267,274,276,282,287,301,303,305,310,350],with_ldap:156,within:[3,5,6,11,14,15,22,27,28,33,40,41,44,45,52,55,59,68,74,75,87,93,136,272,273,276,279,289,291,300,301,303,308,310,331,340,349,350,353,387,404,407,418,432,448,449],withing:279,without:[3,6,7,11,12,15,18,24,28,33,40,41,44,45,47,49,53,55,56,57,58,59,64,69,70,72,74,75,80,81,88,95,97,98,100,120,129,140,141,142,152,155,158,164,174,190,191,201,203,223,225,228,244,247,251,252,253,254,255,256,262,263,267,268,274,275,276,277,279,280,287,290,291,301,303,308,310,343,349,350,356,362,366,369,372,373,374,407,412,413,419,432,443,446],wno:[49,163],woefulli:297,wolfgang:[140,146,147,162,163,164,175,202,203],won:[15,47,48,74,98,141,178,183,184,185,186,187,188,275,287,288,289,298,329,341,350,407],wong:[98,444],word:[3,7,41,46,55,62,66,80,97,160,206,227,251,252,253,254,255,256,331,340,350,411,449],work:[0,1,5,11,18,33,40,44,45,46,47,48,51,53,56,57,59,61,65,66,68,70,71,72,74,75,79,80,85,87,88,95,97,98,99,100,104,105,106,109,110,125,132,136,137,140,141,142,143,145,152,155,156,160,163,164,171,174,178,179,180,181,182,183,184,185,186,187,188,192,193,197,199,203,206,214,215,216,217,219,220,221,222,233,235,236,238,239,240,241,242,245,267,268,270,276,287,288,289,290,293,301,303,310,315,316,319,320,331,332,334,340,350,366,367,374,383,390,407,420,428,436,443,446,448,449],workabl:276,workaround:[11,74,97,134,343,350],worker:350,workflow:74,workshop:11,world:[41,42,61,268,287,293,436,445,448],wors:308,worst:340,worth:[7,11,53,98,160,276,449],worthwhil:81,would:[3,5,7,8,9,11,16,17,18,26,29,30,33,34,36,37,38,40,41,44,47,48,49,52,56,58,59,69,72,74,75,80,81,88,89,92,96,97,98,99,109,138,156,160,166,191,193,220,221,222,226,251,252,253,254,255,256,267,268,275,276,277,279,280,287,288,289,298,303,310,314,331,340,343,349,350,356,360,366,373,374,375,383,391,412,417,433,441,446],wouldn:74,wrap:[47,105,206],wrapper:[44,45,55,74,80,97,98,203,293,324,349],writabl:[18,44,267,350],write:[0,3,6,7,11,13,16,17,26,29,34,36,37,41,45,48,51,55,56,57,58,68,72,74,80,85,88,97,98,99,140,160,236,238,239,240,241,242,269,270,274,275,278,287,293,315,317,329,334,340,341,349,350,375,378,392,408,409,411,441,443,444,445,446,448],write_bodi:131,writeabl:[10,301],writefil:140,writer:58,writeutf8:56,written:[6,7,11,16,17,29,36,37,46,47,55,56,58,68,80,81,85,97,98,144,160,293,337,358,375,411,417,441,449],wrong:[48,51,55,72,74,97,141,223,228,244,267,350,403,420],wrote:[44,47,48,71,79],wrt:74,wslai:49,www:[36,40,70,81,266,268,350,436],x86:223,x86_64:[49,65,229,321],xapian:[6,44,49,51,66,83,178,179,180,181,182,183,184,185,186,187,188,189,192,199,201,203,204,209,210,211,212,213,214,215,216,217,219,220,221,222,223,226,227,231,245,251,252,253,254,255,256,279,284,350,411,442,448],xapianact:[4,57,281,411,448],xapplepush:[178,180,181,182,183,184,185,186,187,188,278],xavier:[191,193,223,229],xbackup:[276,350],xbackup_en:[276,350],xcal:[133,432],xconv:[251,252,253,254,255,256],xconvers:[90,350],xconvmodseq:74,xconvmultisort:350,xfd:[48,72],xfer:[74,100,121,122,125,140,141,145,147,150,151,152,153,154,155,156,158,161,167,168,175,193,194,195,197,198,202,225,227,230,233,245,247,251,252,253,254,255,256,257,262,263,267,287,350,375],xfz:[48,72],xlist:[19,87,145,161,267,350,363],xlt:56,xmalloc:[55,68,80],xml:[27,49,51,142,169,251,252,253,254,255,256,350,361,432,449],xml_support:228,xmpp:432,xor:58,xpath:267,xrealloc:[55,100],xref:[9,100],xrunannot:350,xsha1:199,xsnippet:[204,350],xstrdup:68,xutil:267,xxd:49,xxx:[40,44,47,56,287,329],xzmalloc:55,xzvf:81,y2k:378,yacc:[75,97,100],yahoo:[27,278],yann:154,yapc12:160,yeah:74,year:[11,44,154,158,206,340,353,378,436,441],yep:74,yes:[0,19,40,49,72,74,76,80,87,217,219,220,221,222,235,236,238,239,240,241,242,267,268,276,278,280,285,287,350,405,417,418,446],yet:[11,19,38,44,45,46,47,51,66,72,74,85,98,152,176,223,226,243,249,259,265,276,287,298,314,331,349,350,446,449],yield:276,yingbo:247,yjh:205,yoni:444,york:432,you:[0,3,6,7,9,11,12,15,16,17,18,26,27,28,29,30,33,34,36,37,40,41,44,45,46,47,48,49,51,52,53,55,57,58,59,65,66,70,72,74,77,79,80,81,82,83,84,85,86,87,88,89,90,93,96,97,99,100,145,157,160,164,165,166,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,199,203,205,206,214,215,216,217,219,220,221,222,235,236,238,239,240,241,242,251,252,253,254,255,256,261,262,263,268,272,274,276,277,278,279,281,283,287,288,289,290,291,293,298,301,303,305,308,310,312,313,314,315,319,320,322,323,324,325,329,330,331,332,333,334,335,336,338,339,340,341,342,343,349,350,354,355,357,360,362,366,370,372,374,375,382,387,391,395,398,399,404,405,407,411,412,417,420,421,422,424,425,426,427,428,429,430,431,433,434,436,442,446,447,448,449],young:293,your:[1,3,7,8,9,11,12,18,19,26,28,30,40,41,44,45,48,49,51,52,65,66,70,71,72,74,77,79,82,83,84,86,87,88,89,90,91,92,93,94,95,96,97,100,158,160,178,179,180,181,182,183,184,185,186,187,188,189,192,214,215,216,217,219,220,221,222,223,235,236,238,239,240,241,242,267,276,277,278,281,285,286,287,288,289,290,293,294,301,313,315,317,319,320,321,329,336,339,340,342,349,350,360,369,370,374,375,379,387,404,405,411,417,433,436,442,443,444,448,449],your_fork:53,your_usernam:53,yourself:[2,3,44,45,51,55,83,339,436,448],yourserv:285,yum:[82,84,86],yyi:40,yyyi:378,zan:206,zephyr:[97,98,395],zephyrgram:395,zero:[19,41,44,45,47,55,56,58,59,68,80,97,98,107,147,156,196,267,274,276,291,293,298,349,350,351,354,379,380,382,384,385,394,395,396,397,399,404,410,411],zeroskip:[6,88,90,214,215,216,217,219,220,221,222,298,350],zhukov:[189,203,206],zlib1g:[49,267],zlib:[12,49,74,227],zone:[93,350,361,432],zoneinfo:[4,219,220,221,222,281,350,361,448],zoneinfo_db:[88,350],zoneinfo_db_path:[88,281,350,361],zoneinfo_dir:[88,219,220,221,222,350],zoom:[71,435],zstandard:432,zstd:432,zzz:[40,61,268]},titles:["We need your help","Developers","Download","Glossary","Configuration Guide","Authentication and Authorization","Databases","Deployment Scenarios","Known Protocol Limitations","Mailbox Creation Distribution","Performance Recommendations","Storage Considerations","Supported Platforms and System Requirements","Features","Access Control","Archiving","Kerberos Authentication","LDAP Authentication","SQL Authentication","Automatic Creation of Mailboxes","CalDAV Collections","CardDAV Support","DAV Collection Management","DAV Components","Delayed Delete","Delayed Expunge","Duplicate Message Delivery Suppression","Event Notifications","Mail Spool Partitions","Mailbox Annotations (METADATA)","Mailbox Distribution","Mailbox Metadata Partitions","Message Annotations (METADATA)","Mailbox Namespaces","Quota","Sealed System Design","Cyrus IMAP Murder (Server Aggregation)","Server Side Filtering (Sieve)","Shared Seen State","Single-Instance Store","Virtual Domains","Concepts","IMAP Developer Guide","Developer APIs","CyrusDB API","cyrusdb API","Index API","Mailbox API","Releasing new builds of ancient Cyrus IMAP versions","Compiling","Cyrus Works","Developer Test Environment","Documentation","GitHub guide","Developer Guidance","Cyrus IMAP Server: Hacking","Cyrus IMAP Server: Internationalization","Cyrus IMAP Server: Locking","Cyrus IMAP Server: Mailbox File Formats","Cyrus IMAP Server: Namelocks","Cyrus IMAP Server: prot layer","Cyrus IMAP Server: Replication Examples","Cyrus IMAP Server: Replication Protocol v2.4+","Cyrus IMAP Server: Special Characters","Cyrus IMAP Server: var directory structure","Xapian for searching","JMAP support","Developer Libraries","<strong>imclient</strong> library","Namespaces: a developer view","Overview of Cyrus development environment","Development Process","Releasing Cyrus IMAP","Developer Thoughts &amp; Notes","Notes for backup implementation","Cyrus IMAP Server: Sieve Bytecode","Cyrus CalDAV Scheduling Flowchart","Enabling improved_mboxlist_sort","Cyrus IMAP Server: Notes","Cyrus IMAP Server: Prot Events","Unit Tests","Get Cyrus","CentOS","Debian","Fedora","openSUSE","Red Hat Enterprise Linux","Ubuntu","CalDAV","CardDAV","JMAP","RSS Feeds","WebDAV","HTTP modules","Configuring the MTA","Virus Scanner","Notes for Packagers","Cyrus IMAP 1.x Release Notes","Cyrus IMAP 2.0.x Release Notes","Cyrus IMAP 2.1.x Release Notes","Cyrus IMAP 2.2.x Release Notes","Cyrus IMAP 2.3 Releases","Cyrus IMAP 2.3.0 Release Notes","Cyrus IMAP 2.3.1 Release Notes","Cyrus IMAP 2.3.10 Release Notes","Cyrus IMAP 2.3.11 Release Notes","Cyrus IMAP 2.3.12 Release Notes","Cyrus IMAP 2.3.13 Release Notes","Cyrus IMAP 2.3.14 Release Notes","Cyrus IMAP 2.3.15 Release Notes","Cyrus IMAP 2.3.16 Release Notes","Cyrus IMAP 2.3.17 Release Notes","Cyrus IMAP 2.3.18 Release Notes","Cyrus IMAP 2.3.19 Release Notes","Cyrus IMAP 2.3.2 Release Notes","Cyrus IMAP 2.3.20 Release Notes","Cyrus IMAP 2.3.3 Release Notes","Cyrus IMAP 2.3.4 Release Notes","Cyrus IMAP 2.3.5 Release Notes","Cyrus IMAP 2.3.6 Release Notes","Cyrus IMAP 2.3.7 Release Notes","Cyrus IMAP 2.3.8 Release Notes","Cyrus IMAP 2.3.9 Release Notes","Cyrus IMAP 2.4-caldav Releases","Cyrus IMAP 2.4.17-caldav-beta1 Release Notes","Cyrus IMAP 2.4.17-caldav-beta10 Release Notes","Cyrus IMAP 2.4.17-caldav-beta11 Release Notes","Cyrus IMAP 2.4.17-caldav-beta2 Release Notes","Cyrus IMAP 2.4.17-caldav-beta3 Release Notes","Cyrus IMAP 2.4.17-caldav-beta4 Release Notes","Cyrus IMAP 2.4.17-caldav-beta5 Release Notes","Cyrus IMAP 2.4.17-caldav-beta6 Release Notes","Cyrus IMAP 2.4.17-caldav-beta7 Release Notes","Cyrus IMAP 2.4.17-caldav-beta8 Release Notes","Cyrus IMAP 2.4.17-caldav-beta9 Release Notes","Cyrus IMAP 2.4 Releases","Cyrus IMAP 2.4.0 Release Notes","Cyrus IMAP 2.4.1 Release Notes","Cyrus IMAP 2.4.10 Release Notes","Cyrus IMAP 2.4.11 Release Notes","Cyrus IMAP 2.4.12 Release Notes","Cyrus IMAP 2.4.13 Release Notes","Cyrus IMAP 2.4.14 Release Notes","Cyrus IMAP 2.4.15 Release Notes","Cyrus IMAP 2.4.16 Release Notes","Cyrus IMAP 2.4.17 Release Notes","Cyrus IMAP 2.4.18 Release Notes","Cyrus IMAP 2.4.19 Release Notes","Cyrus IMAP 2.4.2 Release Notes","Cyrus IMAP 2.4.20 Release Notes","Cyrus IMAP 2.4.21 Release Notes","Cyrus IMAP 2.4.22 Release Notes","Cyrus IMAP 2.4.3 Release Notes","Cyrus IMAP 2.4.4 Release Notes","Cyrus IMAP 2.4.5 Release Notes","Cyrus IMAP 2.4.6 Release Notes","Cyrus IMAP 2.4.7 Release Notes","Cyrus IMAP 2.4.8 Release Notes","Cyrus IMAP 2.4.9 Release Notes","Cyrus IMAP 2.5 Releases","Cyrus IMAP 2.5.0 Release Notes","Cyrus IMAP 2.5.1 Release Notes","Cyrus IMAP 2.5.10 Release Notes","Cyrus IMAP 2.5.11 Release Notes","Cyrus IMAP 2.5.12 Release Notes","Cyrus IMAP 2.5.13 Release Notes","Cyrus IMAP 2.5.15 Release Notes","Cyrus IMAP 2.5.16 Release Notes","Cyrus IMAP 2.5.17 Release Notes","Cyrus IMAP 2.5.2 Release Notes","Cyrus IMAP 2.5.3 Release Notes","Cyrus IMAP 2.5.4 Release Notes","Cyrus IMAP 2.5.5 Release Notes","Cyrus IMAP 2.5.6 Release Notes","Cyrus IMAP 2.5.7 Release Notes","Cyrus IMAP 2.5.8 Release Notes","Cyrus IMAP 2.5.9 Release Notes","Cyrus IMAP 3.0 Releases","Cyrus IMAP 3.0.0 Release Notes","Cyrus IMAP 3.0.0 beta1 Release Notes","Cyrus IMAP 3.0.0 beta2 Release Notes","Cyrus IMAP 3.0.0 beta3 Release Notes","Cyrus IMAP 3.0.0 beta4 Release Notes","Cyrus IMAP 3.0.0 beta5 Release Notes","Cyrus IMAP 3.0.0 beta6 Release Notes","Cyrus IMAP 3.0.0 rc1 Release Notes","Cyrus IMAP 3.0.0 rc2 Release Notes","Cyrus IMAP 3.0.0 rc3 Release Notes","Cyrus IMAP 3.0.0 rc4 Release Notes","Cyrus IMAP 3.0.1 Release Notes","Cyrus IMAP 3.0.10 Release Notes","Cyrus IMAP 3.0.11 Release Notes","Cyrus IMAP 3.0.12 Release Notes","Cyrus IMAP 3.0.13 Release Notes","Cyrus IMAP 3.0.14 Release Notes","Cyrus IMAP 3.0.15 Release Notes","Cyrus IMAP 3.0.16 Release Notes","Cyrus IMAP 3.0.17 Release Notes","Cyrus IMAP 3.0.18 Release Notes","Cyrus IMAP 3.0.2 Release Notes","Cyrus IMAP 3.0.3 Release Notes","Cyrus IMAP 3.0.4 Release Notes","Cyrus IMAP 3.0.5 Release Notes","Cyrus IMAP 3.0.6 Release Notes","Cyrus IMAP 3.0.7 Release Notes","Cyrus IMAP 3.0.8 Release Notes","Cyrus IMAP 3.0.9 Release Notes","Cyrus IMAP 3.1 Tags","Cyrus IMAP 3.1.0-dev Release Notes","Cyrus IMAP 3.1.1 Tag Notes","Cyrus IMAP 3.1.2 Tag Notes","Cyrus IMAP 3.1.3 Tag Notes","Cyrus IMAP 3.1.4 Tag Notes","Cyrus IMAP 3.1.5 Tag Notes","Cyrus IMAP 3.1.6 Tag Notes","Cyrus IMAP 3.1.7 Tag Notes","Cyrus IMAP 3.1.8 Tag Notes","Cyrus IMAP 3.1.9 Tag Notes","Cyrus IMAP 3.2 Releases","Cyrus IMAP 3.2.0 Release Notes","Cyrus IMAP 3.2.0-beta3 Release Notes","Cyrus IMAP 3.2.0-beta4 Release Notes","Cyrus IMAP 3.2.0-rc1 Release Notes","Cyrus IMAP 3.2.1 Release Notes","Cyrus IMAP 3.2.10 Release Notes","Cyrus IMAP 3.2.11 Release Notes","Cyrus IMAP 3.2.2 Release Notes","Cyrus IMAP 3.2.3 Release Notes","Cyrus IMAP 3.2.4 Release Notes","Cyrus IMAP 3.2.5 Release Notes","Cyrus IMAP 3.2.6 Release Notes","Cyrus IMAP 3.2.7 Release Notes","Cyrus IMAP 3.2.8 Release Notes","Cyrus IMAP 3.2.9 Release Notes","Cyrus IMAP 3.3 Tags","Cyrus IMAP 3.3.0 Tag Notes","Cyrus IMAP 3.3.1 Tag Notes","Cyrus IMAP 3.4 Releases","Cyrus IMAP 3.4.0 Release Notes","Cyrus IMAP 3.4.0-beta1 Release Notes","Cyrus IMAP 3.4.0-beta2 Release Notes","Cyrus IMAP 3.4.0-beta3 Release Notes","Cyrus IMAP 3.4.0-rc1 Release Notes","Cyrus IMAP 3.4.1 Release Notes","Cyrus IMAP 3.4.2 Release Notes","Cyrus IMAP 3.4.3 Release Notes","Cyrus IMAP 3.4.4 Release Notes","Cyrus IMAP 3.4.5 Release Notes","Cyrus IMAP 3.5 Tags","Cyrus IMAP 3.5.0-alpha0 Tag Notes","Cyrus IMAP 3.6 Releases","Cyrus IMAP 3.6.0 Release Notes","Cyrus IMAP 3.6.0-beta1 Release Notes","Cyrus IMAP 3.6.0-beta2 Release Notes","Cyrus IMAP 3.6.0-beta3 Release Notes","Cyrus IMAP 3.6.0-rc1 Release Notes","Cyrus IMAP 3.6.0-rc2 Release Notes","Cyrus IMAP 3.6.1 Release Notes","Cyrus IMAP 3.7 Tags","Cyrus IMAP 3.7.0-alpha0 Tag Notes","Cyrus IMAP 3.8 Releases","Cyrus IMAP 3.8.0-alpha0 Release Notes","Cyrus IMAP 3.8.0-beta1 Release Notes","Cyrus IMAP 3.8.0-beta2 Release Notes","Cyrus IMAP 3.9 Tags","Cyrus IMAP 3.9.0-alpha0 Tag Notes","Release Notes","Upgrading to 3.8","Installing Cyrus","Introduction to Cyrus IMAP","Administrator Guide","Access Control","Combining Access Rights","Access Control Defaults","Access Control Identifier (ACI)","Access Control Lists Rights Reference","Cyrus Backups","Mailbox Distribution","Cyrus Event Source","File &amp; Directory Locations","Archive Partitions","Configuration file locations","Directory Hashing","Spool Directories","Search Tiers","Monitoring","Cyrus Murder","Cyrus Murder: Concepts","Cyrus Murder Failure Modes","Cyrus Murder: Installation and Administration","Cyrus Murder Mail Delivery","Cyrus Murder Mupdate Details","HOWTO: Using an NGINX IMAP Proxy","Cyrus NNTP","Ports and Sockets","Cyrus Service Definitions","Cyrus Socket Locations","Cyrus Prot Layer","Quotas","Quota Roots","Supported Quota Types","Cyrus Sieve","Standard Operating Procedures","Running Cyrus IMAP Services on Non-Standard Ports","Alternative Namespace","Deleting and Undeleting Messages and Folders","Mailbox Operations","Mailbox Folders exempt from quota","Reconstructing Mailboxes","Reloading Cyrus IMAP Services","Replication: Installation and Administration","Splitting Metadata from Partitions","Using Squatter for Faster IMAP SEARCH","Managing user_deny.db","Tweaking Cyrus IMAP","System Architecture","Frequently Asked Questions","Which database backend should I use for which databases?","Duplicate Delivery Suppression","Compilation errors about kssl.h and krb5.h on Red Hat Linux/Fedora","Help! There must be an easier way to get all this going...","OpenSSL Version Mismatches","Why does Cyrus reject 8-bit characters in the headers of my messages?","Why does Cyrus reject messages with &quot;bare newlines&quot;?","How do I get Cyrus Sieve to play nice with Exim?","Why does mail delivery go slow or hang sometimes?","How do I view ACLs on a mailbox?","What annotations are available?","Is it safe to put &lt;configdirectory&gt;/proc and &lt;configdirectory&gt;/lock on a tmpfs filesystem?","How to enable core dumps","Why can I not delete a mailbox as an admin user?","When is What ... Deleted, Expired, Expunged or Purged?","Why is deliver.db so large?","I have multiple imapd-SERVICES configured and experience occasional freezes when I try to log in!","How to run gdb on Cyrus components","Cyrus delivers claims that the mailbox does not exist","Why is mail being rejected with No Mailbox found due to MiXed CaSe incoming e-mail?","Can I use MySQL (or another SQL database) as the primary mail store?","Why do POP3 connections take so long, but once the connection is established all is well?","Why does reconstruct -m not work?","Shared File Systems GPFS for high availability","How to enable telemetry","The process count keeps growing!","&quot;unable to join environment&quot; error","Why does Cyrus set the MAIL FROM address of the sender of vacation responses to '&lt;&gt;'?","Does the Cyrus Murder support High Availability configurations?","Can I configure pop3d to log amount and size of messages fetched by user?","How can I make CyrusSieve work with public shared folders?","Can I have subfolders not appear under INBOX?","<strong>cyrus.conf</strong>","<strong>imapd.conf</strong>","<strong>krb.equiv</strong>","Man pages","<strong>arbitron</strong>","<strong>backupd</strong>","<strong>chk_cyrus</strong>","<strong>ctl_backups</strong>","<strong>ctl_conversationsdb</strong>","<strong>ctl_cyrusdb</strong>","<strong>ctl_deliver</strong>","<strong>ctl_mboxlist</strong>","<strong>ctl_zoneinfo</strong>","<strong>cvt_cyrusdb</strong>","<strong>cvt_xlist_specialuse</strong>","<strong>cyr_backup</strong>","<strong>cyr_buildinfo</strong>","<strong>cyr_dbtool</strong>","<strong>cyr_deny</strong>","<strong>cyr_df</strong>","<strong>cyr_expire</strong>","<strong>cyr_info</strong>","<strong>cyr_ls</strong>","<strong>cyr_synclog</strong>","<strong>cyr_userseen</strong>","<strong>cyr_virusscan</strong>","<strong>cyradm</strong>","<strong>cyrdump</strong>","<strong>deliver</strong>","<strong>fetchnews</strong>","<strong>fud</strong>","<strong>httpd</strong>","<strong>idled</strong>","<strong>imapd</strong>","<strong>ipurge</strong>","<strong>lmtpd</strong>","<strong>lmtpproxyd</strong>","<strong>masssievec</strong>","<strong>master</strong>","<strong>mbexamine</strong>","<strong>mbpath</strong>","<strong>mbtool</strong>","<strong>mkimap</strong>","<strong>mknewsgroups</strong>","<strong>mupdate</strong>","<strong>nntpd</strong>","<strong>notifyd</strong>","<strong>pop3d</strong>","<strong>pop3proxyd</strong>","<strong>promstatsd</strong>","<strong>proxyd</strong>","<strong>ptdump</strong>","<strong>ptexpire</strong>","<strong>ptloader</strong>","<strong>quota</strong>","<strong>reconstruct</strong>","<strong>rehash</strong>","<strong>relocate_by_id</strong>","<strong>restore</strong>","<strong>sievec</strong>","<strong>sieved</strong>","<strong>smmapd</strong>","<strong>squatter</strong>","<strong>sync_client</strong>","<strong>sync_reset</strong>","<strong>sync_server</strong>","<strong>timsieved</strong>","<strong>tls_prune</strong>","<strong>translatesieve</strong>","<strong>unexpunge</strong>","<strong>arbitronsort.pl</strong>","<strong>dav_reconstruct</strong>","<strong>httptest</strong>","<strong>imtest</strong>","<strong>installsieve</strong>","<strong>lmtptest</strong>","<strong>mupdatetest</strong>","<strong>nntptest</strong>","<strong>pop3test</strong>","<strong>sieveshell</strong>","<strong>sivtest</strong>","<strong>smtptest</strong>","<strong>synctest</strong>","RFCs Supported by Cyrus IMAP","Reporting Bugs","Mailing Lists","Online Meetings","What is Cyrus IMAP?","Operations","Overview","About Cyrus","Cyrus Bylaws","Cyrus History","Cyrus Roadmap","About Cyrus","Who Is Cyrus","Preface","Quickstart Guide","Setup","Sitemap","Document Conventions","Support/Community"],titleterms:{"2839":191,"5464":160,"case":[9,30,36,277,336],"char":[44,45],"const":[44,45],"default":[12,41,49,96,160,178,182,183,184,185,186,187,188,208,209,210,211,212,213,214,215,216,217,219,220,221,222,235,236,238,239,240,241,242,249,251,252,253,254,255,256,259,261,262,263,265,273,283,284],"export":289,"function":[49,55],"int":[44,45],"long":338,"new":[6,41,48,80,96,146,160,173,205,206,267,293],"public":347,"short":61,"switch":[160,304],"true":287,"try":333,"var":64,"void":[44,45],Adding:[80,289],And:80,Are:80,DNS:287,For:93,Has:41,NFS:11,Near:41,Not:90,One:276,PTS:6,TLS:[6,268],The:[7,41,44,46,70,80,96,297,342,440],There:320,Use:[36,81],Used:28,Useful:71,Uses:63,Using:[52,71,80,276,292,293,312,314],With:279,about:[44,45,50,74,88,90,91,93,95,276,319,439,443,445],acap:56,access:[6,14,33,41,88,89,92,271,272,273,274,275,278,349],account:53,aci:[41,274],acl:[41,272,273,326],aclchang:27,action:[47,61],activ:291,actual:277,add:[53,76,268],addit:[49,65,283,289],address:[40,344],addressbook:89,addressbookprefix:89,adjust:[56,268],admin:330,administr:[33,40,41,66,88,89,92,270,273,276,289,310],again:288,aggreg:[7,36,41],all:[76,272,320,338],alloc:55,allow:160,allowplaintext:93,alpha0:[249,259,261,265],also:[68,349,350,351,353,354,355,356,357,358,359,360,361,362,363,364,366,367,368,369,370,371,372,373,374,375,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,421,422,423,424,425,427,429,430,431],altern:[41,49,274,304],altnamespac:33,amount:346,analysi:287,ancient:48,anfi_vcyru:268,ani:267,annot:[6,29,32,160,327],anonym:[41,274],anoth:337,anyon:[41,274],api:[43,44,45,46,47,59,297],appear:348,append:[47,272],appendic:287,appendix:287,appl:278,applepushservic:27,applic:[11,277],arbitron:353,arbitronsort:419,architectur:[270,276,287,289,310,315],archiv:[15,279,280],argument:375,articl:293,ask:316,assumpt:287,atom:[62,291],attende:76,authent:[5,13,16,17,18,41,49,93,268,287,291,375,446],author:[5,41,55,274,375,428],autoconf:160,autocr:[19,88,160],autom:19,automat:19,avail:[9,11,27,30,277,288,327,340,345],back:289,backend:[9,30,36,44,45,160,277,287,289,291,317],background:449,backup:[6,74,267,276,289],backupd:[74,354],bad:291,balanc:287,bare:323,basic:33,befor:71,begin:71,behavior:[41,298],being:336,benefit:287,beta10:125,beta11:126,beta1:[124,179,239,252,262],beta2:[127,180,240,253,263],beta3:[128,181,220,241,254],beta4:[129,182,221],beta5:[130,183],beta6:[131,184],beta7:132,beta8:133,beta9:134,between:[61,289],binari:96,bit:322,blow:288,board:440,bold:449,boyer:56,buffer:11,bug:[68,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,223,224,225,226,227,228,229,230,231,232,233,243,244,245,246,247,379,433],bugfix:[178,179,180,181,182,183,184,185,186,187,188,208,209,210,211,212,213,214,215,216,217,219,220,221,222,235,236,238,239,240,241,242,249,251,252,253,254,255,256,259,261,262,263,265],build:[12,48,49,52,81,192,193,194,196,198,223,224,225,226,227,228,229,231,233,243,244,245,246,247],busytim:76,busytime_query_loc:76,busytime_query_remot:76,bylaw:440,bytecod:75,cach:[6,47,58,267],calcul:41,caldav:[6,20,49,76,88,123,124,125,126,127,128,129,130,131,132,133,134,160,267,268],caldav_allowcalendaradmin:88,caldav_allowschedul:88,caldav_delete_sch:76,caldav_post:76,caldav_put:76,calendar:[13,76,88],calendaralarm:27,calendarprefix:88,callout:160,can:[160,330,337,346,347,348],cancel:76,canon:56,capac:11,carddav:[6,21,49,89,160,268],carddav_allowaddressbookadmin:89,cassandan:51,catchal:160,cento:82,certif:[10,268],chain:310,chang:[41,71,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,208,209,210,211,212,213,214,215,216,217,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,235,236,238,239,240,241,242,243,244,245,246,247,249,251,252,253,254,255,256,257,259,261,262,263,265,267,289,303,440],channel:[310,315],charact:[56,63,322],charset:56,chartabl:56,chat:74,chdir:375,check:[49,268],child:342,chk_cyru:355,claim:335,clamav:95,clean:342,clean_compon:76,client:[5,40,66,90,287,293,331,379],close:[46,47],cmd:160,code:[45,55,56,71],collect:[13,20,22],combin:272,come:287,command:[74,291,352,375],commit:47,common:316,commun:[71,268,450],compact:74,compar:56,compil:[49,56,65,66,278,319],complet:[267,308],compon:[12,23,70,76,268,334],compress:310,comput:9,concept:[40,41,287],conf:[96,160,173,315,349,350],config:[88,267,268],configdirectori:[268,328,446],configur:[4,18,24,25,40,41,44,45,51,65,80,88,89,90,91,92,93,94,95,96,146,160,178,182,183,184,185,186,187,188,205,206,208,209,210,211,212,213,214,215,216,217,219,220,221,222,235,236,238,239,240,241,242,249,251,252,253,254,255,256,259,261,262,263,265,267,278,281,285,289,293,301,310,333,345,346,352,387,446],connect:[338,342],consid:75,consider:[11,58,59,310],consist:72,contact:[13,290],content:[48,72,80,276,301],context:305,contributor:444,control:[14,15,41,56,88,89,92,271,273,274,275,293,295,296,298,349],convent:[52,449],converg:9,convers:6,convert:298,copi:[267,287],core:[329,440,444],corrupt:74,cost:11,count:342,counter:6,creat:[18,41,47,53,76,268,273],createmailbox:375,creation:[9,19],cross:48,ctl_backup:[74,276,356],ctl_conversationsdb:357,ctl_cyrusdb:[44,358],ctl_deliv:359,ctl_mboxlist:360,ctl_zoneinfo:361,current:63,cvt_cyrusdb:[44,362],cvt_xlist_specialus:363,cyr_backup:[74,276,364],cyr_buildinfo:365,cyr_dbtool:[44,366],cyr_deni:367,cyr_df:368,cyr_expir:369,cyr_info:370,cyr_l:371,cyr_synclog:372,cyr_userseen:373,cyr_virusscan:374,cyradm:[161,173,293,375],cyrdump:376,cyru:[1,6,7,8,12,18,24,25,30,36,41,48,49,50,51,55,56,57,58,59,60,61,62,63,64,65,66,70,72,75,76,78,79,81,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,267,268,269,276,278,286,287,288,289,290,291,293,295,296,297,301,303,309,314,315,322,323,324,334,335,344,345,349,432,436,439,440,441,442,443,444,445,446],cyrusdb:[44,45],cyrusdb_:44,cyrusdb_abort:[44,45],cyrusdb_clos:[44,45],cyrusdb_commit:[44,45],cyrusdb_consist:[44,45],cyrusdb_cr:[44,45],cyrusdb_delet:[44,45],cyrusdb_don:[44,45],cyrusdb_dump:[44,45],cyrusdb_fetch:[44,45],cyrusdb_fetchlock:[44,45],cyrusdb_foreach:[44,45],cyrusdb_foron:[44,45],cyrusdb_init:[44,45],cyrusdb_open:[44,45],cyrusdb_stor:[44,45],cyrusdb_sync:[44,45],cyrusman:52,cyrussiev:347,cyrusv2:268,daemon:[334,349],data:[9,11,44,45,56,74,191,267,277,291],databas:[6,10,18,42,49,74,160,267,281,287,289,291,298,317,337],datalen:[44,45],dav:[6,13,22,23],dav_reconstruct:420,davdriveprefix:92,debian:[83,174],debug:[51,80],declin:76,defin:[15,293],definit:[287,295,305],delai:[24,25,47],delet:[24,47,76,272,291,305,330,331],delete_mod:160,deleteaclmailbox:375,deletemailbox:375,deliv:[6,40,76,289,332,335,377],deliver_merge_pollstatu:76,deliver_merge_repli:76,deliver_merge_request:76,deliver_merge_vpoll_repli:76,deliveri:[6,26,41,268,287,290,318,325,446],depend:[49,65,162,163,164,176,189,199,206],deploy:7,descript:[15,68,349,350,351,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,427,428,429,430,431],design:35,detail:[44,45,58,291],determin:306,dev:208,develop:[1,42,43,49,51,54,66,67,69,70,71,73,90,160,266,440],devic:[9,30],differ:276,directori:[41,64,268,279,281,282,283,308],disconnect:375,discret:[7,36],discretionari:271,disk:11,displai:91,distribut:[9,30,81,88,160,277,289,314],dlist:62,document:[52,160,449],doe:[160,322,323,325,335,339,344,345],domain:40,down:267,download:2,draft:432,due:336,dump:329,duplic:[6,26,41,318],each:76,earlier:442,easi:288,easier:320,email:[268,293],enabl:[12,15,77,329,341],end:[93,289],engin:440,enhanc:[160,303],enterpris:86,environ:[7,51,70,268,343],ephemer:[96,268,281],equal:[9,30,277],equiv:351,erratum:200,error:[319,343],establish:338,etc:[96,276],evalu:75,event:[27,60,76,79,160,278,297,349],everyon:276,everyth:18,exampl:[27,30,33,44,45,52,59,61,68,277,349,351,353,354,355,356,357,358,359,360,361,362,363,364,366,367,368,369,370,371,372,373,374,377,380,381,382,383,384,385,388,389,390,391,393,396,397,398,399,403,404,406,407,410,411,412,414,415,418,419,421,422,424,425,427,429,430,431],exclud:[30,76],exclus:[9,277],exempt:307,exim:324,exist:[267,335],exit:375,experi:333,experiment:[203,223],expir:[293,305,331],expung:[25,331],expunge_mod:160,extend:160,extens:[223,226,243,301],extern:[56,81],facil:41,fail:80,failov:310,failur:[287,288],faster:312,featur:[13,96,160,203,223,267,268,272,316,436],fedora:[84,319],feed:[91,293],fetch:346,fetchnew:[6,378],field:350,file:[6,41,42,52,58,62,96,267,268,276,279,281,287,314,315,340,351,352,353,354,356,357,358,359,360,361,362,363,364,366,367,368,369,370,371,372,373,374,377,378,379,380,381,382,383,384,385,387,388,389,390,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,410,411,412,413,414,415,416,418],filesystem:[10,96,328],filter:[37,41],find:[287,291],finish:48,first:47,fit:[9,30,277],fix:[160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,210,211,212,213,214,215,216,217,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,235,236,238,239,240,241,242,243,244,245,246,247,249,251,252,253,254,255,256,259,261,262,263,265],fixup:56,flag:[44,45,62,331],flagsclear:27,flagsset:27,flat:6,flowchart:76,fname:[44,45],folder:[11,19,61,160,301,305,307,308,331,347],footprint:160,forc:[44,45],foreach_p:[44,45],fork:53,form:56,format:[49,58,75,160,291],found:336,freebusi:88,freez:333,frequent:316,from:[76,81,267,268,276,289,307,311,344,446],front:289,frontend:[9,30,277,287],fud:379,full:[44,45],further:[66,293],futur:[56,58,63,287,442],gdb:334,gener:[11,55,56,75,93,95,312],get:[42,81,320,324],getmetadata:375,git:81,github:[52,53,71],global:303,glossari:3,going:320,goodp:[44,45],gotcha:[44,289],govern:440,gpf:340,greater:160,group:[268,276,440,446],groupwar:11,grow:342,guid:[4,42,53,270,446],guidanc:54,guidelin:277,hack:55,handl:56,hang:325,happen:[9,30,277,287,288],hard:288,hash:282,hat:[86,319],have:[288,333,348],header:[58,322],help:[0,320,375],hex32:62,hex:62,high:[315,340,345,442],hint:55,histori:[354,356,357,361,363,364,367,369,370,372,374,380,398,404,407,411,412,423,441],host:[7,160],how:[44,50,267,324,326,329,334,341,347],howto:292,http:[76,93],httpd:[49,93,380],httpmodul:93,httptest:421,hub:70,idempot:310,identifi:[41,274],idl:[12,381],ietf:432,iii:440,imap4:443,imap:[7,8,12,24,25,30,36,41,42,44,48,55,56,57,58,59,60,61,62,63,64,72,75,78,79,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,269,276,287,292,303,309,312,314,331,432,436,443],imap_current_stable_vers:52,imapd:[96,173,315,333,350,382],imapfe:293,imaptest:51,imclient:68,imip:76,imip_send:76,impact:160,implement:[8,56,59,74,90,287],implicit:[41,273],improv:96,improved_mboxlist_sort:77,imtest:422,inbox:348,includ:160,incom:336,index:[6,46,58,74,160,312],individu:[275,308,444],info:375,inform:[30,71,93,293],initi:[41,273,276,291],input:56,instal:[51,66,74,81,267,268,276,289,301,310,316,446],installsiev:423,instanc:[39,41,76],instruct:74,integr:[11,268],inter:72,interfac:[44,56],intern:1,internation:56,interoper:316,intro:[45,46,47,58,59],introduct:[48,56,61,80,269,276,301],invoc:312,invok:315,ipurg:383,isched_send:76,ischedul:[76,88],iscsi:11,issu:[53,191],ital:449,item:[267,277],itip:76,jmap:[49,66,90,223,226,243,267],join:343,just:303,keep:[289,342],kei:[6,44,45,53],kerbero:[16,41,274],keylen:[44,45],keyword:68,known:8,krb5:319,krb:351,kssl:319,kvlist:62,languag:41,larg:332,launch:[268,446],layer:[60,297],layout:45,ldap:17,ldap_tls_:160,level:[11,315,442],librari:[67,68],libtool:160,licens:81,lifetim:57,limit:[8,19,276],line:[74,375],link:72,linux:[86,303,319],lirstw:272,list:[6,41,52,62,67,71,74,91,275,287,291,356,434],listaclmailbox:375,listmailbox:375,listquota:375,listquotaroot:375,lmtp:[41,160],lmtp_catchall_mailbox:160,lmtp_fuzzy_mailbox_match:160,lmtpd:384,lmtpproxyd:385,lmtptest:424,load:[13,276,287],local:[41,76,290],locat:[279,281,283,284,296],lock:[8,47,57,58,59,74,276,314,328,356],log:[41,315,333,346],login:[27,41,160],logout:[27,291],longer:342,loss:191,lrs:272,lrsip:272,lrsp:272,lrswipkxtecd:272,lrswipkxtecda:272,lrxte:272,lun:11,machin:80,macro:[56,272],mail:[28,40,41,49,52,71,268,279,287,289,290,301,314,325,336,337,344,434,446],mailbox:[5,6,8,9,13,18,19,29,30,31,33,41,47,57,58,74,91,160,273,277,287,289,290,291,305,306,307,308,314,326,330,335,336],mailboxcr:27,mailboxdelet:27,mailboxrenam:27,mailboxsubscrib:27,mailboxunsubscrib:27,mailer:268,major:[178,179,180,181,182,183,184,185,186,187,188,208,209,210,211,212,213,214,215,216,217,219,220,221,222,235,236,238,239,240,241,242,249,251,252,253,254,255,256,259,261,262,263,265],make:[56,71,80,347],man:[52,352],manag:[13,22,270,301,313],manual:310,map:62,map_fre:55,map_refresh:55,masssievec:386,master:[96,288,289,291,310,387],maximum:342,mbexamin:388,mboxconfig:375,mboxkei:6,mbpath:389,mbtool:390,meet:435,member:76,memcpi:55,memori:[55,160],messag:[13,26,32,41,58,61,74,76,293,305,322,323,331,346],messageappend:27,messagecopi:27,messageexpir:27,messageexpung:27,messagemov:27,messagenew:27,messageread:27,messagetrash:27,metadata:[29,31,32,160,272,279,283,311,314],method:395,mime:443,minim:56,miscellan:160,mismatch:321,mix:336,mkchartabl:56,mkimap:391,mknewsgroup:392,mode:[9,30,33,277,287,288,310,356,364,407],model:46,modifi:76,modul:[55,93],monitor:[41,285,298],mono:449,moor:56,more:56,most:[9,30,277],motiv:75,move:[276,289,331],mta:[94,268,446],multi:7,multipath:11,multipl:[40,276,333],multiplex:287,mupdat:[287,288,289,290,291,393],mupdatetest:425,murder:[7,9,12,30,36,41,49,160,175,267,286,287,288,289,290,291,315,345],must:320,mysql:[18,337],name:[96,160,284,287,375,428],namelock:[59,160],namespac:[33,69,304],need:0,neg:41,network:55,newli:[41,273],newlin:323,newsgroup:293,nginx:292,nice:324,nntp:293,nntpd:394,nntptest:426,non:[303,449],none:272,nonstandard:[223,226,243],noop:291,normal:56,note:[11,48,58,72,73,74,78,96,97,98,99,100,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,208,209,210,211,212,213,214,215,216,217,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,235,236,238,239,240,241,242,243,244,245,246,247,249,251,252,253,254,255,256,257,259,261,262,263,265,266,267,375,377,387,449],notif:[27,41,160,374,395],notifyd:395,now:276,num32:62,num:62,numer:[41,300],object:[62,268],occasion:333,octet:56,off:33,older:266,onc:338,one:[76,276],onli:49,onlin:435,open:[46,47],openssl:321,opensus:85,oper:[72,287,302,306,310,314,316,437],option:[12,49,66,88,146,160,173,205,206,268,278,285,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,420,421,422,423,424,425,427,428,429,430,431],order:[57,72],organ:76,other:[33,41,49,75,76,162,163,164,175,176,189,192,197,198,199,200,201,202,203,224,225,229,233,245,246,247,257,273,276,310],outbox:76,outgo:301,over:41,overal:75,overview:[6,52,70,267,278,287,293,438],own:80,owner:[41,273],packag:[81,96,446],page:[52,352],pam:18,pam_mysql:18,particip:[71,291],particular:276,partit:[9,28,30,31,41,74,160,276,279,280,283,284,311,314],past:444,patch:[52,71,174,268],path:160,pattern:56,per:281,perform:[10,11,15,76],period:310,person:33,phabric:160,place:267,plai:324,plaintext:41,plan:267,platform:12,point:[9,30],pollin:48,pop3:[8,41,338],pop3d:[346,396],pop3proxyd:397,pop3test:427,pop:287,port:[268,294,295,303,446],post:[76,272,293],postfix:268,pre:[18,48,70,72],predefin:96,prefac:445,prefix:[44,45],prefixlen:[44,45],prepar:[267,268],prerequisit:[48,72],primari:337,problem:316,proc:[41,328],procedur:302,process:[36,71,342,440],process_attende:76,procp:[44,45],product:266,program:96,promstatsd:398,proport:449,prot:[60,79,297],proto:268,protocol:[8,11,41,62,268,446],provis:92,provok:276,proxi:[7,292],proxyd:399,ptdump:400,ptexpir:401,ptloader:402,ptscach:6,pull:[52,53,276,293,449],purg:331,purpos:[15,96],push:[276,278,289,293],put:[76,80,328],queri:[76,290],question:[74,316],quick:[40,446],quickstart:446,quot:449,quota:[6,19,34,41,160,298,299,300,307,403],quotachang:27,quotaexce:27,quotalegaci:6,quotawithin:27,rc1:[185,222,242,255],rc2:[186,256],rc3:187,rc4:188,read:[44,47,272,293],readahead:11,rebuild:51,recipi:76,recommend:[10,12],reconstruct:[41,74,267,308,339,375,404],record:[47,58],recov:[288,308],recoveri:[41,288],recurr:76,red:[86,319],reduc:276,redund:11,refer:[44,45,56,275,428],referr:287,regular:56,rehash:405,reindex:74,reject:[322,323,336],releas:[42,48,72,81,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,208,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,237,238,239,240,241,242,243,244,245,246,247,250,251,252,253,254,255,256,257,260,261,262,263,266,440],reload:309,relocate_by_id:406,remot:76,remov:[41,76,223],renam:[41,47,74],renamemailbox:375,repair:[41,298],repli:76,replic:[7,11,12,36,49,61,62,267,276,310,315],replica:310,report:433,repositori:53,represent:277,request:[52,53,76,316],requir:[12,49,56,65,276,289,310],requisit:[18,70],reserv:291,reset:[9,30,277],resourc:[42,76],respons:[76,291,344],restor:[74,276,407],restrict:[28,160],retdb:[44,45],retent:11,reus:342,rfc822:62,rfc:[52,160,432],right:[41,272,273,275,276],roadmap:[440,442],rock:[44,45],roll:[276,310],root:[41,299],rss:91,rss_feed:91,rss_feedlist_templ:91,run:[51,80,268,303,334],safe:328,same:[9,30,277],sampl:[41,66,96],sanit:76,sasl:[18,49,268,436,446],saslauthd:18,scalabl:11,scan:95,scanner:95,scenario:[7,30],sched_busytime_queri:76,sched_cancel:76,sched_declin:76,sched_deliv:76,sched_deliver_loc:76,sched_deliver_remot:76,sched_exclud:76,sched_pollstatu:76,sched_repli:76,sched_request:76,sched_vpoll_repli:76,schedul:[76,276],script:[19,80,301],seal:35,search:[6,56,65,279,284,312],secret:41,section:[96,349],secur:[13,165,166,174,190,192,193,196,200,210,211,212,213,214,215,216,217,219,220,221,222,231,232,235,236,238,239,240,241,242,243,244,249,251,252,253,254,255,256,259,261,262,263,265,303],see:[68,349,350,351,353,354,355,356,357,358,359,360,361,362,363,364,366,367,368,369,370,371,372,373,374,375,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,421,422,423,424,425,427,429,430,431],seen:[6,38],select:[9,30,41,160,277],selector:389,send:268,sender:344,sendmail:[40,268],seri:[178,180,181,182,183,184,185,186,187,188,208,209,210,211,212,213,214,215,216,217,219,220,221,222,235,236,238,239,240,241,242,249,251,252,253,254,255,256,259,261,262,263,265,266],server:[7,18,36,37,41,55,56,57,58,59,60,61,62,63,64,75,78,79,276,287,289,290,291,301,310,375],serverlist_select_soft_usage_limit:277,servic:[88,96,278,295,303,309,333,334,349],set:[19,49,80,96,268,289,344,446],setaclmailbox:375,setinfo:375,setmetadata:[160,375],setquota:375,setup:[80,276,285,293,446,447],share:[7,11,33,38,41,160,301,340,347],should:317,shut:267,side:37,siev:[6,12,19,37,41,56,75,267,301,324,409],sievec:408,sieveshel:428,signific:[178,179,180,181,182,183,184,185,186,187,188,208,209,210,211,212,213,214,215,216,217,219,220,221,222,235,236,238,239,240,241,242,249,251,252,253,254,255,256,259,261,262,263,265],sinc:[161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,178,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,208,209,210,211,212,213,214,215,216,217,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,235,236,238,239,240,241,242,243,244,245,246,247,249,251,252,253,254,255,256,257,259,261,262,263,265],singl:[7,39,41],sitemap:448,sivtest:429,size:[306,346],size_t:[44,45],skiplist:6,slave:291,slow:325,smmapd:410,smtp:[76,443],smtptest:430,snapshot:266,socket:[294,295,296],softwar:12,sometim:325,sourc:[70,81,278],space:449,special:[9,30,52,63,267,277,301],specif:[93,267],specifi:41,sphinx:160,split:311,spool:[28,64,279,283,308,314],sql:[6,18,337],squat:6,squatter:[312,411],ssh:53,ssl:[146,174],stabl:266,stacktrac:51,standard:[55,290,302,303],start:[40,42,267,349],startup:36,state:[6,38,281],statu:[6,76,90],statuscach:6,storag:[6,11,13,28,41,92,251,252,253,254,255,256,261,262,263,267,268,276,300,314],store:[39,41,337],string:291,strlcpy:55,strncpy:55,struct:[44,45],structur:[18,64],style:71,sub:[6,160],subfold:348,submit:52,subscrib:375,subscript:[6,19,41,287],subsystem:49,suck:293,suit:80,suitabl:76,summari:287,support:[12,21,41,65,66,93,95,160,266,300,301,345,432,450],suppress:[26,41,318],sync:[289,310],sync_client:412,sync_reset:413,sync_serv:414,synchron:[291,314],synctest:431,synopsi:[52,68,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,427,428,429,430,431],syslog:[41,268],system:[12,35,42,315,340,352],tabl:[56,80],tag:[52,72,207,209,210,211,212,213,214,215,216,217,234,235,236,248,249,258,259,264,265],take:338,tape:276,tarbal:[81,267],target:160,task:76,teardown:80,telemetri:341,tell:72,temporari:[10,96],termin:310,terminolog:[289,305,310],test:[1,18,48,51,66,70,72,80,268,301],than:76,thi:[160,320],thing:75,thought:73,through:[9,52,71],tid:[44,45],tidptr:[44,45],tier:[11,28,284,314],time:[88,268],timsiev:415,tip:51,tls:146,tls_:160,tls_prune:416,tls_session:6,tmpf:328,todo:[7,9,16,17,26,27,29,34,36,37,41,55,74,82,83,84,86,87,90,274,277,303,305,308,311,312,433,449],togeth:18,tool:[44,52,70,81,276,301],topolog:[36,160],track:61,tradit:293,transact:[44,45],transcod:56,transfer:41,translat:56,translatesiev:417,transport:310,trash:331,trick:51,trim_attende:76,troubleshoot:[268,289],tweak:[310,314],two:[9,30,277],twoskip:[6,160],txn:[44,45],type:[6,41,62,160,278,279,300],typograph:449,tzdist:88,ubuntu:87,unabl:343,unavail:288,undefin:160,undelet:305,under:[64,348],underscor:160,unexpung:418,unicod:56,unifi:[7,36],unit:[1,80],unix:[41,274],unlock:47,unsubscrib:375,updat:[48,52,76,178,182,183,184,185,186,187,188,208,209,210,211,212,213,214,215,216,217,219,220,221,222,235,236,238,239,240,241,242,249,251,252,253,254,255,256,259,261,262,263,265,267,291],upgrad:[160,267],upload:72,upon:41,url:88,usag:[9,30,277],use:[18,44,76,301,317,337,342],user:[5,6,11,19,33,41,76,93,160,268,276,281,330,331,346,352,446],user_deni:[6,313],userid:6,using:[56,277],utf:56,util:74,vacat:344,valgrind:80,variou:96,verifi:[74,267],version:[48,72,266,267,321,375,443],via:76,view:[69,326],virtual:40,viru:95,volum:11,voter:76,vpoll:76,wai:[290,320],want:267,warn:[41,449],webdav:[49,92],websit:72,weight:9,well:338,what:[9,30,40,80,88,267,269,276,277,287,288,327,331,334,436,443],when:[9,30,41,277,287,288,331,333],where:[80,287,331],which:317,white:449,who:[267,444],why:[322,323,325,330,332,336,338,339,344],wishlist:432,within:[18,287],work:[41,50,279,339,347],world:72,write:[44,47,272,301],xapian:[57,65],xapianact:6,xfermailbox:375,you:[71,267],your:[0,53,80,268,446],yourself:81,zone:88,zoneinfo:[6,88]}})
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Setup &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Setup &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="genindex.html"/>
3838 <link rel="search" title="Search" href="search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="index.html"/>
4040 <link rel="next" title="Compiling" href="imap/developer/compiling.html"/>
4141 <link rel="prev" title="Concepts" href="imap/concepts/overview_and_concepts.html"/>
4242
765765
766766 <div role="navigation" aria-label="breadcrumbs navigation">
767767 <ul class="wy-breadcrumbs">
768 <li><a href="index.html">Docs v3.8.0-beta1</a> &raquo;</li>
768 <li><a href="index.html">Docs v3.8.0-beta2</a> &raquo;</li>
769769
770770 <li>Setup</li>
771771 <li class="wy-breadcrumbs-aside">
870870 <script type="text/javascript">
871871 var DOCUMENTATION_OPTIONS = {
872872 URL_ROOT:'./',
873 VERSION:'3.8.0-beta1',
873 VERSION:'3.8.0-beta2',
874874 COLLAPSE_INDEX:false,
875875 FILE_SUFFIX:'.html',
876876 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Sitemap &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Sitemap &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="genindex.html"/>
3838 <link rel="search" title="Search" href="search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="index.html"/>
4040
4141
4242
763763
764764 <div role="navigation" aria-label="breadcrumbs navigation">
765765 <ul class="wy-breadcrumbs">
766 <li><a href="index.html">Docs v3.8.0-beta1</a> &raquo;</li>
766 <li><a href="index.html">Docs v3.8.0-beta2</a> &raquo;</li>
767767
768768 <li>Sitemap</li>
769769 <li class="wy-breadcrumbs-aside">
26382638 <script type="text/javascript">
26392639 var DOCUMENTATION_OPTIONS = {
26402640 URL_ROOT:'./',
2641 VERSION:'3.8.0-beta1',
2641 VERSION:'3.8.0-beta2',
26422642 COLLAPSE_INDEX:false,
26432643 FILE_SUFFIX:'.html',
26442644 HAS_SOURCE: true
00 <?xml version='1.0' encoding='UTF-8'?>
1 <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.6/x/3.6.0-beta2.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/smmapd.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/developer/libraries/imclient.html</loc></url><url><loc>https://www.cyrusimap.org/dev/support.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/faqs/o-configdir-tempfs.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/packagers.html</loc></url><url><loc>https://www.cyrusimap.org/dev/overview/about_cyrus.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/faqs/r-murder-ha.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/quotas/quotatypes.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/concepts/features/shared-seen-state.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/murder/murder-mupdate-details.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.0/x/3.0.14.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/concepts/deployment.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.5/x/2.5.7.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/concepts/features/single-instance-store.html</loc></url><url><loc>https://www.cyrusimap.org/dev/operations.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/developer/process.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.3/x/2.3.0.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/installation/distributions/fedora.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/developer/thoughts/notes.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.4/index.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.6/x/3.6.0-rc1.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.5/x/2.5.4.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.0/x/3.0.0.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/usercommands/installsieve.html</loc></url><url><loc>https://www.cyrusimap.org/dev/overview/cyrus_roadmap.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/mbtool.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/cyr_expire.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/support/feedback-mailing-lists.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/usercommands/imtest.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/faqs/install-linkerwarnings.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.4/x/3.4.2.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.2/x/3.2.6.html</loc></url><url><loc>https://www.cyrusimap.org/dev/download.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.4/x/2.4.22.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/sop/userdeny.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/sync_server.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.0/x/3.0.11.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/concepts/deployment/known_protocol_limitations.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.4/x/2.4.20.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/developer/thoughts/improved_mboxlist_sort.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/lmtpd.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.3/index.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/developer/thoughts.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/developer/releasing.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/faqs/o-gdb.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.1/x/3.1.6.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.1/x/3.1.7.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.0/x/3.0.0-rc2.html</loc></url><url><loc>https://www.cyrusimap.org/dev/overview/what_is_cyrus.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.5/x/2.5.3.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/cyrdump.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/concepts/features/access-control.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/locations.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/faqs/o-annotations.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/developer/guidance/mailbox-format.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/concepts/deployment/mailbox_creation_distribution.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/quickstart/introduction.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/developer/API/mailbox-api.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.5/x/2.5.5.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/developer/jmap.html</loc></url><url><loc>https://www.cyrusimap.org/dev/overview/cyrus_history.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/faqs/o-otherdatabases.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.3/x/3.3.1.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/faqs/o-telemetry.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/faq.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/locations/mailspool.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/fetchnews.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/promstatsd.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.0/x/3.0.7.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/access-control/rights-reference.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/installation/distributions/rhel.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.4/x/2.4.16.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/usercommands/arbitronsort.pl.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/sop/deleting.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/cyr_buildinfo.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.3/x/2.3.15.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/installation/http/webdav.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.1/x/3.1.8.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/ctl_backups.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.3/x/2.3.13.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.1/x/3.1.9.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/faqs/o-unable-join-environment.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/cyradm.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.3/x/2.3.9.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/sop.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/index.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/faqs/feature-database-backend.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/developer/github-guide.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/installation/http/caldav.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.4-dav/x/2.4.17-caldav-beta3.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/developer/API.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/concepts/deployment/databases.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.3/x/2.3.10.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/cyr_dbtool.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/developer/API/cyrusdb2.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.4/x/3.4.4.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/usercommands/nntptest.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.0/x/3.0.0-beta3.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/concepts/features/caldav-collections.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/concepts/deployment/authentication_and_authorization.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/developer/guidance/replication_examples.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.5/x/2.5.13.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.6/x/3.6.0-rc2.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/concepts/features/authentication-ldap.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.4/x/2.4.5.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/installation/virus.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.0/x/3.0.18.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.5/x/2.5.12.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/ctl_zoneinfo.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.2/x/3.2.8.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/usercommands/pop3test.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/developer/guidance/replication_protocol.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/architecture.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.4/x/3.4.0-beta2.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.0/x/3.0.13.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.4-dav/x/2.4.17-caldav-beta2.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.5/x/2.5.17.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.2/2.2.x.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/unexpunge.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.5/x/2.5.15.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/ctl_conversationsdb.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/developer/guidance/special_chars.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/rehash.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.5/x/2.5.0.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/faqs/o-freezes.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/installing.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.1/2.1.x.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.5/x/2.5.11.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.4/x/2.4.1.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.4/x/3.4.0-beta1.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.6/x/3.6.0.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.3/x/2.3.11.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/developer/guidance/prot.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/locations/archive-partitions.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/imapd.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.0/index.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/concepts/features/mailbox-metadata-partitions.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/ipurge.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/cyr_ls.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/pop3proxyd.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/mupdate.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/developer/unit-tests.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.8/x/3.8.0-alpha0.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.4/x/2.4.2.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.0/x/3.0.4.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/concepts/features/archiving.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/developer/cyrusworks.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/developer/API/index-api.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.1/x/3.1.4.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/locations/searchtiers.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.6/index.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/developer/guidance/namelocks.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/sop/reconstructing.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.2/x/3.2.2.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.4/x/2.4.9.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.2/x/3.2.0-rc1.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.0/x/3.0.2.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/backupd.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/cyr_deny.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.5/x/2.5.9.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/faqs/o-pop3slow.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.4-dav/index.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.5/index.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.2/x/3.2.1.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.3/x/2.3.6.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/concepts/features/automatic-creation-of-mailboxes.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/faqs/r-pop3-logging.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/installation/http/carddav.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/developer/API/cyrusdb.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.4-dav/x/2.4.17-caldav-beta11.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/access-control/defaults.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.2/x/3.2.10.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.3/x/2.3.19.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/master.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/ports-sockets.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/quota.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/concepts/features/delayed-delete.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/usercommands/synctest.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/usercommands/mupdatetest.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.1/x/3.1.5.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/sop/mailbox-quota.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.4/x/2.4.11.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/concepts/features/mailbox-distribution.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/restore.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/usercommands/smtptest.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/fud.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/developer/documentation.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/concepts/features/delayed-expunge.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.3/x/2.3.16.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.4/x/2.4.4.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.4/x/2.4.21.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/concepts/features/server-side-filtering.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.3/x/3.3.0.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.0/x/3.0.0-rc4.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/access-control/combining-rights.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/concepts/features/sealed-system.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.4/x/3.4.0.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/nntpd.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.9/index.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/quotas/quotaroots.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/concepts/deployment/storage.html</loc></url><url><loc>https://www.cyrusimap.org/dev/overview/who_is_cyrus.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/installation/distributions/centos.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/concepts/features/namespaces.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/concepts/deployment/performance_recommendations.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/translatesieve.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/configs/cyrus.conf.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/developer/thoughts/prot-events.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.4-dav/x/2.4.17-caldav-beta10.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.4-dav/x/2.4.17-caldav-beta1.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/sop/administration-running.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/1/1.x.x.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.3/x/2.3.18.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.0/x/3.0.0-rc1.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/proxyd.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/developer/namespaces.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/murder/murder-mail-delivery.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/sop/mailbox-operations.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/ctl_deliver.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.4/index.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/sop/replication.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/quotas.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/backups.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/faqs/o-reconstruct.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/cyr_df.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/concepts/overview_and_concepts.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/developer/guidance/var_directory_structure.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/sop/altnamespace.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/developer.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/relocate_by_id.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.4/x/3.4.0-rc1.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.0/x/3.0.6.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.4/x/3.4.3.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.5/x/2.5.2.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.5/x/3.5.0-alpha0.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/faqs/interop-slow-delivery.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/concepts/features/carddav.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/concepts/features/authentication-sql.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.3/x/2.3.14.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/developer/thoughts/caldav_scheduling_flowchart.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.2/x/3.2.7.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/faqs/o-delete-mailbox.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/installation/mta/configuration.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/developer/guidance/internationalization.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/cvt_cyrusdb.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.1/x/3.1.1.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/concepts/features/dav-components.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/tls_prune.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/faqs/feature-duplicate-delivery.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/index.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/concepts/features/dav-collection-mgmt.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/murder/murder-concepts.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.4/x/3.4.0-beta3.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.4/x/3.4.5.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/protlayer.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/faqs/o-mailbox-doesnotexist.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.0/x/3.0.0-beta2.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.0/x/3.0.5.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/developer/compiling.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.8/index.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.3/x/2.3.20.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/ctl_mboxlist.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/ptexpire.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/notifyd.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/upgrade.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.3/x/2.3.1.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/sieve.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/pop3d.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.4/x/2.4.3.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/nginx-proxy.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/concepts/features/quota.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/mbexamine.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.7/x/3.7.0-alpha0.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/ports/services.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.3/index.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/locations/hashing.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/squatter.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.4/x/2.4.0.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/mknewsgroups.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/usercommands/httptest.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.7/index.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/concepts/features/mail-spool-partitions.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/sop/splitting-metadata.html</loc></url><url><loc>https://www.cyrusimap.org/dev/developers.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.1/x/3.1.0-dev.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/cyr_synclog.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.4-dav/x/2.4.17-caldav-beta4.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/sync_reset.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.3/x/2.3.4.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/developer/guidance/hacking.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.1/index.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/concepts/features/duplicate-message-delivery-suppression.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/getcyrus.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.3/x/2.3.2.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.3/x/2.3.7.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/installation/distributions/opensuse.html</loc></url><url><loc>https://www.cyrusimap.org/dev/overview.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/idled.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.2/x/3.2.0-beta4.html</loc></url><url><loc>https://www.cyrusimap.org/dev/index.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/nntp.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/concepts/features/server-aggregation.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/sop/squatter.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/concepts/features.html</loc></url><url><loc>https://www.cyrusimap.org/dev/overview/cyrus_bylaws.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/developer/thoughts/backup.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.4/x/3.4.1.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/mbpath.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/faqs/interop-8bit.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/concepts/features/event-notifications.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.5/x/2.5.10.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/usercommands/dav_reconstruct.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.0/x/3.0.9.html</loc></url><url><loc>https://www.cyrusimap.org/dev/sitemap.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.0/x/3.0.1.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/faqs/r-publicssharedfolders.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/developer/developer-testing.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.0/2.0.x.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.3/x/2.3.17.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.2/x/3.2.0.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/faqs/o-toomanyprocesses.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.5/index.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.0/x/3.0.0-rc3.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.9/x/3.9.0-alpha0.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/deliver.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/cyr_userseen.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.2/index.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/mkimap.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/cvt_xlist_specialuse.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/cyr_info.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/access-control.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.2/x/3.2.5.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/reconstruct.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/developer/thoughts/bytecode.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/ptloader.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/installation/http/jmap.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/murder/murder-installation.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/installation/distributions/ubuntu.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.6/x/3.6.1.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/lmtpproxyd.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.4/x/2.4.18.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/monitoring.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.0/x/3.0.0-beta4.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.2/x/3.2.9.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/faqs/install-install-help.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.3/x/2.3.8.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.4-dav/x/2.4.17-caldav-beta9.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.1/x/3.1.3.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/ctl_cyrusdb.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/developer/ancient-releasing.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/support/feedback-meetings.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.4-dav/x/2.4.17-caldav-beta6.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.5/x/2.5.6.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.4/x/2.4.10.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.4/x/2.4.17.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/faqs/o-vacation-mailfrom.html</loc></url><url><loc>https://www.cyrusimap.org/dev/quickstart.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.0/x/3.0.16.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.5/x/2.5.8.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/faqs/o-acls.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.2/x/3.2.11.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/cyr_virusscan.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.4/x/2.4.13.html</loc></url><url><loc>https://www.cyrusimap.org/dev/styles.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/httpd.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.4-dav/x/2.4.17-caldav-beta5.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/faqs/o-mixedcase.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/murder/murder-failure-modes.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/arbitron.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.4/x/2.4.19.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/concepts/deployment/deployment_scenarios.html</loc></url><url><loc>https://www.cyrusimap.org/dev/setup.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.4/x/2.4.12.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/concepts/features/message-annotations.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/installation/manage-dav.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/sieved.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.4-dav/x/2.4.17-caldav-beta8.html</loc></url><url><loc>https://www.cyrusimap.org/dev/preface.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/support/feedback-bugs.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.0/x/3.0.10.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.0/x/3.0.3.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.4/x/2.4.14.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/murder/murder.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.4/x/2.4.8.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.1/x/3.1.2.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.4/x/2.4.7.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.0/x/3.0.17.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/sop/reloading.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/usercommands/sieveshell.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.8/x/3.8.0-beta1.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/faqs/o-deleted-expired-expunged-purged.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.2/x/3.2.3.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/configs/imapd.conf.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.3/x/2.3.12.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.2/x/3.2.4.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.5/x/2.5.16.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.0/x/3.0.0-beta6.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/rfc-support.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/developer/guidance/locking.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/developer/install-xapian.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/faqs/o-coredump.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/locations/configuration-state.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/faqs/o-sharedfilesystem-gpfs.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.0/x/3.0.15.html</loc></url><url><loc>https://www.cyrusimap.org/dev/glossary.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/faqs/o-deliverdb-size.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.3/x/2.3.3.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/developer/guidance.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/faqs/interop-sieve-exim.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.4/x/2.4.15.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/cyr_backup.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/developer/libraries.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.0/x/3.0.8.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/configs/krb.equiv.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/usercommands/sivtest.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/concepts/features/mailbox-annotations.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/tweaking.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/installation/http/rss.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/config-mailboxdistribution.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/eventsource.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/timsieved.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/faqs/r-subfolders.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/faqs/interop-barenewlines.html</loc></url><url><loc>https://www.cyrusimap.org/dev/contribute.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/chk_cyrus.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/installation/distributions/debian.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/developer/overview.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/ptdump.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.0/x/3.0.0-beta1.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/ports/sockets.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/sievec.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.2/x/3.2.0-beta3.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.3/x/2.3.5.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/masssievec.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.6/x/3.6.0-beta1.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/concepts/deployment/supported-platforms.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.0/x/3.0.0-beta5.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/sync_client.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/concepts/features/authentication-kerberos.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/concepts/features/virtual-domains.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/usercommands/lmtptest.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.6/x/3.6.0-beta3.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.4-dav/x/2.4.17-caldav-beta7.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.5/x/2.5.1.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.4/x/2.4.6.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/faqs/install-compilationerrors.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.0/x/3.0.12.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/access-control/identifiers.html</loc></url></urlset>
1 <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/cyr_virusscan.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/fetchnews.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.4/x/3.4.0-beta1.html</loc></url><url><loc>https://www.cyrusimap.org/dev/overview.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.0/x/3.0.0-rc2.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/cyr_expire.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.0/x/3.0.4.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/fud.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/concepts/features/authentication-sql.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/faqs/o-gdb.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/ipurge.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/access-control/rights-reference.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.4-dav/x/2.4.17-caldav-beta6.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/installation/http/carddav.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.4/x/3.4.5.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/cyr_ls.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.6/x/3.6.0-rc1.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.6/x/3.6.0.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.3/x/2.3.17.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/lmtpproxyd.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.8/x/3.8.0-beta2.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.3/x/2.3.7.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/architecture.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.2/x/3.2.0-rc1.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.3/x/2.3.16.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/sop/splitting-metadata.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.4/x/2.4.9.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/faqs/o-mailbox-doesnotexist.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/concepts/features/server-aggregation.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/idled.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/sievec.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/developer/API.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/sop/mailbox-quota.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.3/x/2.3.18.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.5/x/2.5.1.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.0/x/3.0.0-beta4.html</loc></url><url><loc>https://www.cyrusimap.org/dev/index.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.7/x/3.7.0-alpha0.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.5/index.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/faqs/o-freezes.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/ctl_conversationsdb.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/developer/thoughts.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/support/feedback-bugs.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.0/x/3.0.12.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.6/index.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.0/x/3.0.0-rc3.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/developer/releasing.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/usercommands/synctest.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/concepts/features/mailbox-distribution.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/usercommands/nntptest.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/faqs/r-pop3-logging.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/developer/unit-tests.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/access-control/combining-rights.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/promstatsd.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.3/x/2.3.8.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.4/x/2.4.14.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.2/x/3.2.10.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.4/x/2.4.1.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.0/x/3.0.13.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/faqs/interop-barenewlines.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/timsieved.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.0/x/3.0.15.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.6/x/3.6.0-beta3.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/httpd.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/developer/namespaces.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/locations/configuration-state.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/backupd.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.2/x/3.2.0.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/concepts/features/duplicate-message-delivery-suppression.html</loc></url><url><loc>https://www.cyrusimap.org/dev/overview/cyrus_roadmap.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.0/x/3.0.3.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/locations/searchtiers.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/sop/userdeny.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/faqs/o-pop3slow.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.4/x/2.4.10.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/sop.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.3/x/2.3.2.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/murder/murder-failure-modes.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/faqs/feature-duplicate-delivery.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.3/x/2.3.9.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/developer/github-guide.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/murder/murder-mupdate-details.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.1/x/3.1.6.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.5/x/2.5.4.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/rehash.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/ptexpire.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/ctl_backups.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/developer/thoughts/prot-events.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.2/x/3.2.7.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.4/x/2.4.17.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/locations/archive-partitions.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/sync_reset.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/developer/compiling.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/locations/hashing.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.4-dav/x/2.4.17-caldav-beta7.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.0/x/3.0.0-beta1.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.4/x/2.4.7.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.0/x/3.0.10.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.2/x/3.2.9.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.3/x/2.3.10.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.6/x/3.6.0-beta1.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/ports-sockets.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/concepts/features/authentication-ldap.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.0/x/3.0.9.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.3/x/2.3.6.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/concepts/features/delayed-expunge.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/installation/distributions/opensuse.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/faqs/r-murder-ha.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/faqs/install-linkerwarnings.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/developer/API/index-api.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.1/x/3.1.0-dev.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/faqs/o-sharedfilesystem-gpfs.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/faqs/o-delete-mailbox.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/concepts/deployment/storage.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/installation/virus.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.1/index.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.4/x/2.4.4.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/cyr_buildinfo.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/concepts/features/mailbox-metadata-partitions.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/concepts/features/delayed-delete.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.3/x/3.3.0.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/reconstruct.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.0/x/3.0.0-rc1.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/master.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/concepts/features/dav-collection-mgmt.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/usercommands/dav_reconstruct.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/mknewsgroups.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.0/x/3.0.6.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/concepts/deployment/authentication_and_authorization.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.2/x/3.2.0-beta3.html</loc></url><url><loc>https://www.cyrusimap.org/dev/overview/cyrus_history.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.0/x/3.0.5.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.0/x/3.0.18.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/chk_cyrus.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/concepts/features.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.8/x/3.8.0-beta1.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/faqs/interop-slow-delivery.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.3/index.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.4/x/2.4.2.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.4/x/3.4.2.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/developer/ancient-releasing.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.4/x/3.4.1.html</loc></url><url><loc>https://www.cyrusimap.org/dev/operations.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/faq.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/relocate_by_id.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.0/x/3.0.0-beta6.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/developer/thoughts/caldav_scheduling_flowchart.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/concepts/features/event-notifications.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/installation/manage-dav.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/installation/distributions/ubuntu.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.3/x/2.3.14.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/quotas/quotaroots.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/index.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.5/x/2.5.9.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/locations.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.0/x/3.0.0.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.4-dav/x/2.4.17-caldav-beta1.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/cyr_synclog.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.4-dav/x/2.4.17-caldav-beta4.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.1/x/3.1.9.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/faqs/interop-sieve-exim.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.4/x/2.4.6.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/sop/reloading.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.4/x/2.4.16.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/faqs/feature-database-backend.html</loc></url><url><loc>https://www.cyrusimap.org/dev/download.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.0/x/3.0.16.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.5/x/2.5.3.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.5/x/2.5.11.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/cyr_dbtool.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.2/2.2.x.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/nntpd.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/sieved.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/ports/sockets.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/developer/API/cyrusdb.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/faqs/install-compilationerrors.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.2/x/3.2.2.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/faqs/interop-8bit.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.4/x/2.4.3.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/concepts/features/authentication-kerberos.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.3/x/2.3.11.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.5/index.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/sop/squatter.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/concepts/features/server-side-filtering.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.5/x/2.5.15.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.0/x/3.0.0-beta3.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/ctl_mboxlist.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/concepts/deployment/mailbox_creation_distribution.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.0/x/3.0.7.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/faqs/o-otherdatabases.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/faqs/install-install-help.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/mupdate.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/concepts/deployment/performance_recommendations.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/cyr_df.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.6/x/3.6.0-rc2.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/nginx-proxy.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/concepts/deployment/known_protocol_limitations.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.0/x/3.0.0-rc4.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/developer.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/installation/distributions/debian.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/mkimap.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/usercommands/sieveshell.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.0/x/3.0.0-beta5.html</loc></url><url><loc>https://www.cyrusimap.org/dev/contribute.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.5/x/2.5.16.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.9/x/3.9.0-alpha0.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/developer/guidance/replication_examples.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/quickstart/introduction.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/sync_client.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.4-dav/x/2.4.17-caldav-beta10.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/nntp.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/sop/mailbox-operations.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/sop/administration-running.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/sync_server.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.0/x/3.0.14.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.4/index.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/developer/process.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/sop/replication.html</loc></url><url><loc>https://www.cyrusimap.org/dev/preface.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/concepts/features/carddav.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/usercommands/mupdatetest.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/concepts/features/quota.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/ptloader.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.4/x/2.4.13.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/faqs/o-mixedcase.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/faqs/o-reconstruct.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/cyr_info.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.3/x/2.3.3.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/cvt_xlist_specialuse.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/arbitron.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/developer/guidance/special_chars.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/faqs/o-deleted-expired-expunged-purged.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/eventsource.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/cvt_cyrusdb.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/installation/http/webdav.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/backups.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/ports/services.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.1/x/3.1.8.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/pop3proxyd.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.2/x/3.2.3.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/usercommands/installsieve.html</loc></url><url><loc>https://www.cyrusimap.org/dev/overview/what_is_cyrus.html</loc></url><url><loc>https://www.cyrusimap.org/dev/sitemap.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/developer/thoughts/improved_mboxlist_sort.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/concepts/features/mail-spool-partitions.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.1/x/3.1.7.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/ctl_zoneinfo.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.3/x/2.3.13.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.6/x/3.6.0-beta2.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/concepts/features/caldav-collections.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/developer/libraries.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.4/x/2.4.12.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.4/x/2.4.5.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/protlayer.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/developer/API/mailbox-api.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/concepts/features/archiving.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/faqs/o-acls.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/faqs/r-publicssharedfolders.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.3/x/2.3.0.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/faqs/o-annotations.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/faqs/o-toomanyprocesses.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/developer/guidance/hacking.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.8/x/3.8.0-alpha0.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.4/x/3.4.4.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/index.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.3/index.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/concepts/features/sealed-system.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/concepts/features/mailbox-annotations.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.1/x/3.1.3.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/installation/distributions/fedora.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/developer/guidance/prot.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin.html</loc></url><url><loc>https://www.cyrusimap.org/dev/glossary.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/developer/API/cyrusdb2.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/murder/murder-concepts.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.0/x/3.0.8.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/concepts/deployment/databases.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/developer/guidance/internationalization.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/developer/thoughts/backup.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/tweaking.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.4/x/2.4.21.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/getcyrus.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/developer/guidance/namelocks.html</loc></url><url><loc>https://www.cyrusimap.org/dev/overview/who_is_cyrus.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/developer/documentation.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/sop/altnamespace.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/murder/murder-mail-delivery.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.4/index.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.7/index.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/config-mailboxdistribution.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.2/index.html</loc></url><url><loc>https://www.cyrusimap.org/dev/setup.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/masssievec.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/notifyd.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/developer/thoughts/bytecode.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.5/x/2.5.7.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/mbtool.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/faqs/o-coredump.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.9/index.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/cyrdump.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/proxyd.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/usercommands/imtest.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.2/x/3.2.5.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.3/x/3.3.1.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/concepts/features/automatic-creation-of-mailboxes.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.5/x/2.5.0.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.4/x/3.4.0-beta3.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.3/x/2.3.1.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/installation/http/rss.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.4-dav/index.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/faqs/o-unable-join-environment.html</loc></url><url><loc>https://www.cyrusimap.org/dev/overview/cyrus_bylaws.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/developer/libraries/imclient.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/smmapd.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.4/x/2.4.22.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.4-dav/x/2.4.17-caldav-beta9.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/1/1.x.x.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/faqs/r-subfolders.html</loc></url><url><loc>https://www.cyrusimap.org/dev/support.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.5/x/2.5.10.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.4/x/3.4.0-beta2.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.4-dav/x/2.4.17-caldav-beta8.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.5/x/3.5.0-alpha0.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/mbpath.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/ctl_cyrusdb.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.3/x/2.3.20.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.4/x/3.4.0-rc1.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/concepts/overview_and_concepts.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/access-control/defaults.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/upgrade.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.1/x/3.1.4.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/configs/krb.equiv.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/rfc-support.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.2/x/3.2.8.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/usercommands/httptest.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/usercommands/arbitronsort.pl.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/murder/murder-installation.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/installing.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/cyr_backup.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/cyr_userseen.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.6/x/3.6.1.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.4/x/2.4.15.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/installation/mta/configuration.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/developer/guidance/var_directory_structure.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.4-dav/x/2.4.17-caldav-beta5.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/lmtpd.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/concepts/features/message-annotations.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/translatesieve.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/concepts/deployment.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.4-dav/x/2.4.17-caldav-beta3.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.5/x/2.5.17.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.4/x/3.4.3.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/monitoring.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.3/x/2.3.19.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/concepts/features/namespaces.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/sop/reconstructing.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.2/x/3.2.1.html</loc></url><url><loc>https://www.cyrusimap.org/dev/developers.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.2/x/3.2.4.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/ptdump.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/developer/overview.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.4-dav/x/2.4.17-caldav-beta2.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/quotas/quotatypes.html</loc></url><url><loc>https://www.cyrusimap.org/dev/overview/about_cyrus.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/concepts/features/virtual-domains.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.2/x/3.2.0-beta4.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/access-control.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/concepts/features/single-instance-store.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/access-control/identifiers.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/packagers.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.4/x/2.4.8.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/mbexamine.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.3/x/2.3.4.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/developer/guidance/locking.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.5/x/2.5.12.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.0/index.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/developer/jmap.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/imapd.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/locations/mailspool.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.4/x/2.4.19.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/usercommands/sivtest.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/developer/thoughts/notes.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.0/x/3.0.11.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/support/feedback-mailing-lists.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.5/x/2.5.8.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.4-dav/x/2.4.17-caldav-beta11.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/developer/guidance.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/support/feedback-meetings.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/installation/distributions/centos.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/quota.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.2/x/3.2.6.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/developer/developer-testing.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/concepts/deployment/supported-platforms.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.4/x/3.4.0.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/cyr_deny.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/sop/deleting.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/configs/imapd.conf.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.2/x/3.2.11.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.3/x/2.3.15.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/concepts/features/dav-components.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/faqs/o-telemetry.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.1/x/3.1.1.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/ctl_deliver.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/squatter.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.5/x/2.5.5.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/murder/murder.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/tls_prune.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/concepts/deployment/deployment_scenarios.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/installation/http/caldav.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.5/x/2.5.6.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.5/x/2.5.13.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/installation/http/jmap.html</loc></url><url><loc>https://www.cyrusimap.org/dev/quickstart.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.0/x/3.0.2.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/pop3d.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/concepts/features/access-control.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.0/2.0.x.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.1/x/3.1.5.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/faqs/o-deliverdb-size.html</loc></url><url><loc>https://www.cyrusimap.org/dev/styles.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.0/x/3.0.1.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.4/x/2.4.11.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.0/x/3.0.0-beta2.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.4/x/2.4.20.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/faqs/o-configdir-tempfs.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/developer/cyrusworks.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/usercommands/lmtptest.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/installation/distributions/rhel.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/usercommands/pop3test.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/quotas.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.0/x/3.0.17.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/configs/cyrus.conf.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.1/2.1.x.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.4/x/2.4.18.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/deliver.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/developer/guidance/mailbox-format.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.3/x/2.3.12.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.1/x/3.1.2.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/developer/install-xapian.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/3.8/index.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.5/x/2.5.2.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/admin/sieve.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/cyradm.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.3/x/2.3.5.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/concepts/features/shared-seen-state.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/restore.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/systemcommands/unexpunge.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/download/release-notes/2.4/x/2.4.0.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/developer/guidance/replication_protocol.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/faqs/o-vacation-mailfrom.html</loc></url><url><loc>https://www.cyrusimap.org/dev/imap/reference/manpages/usercommands/smtptest.html</loc></url></urlset>
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Document Conventions &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Document Conventions &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="genindex.html"/>
3838 <link rel="search" title="Search" href="search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="index.html"/>
4040
4141
4242
763763
764764 <div role="navigation" aria-label="breadcrumbs navigation">
765765 <ul class="wy-breadcrumbs">
766 <li><a href="index.html">Docs v3.8.0-beta1</a> &raquo;</li>
766 <li><a href="index.html">Docs v3.8.0-beta2</a> &raquo;</li>
767767
768768 <li>Document Conventions</li>
769769 <li class="wy-breadcrumbs-aside">
880880 <script type="text/javascript">
881881 var DOCUMENTATION_OPTIONS = {
882882 URL_ROOT:'./',
883 VERSION:'3.8.0-beta1',
883 VERSION:'3.8.0-beta2',
884884 COLLAPSE_INDEX:false,
885885 FILE_SUFFIX:'.html',
886886 HAS_SOURCE: true
77
88 <meta name="viewport" content="width=device-width, initial-scale=1.0">
99
10 <title>Support/Community &mdash; Cyrus IMAP 3.8.0-beta1 documentation</title>
10 <title>Support/Community &mdash; Cyrus IMAP 3.8.0-beta2 documentation</title>
1111
1212
1313
3636 <link rel="index" title="Index"
3737 href="genindex.html"/>
3838 <link rel="search" title="Search" href="search.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta1 documentation" href="index.html"/>
39 <link rel="top" title="Cyrus IMAP 3.8.0-beta2 documentation" href="index.html"/>
4040 <link rel="next" title="Reporting Bugs" href="imap/support/feedback-bugs.html"/>
4141 <link rel="prev" title="Unit Tests" href="imap/developer/unit-tests.html"/>
4242
765765
766766 <div role="navigation" aria-label="breadcrumbs navigation">
767767 <ul class="wy-breadcrumbs">
768 <li><a href="index.html">Docs v3.8.0-beta1</a> &raquo;</li>
768 <li><a href="index.html">Docs v3.8.0-beta2</a> &raquo;</li>
769769
770770 <li>Support/Community</li>
771771 <li class="wy-breadcrumbs-aside">
830830 <script type="text/javascript">
831831 var DOCUMENTATION_OPTIONS = {
832832 URL_ROOT:'./',
833 VERSION:'3.8.0-beta1',
833 VERSION:'3.8.0-beta2',
834834 COLLAPSE_INDEX:false,
835835 FILE_SUFFIX:'.html',
836836 HAS_SOURCE: true
157157
158158 Usage: "|imap_current_stable_version|"
159159
160 Produces 3.8.0-beta1.
160 Produces 3.8.0-beta2.
161161
162162
163163 Conventions: Man Pages
3535 pre-built documentation.
3636
3737 Download a versioned tarball using HTTPS. Latest stable version is
38 3.8.0-beta1.
38 3.8.0-beta2.
3939
4040 Extract the tarball:
4141
33 * Cyrus IMAP 3.8.0-alpha0 Release Notes
44
55 * Cyrus IMAP 3.8.0-beta1 Release Notes
6
7 * Cyrus IMAP 3.8.0-beta2 Release Notes
0 Cyrus IMAP 3.8.0-beta2 Release Notes
1 ************************************
2
3 Download from GitHub:
4
5 * https://github.com/cyrusimap/cyrus-imapd/releases/download/cyrus-
6 imapd-3.8.0-beta2/cyrus-imapd-3.8.0-beta2.tar.gz
7
8 * https://github.com/cyrusimap/cyrus-imapd/releases/download/cyrus-
9 imapd-3.8.0-beta2/cyrus-imapd-3.8.0-beta2.tar.gz.sig
10
11
12 Major changes since the 3.6 series
13 ==================================
14
15 * Adds the ability for replication to stage message uploads to the
16 archive partition rather than the spool partition.
17
18 * Adds long-options support to various command line tools
19
20 * Adds a new BYTESIZE smart type for imapoptions that set sizes
21
22 * Removes empty lines from cyr_expire(8) verbose output. If you parse
23 this output with external tools, those may need updating to match.
24
25 * Adds a module to ptloader which speaks HTTP. See the "pts_module"
26 and "httppts_uri" options in imapd.conf(5).
27
28 * Adds support for IMAP Multimailbox Search (**RFC 7377**).
29
30 * Adds support for IMAP Saved Search Results (**RFC 5182**).
31
32 * Advertise support for IMAP URL-PARTIAL (**RFC 5550**).
33
34 * Implements the JMAP calendars specification (draft-ietf-jmap-
35 calendars). See the "jmap_guesstz_fname" option in imapd.conf(5).
36
37 * Adds support for a new read-only "\Scheduled" mailbox that contains
38 emails created via JMAP EmailSubmission/set that are to be sent at a
39 later date/time. Also extends the JMAP EmailSubmission object with
40 optional instructions for moving the message into another mailbox
41 after it has been sent.
42
43 * Maps JMAP CalendarEvent privacy to the newly introduced iCalendar X
44 -JMAP-PRIVACY property rather than CLASS. See JMAP/CalDAV changes
45 in the upgrade instructions.
46
47 * Improves error handling and reporting from mbexamine(8). If you
48 have custom tooling that calls mbexamine, it may need updating.
49
50 * Sieve: Remove support for creating scripts with the deprecated
51 "imapflags" capability and "mark" / "unmark" actions. See Sieve
52 changes in the upgrade instructions.
53
54 * Lock ordering fixes should result in fewer "resource deadlock
55 avoided" errors
56
57
58 Storage changes
59 ===============
60
61 * None so far
62
63
64 Updates to default configuration
65 ================================
66
67 The cyr_info(8) *conf*, *conf-all* and *conf-default* subcommands
68 accept an *-s <version>* argument to highlight imapd.conf(5) options
69 that are new or whose behaviour has changed since the specified
70 version. We recommend using this when evaluating a new Cyrus version
71 to check which configuration options you will need to examine and
72 maybe set or change during the process.
73
74 * Adds a new BYTESIZE smart type for imapoptions that set sizes. This
75 allows sizes to be specified in "B", "KB", "MB", "GB" for better
76 readability.
77
78 These imapd.conf(5) options are changed in some way:
79
80 * archive_maxsize
81
82 * autocreate_quota
83
84 * autocreatequota
85
86 * backup_compact_minsize
87
88 * backup_compact_maxsize
89
90 * event_content_size
91
92 * icalendar_max_size
93
94 * jmap_preview_length
95
96 * jmap_max_size_upload
97
98 * jmap_max_size_blob_set
99
100 * jmap_max_size_request
101
102 * jmap_mail_max_size_attachments_per_email
103
104 * maxmessagesize
105
106 * maxquoted
107
108 * maxword
109
110 * quotawarn -> quotawarnpercent
111
112 * quotawarnkb -> quotawarnsize
113
114 * search_maxsize
115
116 * sieve_maxscriptsize
117
118 * vcard_max_size
119
120 * webdav_attachments_max_binary_attach_size
121
122 This feature is transparent over upgrade and downgrade, provided the
123 imapd.conf remains unchanged.
124
125 Admins may update their imapd.conf to take advantage of the
126 readability of the new smart type, but after doing so will no longer
127 be able to downgrade to a version without this feature (unless they
128 also revert their imapd.conf).
129
130
131 Security fixes
132 ==============
133
134 * None so far
135
136
137 Significant bugfixes
138 ====================
139
140 * Fixed Issue #4380: XFER to newer backends now assumes at least the
141 current mailbox version, rather than the oldest supported mailbox
142 version.
143
144 * Fixed Issue #3771: Special-Use annotations lost on XFER
145
146 * Fixed Issue #4187: ctl_mboxlist(8) can now detect and report broken
147 UUID mailboxes. Thanks Matthias Hunstock.
148
149 * Fixed Issue #4383: rolling squatter(8) only compacted its index
150 databases at shutdown
151
152 * Fixed Issue #4439: GETMETADATA wasn't proxied correctly to murder
153 backends. Thanks Stéphane GAUBERT.
2424
2525 imapd.conf
2626
27 Provide an alternate impad.conf. If not specified, uses
27 Provide an alternate imapd.conf. If not specified, uses
2828 "/etc/imapd.conf".
2929
3030
33 Cyrus IMAP is an email, contacts and calendar server. Cyrus is free
44 and open source.
55
6 * This is the documentation for version 3.8.0-beta1 of Cyrus IMAP:
6 * This is the documentation for version 3.8.0-beta2 of Cyrus IMAP:
77 **stable** branch.
88
99 * The latest development version 3.9.0-alpha0 is at
1414 The first place to start with a new installation of Cyrus IMAP is with
1515 your OS distribution of choice and their packaging, where available.
1616
17 If there is no Cyrus IMAP 3.8.0-beta1 package available yet from your
17 If there is no Cyrus IMAP 3.8.0-beta2 package available yet from your
1818 distro, download the official source tarball from GitHub. The
1919 Compiling guide will help you get it built and installed.
2020
100100 # The short X.Y version.
101101 version = '3.8.0'
102102 # The full version, including alpha/beta/rc tags.
103 release = '3.8.0-beta1'
103 release = '3.8.0-beta2'
104104
105105 # The language for content autogenerated by Sphinx. Refer to documentation
106106 # for a list of supported languages.
432432 rst_prolog = """
433433 .. |imap_last_stable_version| replace:: 3.6.1
434434 .. |imap_last_stable_branch| replace:: `cyrus-imapd-3.6`
435 .. |imap_current_stable_version| replace:: 3.8.0-beta1
435 .. |imap_current_stable_version| replace:: 3.8.0-beta2
436436 .. |imap_current_stable_branch| replace:: `cyrus-imapd-3.8`
437437 .. |imap_latest_development_version| replace:: 3.9.0-alpha0
438438 .. |imap_latest_development_branch| replace:: master
447447 .. |sasl_current_stable_version| replace:: 2.1.28
448448 .. |imap_stable_release_notes| raw:: html
449449
450 <a href="3.8/x/3.8.0-beta1.html">3.8.0-beta1</a>
450 <a href="3.8/x/3.8.0-beta2.html">3.8.0-beta2</a>
451451
452452 .. |imap_development_release_notes| raw:: html
453453
3434 after it has been sent.
3535 * Maps JMAP CalendarEvent privacy to the newly introduced iCalendar
3636 X-JMAP-PRIVACY property rather than CLASS. See
37 :ref:`upgrade_3.8.0-beta1_jmap_caldav_changes` in the upgrade instructions.
37 :ref:`upgrade_3.8.0_jmap_caldav_changes` in the upgrade instructions.
3838 * Improves error handling and reporting from :cyrusman:`mbexamine(8)`. If you
3939 have custom tooling that calls mbexamine, it may need updating.
4040 * Sieve: Remove support for creating scripts with the deprecated
4141 ``imapflags`` capability and ``mark`` / ``unmark`` actions. See
42 :ref:`upgrade_3.8.0-beta1_sieve_changes` in the upgrade instructions.
42 :ref:`upgrade_3.8.0_sieve_changes` in the upgrade instructions.
4343 * Lock ordering fixes should result in fewer "resource deadlock avoided"
4444 errors
4545
0 :tocdepth: 3
1
2 ====================================
3 Cyrus IMAP 3.8.0-beta2 Release Notes
4 ====================================
5
6 Download from GitHub:
7
8 * https://github.com/cyrusimap/cyrus-imapd/releases/download/cyrus-imapd-3.8.0-beta2/cyrus-imapd-3.8.0-beta2.tar.gz
9 * https://github.com/cyrusimap/cyrus-imapd/releases/download/cyrus-imapd-3.8.0-beta2/cyrus-imapd-3.8.0-beta2.tar.gz.sig
10
11 .. _relnotes-3.8.0-beta2_changes:
12
13 Major changes since the 3.6 series
14 ==================================
15
16 * Adds the ability for replication to stage message uploads to the
17 archive partition rather than the spool partition.
18 * Adds long-options support to various command line tools
19 * Adds a new BYTESIZE smart type for imapoptions that set sizes
20 * Removes empty lines from :cyrusman:`cyr_expire(8)` verbose output. If you
21 parse this output with external tools, those may need updating to match.
22 * Adds a module to ptloader which speaks HTTP. See the "pts_module" and
23 "httppts_uri" options in :cyrusman:`imapd.conf(5)`.
24 * Adds support for IMAP Multimailbox Search (:rfc:`7377`).
25 * Adds support for IMAP Saved Search Results (:rfc:`5182`).
26 * Advertise support for IMAP URL-PARTIAL (:rfc:`5550`).
27 * Implements the JMAP calendars specification
28 (:draft:`draft-ietf-jmap-calendars`). See the "jmap_guesstz_fname" option
29 in :cyrusman:`imapd.conf(5)`.
30 * Adds support for a new read-only ``\Scheduled`` mailbox that contains
31 emails created via JMAP EmailSubmission/set that are to be sent
32 at a later date/time. Also extends the JMAP EmailSubmission object
33 with optional instructions for moving the message into another mailbox
34 after it has been sent.
35 * Maps JMAP CalendarEvent privacy to the newly introduced iCalendar
36 X-JMAP-PRIVACY property rather than CLASS. See
37 :ref:`upgrade_3.8.0_jmap_caldav_changes` in the upgrade instructions.
38 * Improves error handling and reporting from :cyrusman:`mbexamine(8)`. If you
39 have custom tooling that calls mbexamine, it may need updating.
40 * Sieve: Remove support for creating scripts with the deprecated
41 ``imapflags`` capability and ``mark`` / ``unmark`` actions. See
42 :ref:`upgrade_3.8.0_sieve_changes` in the upgrade instructions.
43 * Lock ordering fixes should result in fewer "resource deadlock avoided"
44 errors
45
46 .. _relnotes_3.8.0-beta2_storage_changes:
47
48 Storage changes
49 ===============
50
51 * None so far
52
53 Updates to default configuration
54 ================================
55
56 The :cyrusman:`cyr_info(8)` `conf`, `conf-all` and `conf-default` subcommands
57 accept an `-s <version>` argument to highlight :cyrusman:`imapd.conf(5)`
58 options that are new or whose behaviour has changed since the specified
59 version. We recommend using this when evaluating a new Cyrus version to
60 check which configuration options you will need to examine and maybe set or
61 change during the process.
62
63 * Adds a new BYTESIZE smart type for imapoptions that set sizes. This allows
64 sizes to be specified in "B", "KB", "MB", "GB" for better readability.
65
66 These :cyrusman:`imapd.conf(5)` options are changed in some way:
67
68 * archive_maxsize
69 * autocreate_quota
70 * autocreatequota
71 * backup_compact_minsize
72 * backup_compact_maxsize
73 * event_content_size
74 * icalendar_max_size
75 * jmap_preview_length
76 * jmap_max_size_upload
77 * jmap_max_size_blob_set
78 * jmap_max_size_request
79 * jmap_mail_max_size_attachments_per_email
80 * maxmessagesize
81 * maxquoted
82 * maxword
83 * quotawarn -> quotawarnpercent
84 * quotawarnkb -> quotawarnsize
85 * search_maxsize
86 * sieve_maxscriptsize
87 * vcard_max_size
88 * webdav_attachments_max_binary_attach_size
89
90 This feature is transparent over upgrade and downgrade, provided the
91 imapd.conf remains unchanged.
92
93 Admins may update their imapd.conf to take advantage of the readability of
94 the new smart type, but after doing so will no longer be able to downgrade
95 to a version without this feature (unless they also revert their
96 imapd.conf).
97
98 Security fixes
99 ==============
100
101 * None so far
102
103 Significant bugfixes
104 ====================
105
106 * Fixed :issue:`4380`: XFER to newer backends now assumes at least the current
107 mailbox version, rather than the oldest supported mailbox version.
108 * Fixed :issue:`3771`: Special-Use annotations lost on XFER
109 * Fixed :issue:`4187`: :cyrusman:`ctl_mboxlist(8)` can now detect and report
110 broken UUID mailboxes. Thanks Matthias Hunstock.
111 * Fixed :issue:`4383`: rolling :cyrusman:`squatter(8)` only compacted its index
112 databases at shutdown
113 * Fixed :issue:`4439`: GETMETADATA wasn't proxied correctly to murder backends.
114 Thanks Stéphane GAUBERT.
8181 necessary for upgrade: Cyrus recognises the old style storage and will
8282 convert to the new style automatically as necessary.
8383
84 .. _upgrade_3.8.0-beta1_jmap_caldav_changes:
84 .. _upgrade_3.8.0_jmap_caldav_changes:
8585
8686 JMAP/CalDAV changes
8787 ###################
106106 dav.db
107107 - followed by calling `dav_reconstruct` for that user
108108
109 .. _upgrade_3.8.0-beta1_sieve_changes:
109 .. _upgrade_3.8.0_sieve_changes:
110110
111111 Sieve changes
112112 #############
2929
3030 .. option:: imapd.conf
3131
32 Provide an alternate impad.conf. If not specified, uses ``/etc/imapd.conf``.
32 Provide an alternate imapd.conf. If not specified, uses ``/etc/imapd.conf``.
3333
3434 See Also
3535 ========
216216 goto failed_start;
217217 }
218218
219 /* check if sievedir is defined in impad.conf */
219 /* check if sievedir is defined in imapd.conf */
220220 if (!config_getstring(IMAPOPT_SIEVEDIR)) {
221221 syslog(LOG_ERR, "autocreate_sieve: sievedir option is not defined in"
222222 "imapd.conf");
10901090
10911091 /* Do normal WebDAV/HTTP checks (primarily for lock-token via If header) */
10921092 precond = dav_check_precond(txn, params, mailbox, data, etag, lastmod);
1093 if (precond == HTTP_PRECOND_FAILED &&
1093 if (precond == HTTP_PRECOND_FAILED && cdata &&
10941094 cdata->comp_flags.tzbyref && !cdata->organizer && cdata->sched_tag) {
10951095 /* Resource has just had VTIMEZONEs stripped -
10961096 check if conditional matches previous ETag */
71327132 if (txn->req_tgt.allow & ALLOW_USERDATA) reqd_rights |= DACL_PROPRSRC;
71337133 }
71347134
7135 /* Make sure mailbox type is correct */
7136 if (mbtype_isa(txn->req_tgt.mbentry->mbtype) != txn->req_tgt.namespace->mboxtype)
7137 return HTTP_FORBIDDEN;
7138
71397135 /* Make sure Content-Range isn't specified */
71407136 if (spool_getheader(txn->req_hdrs, "Content-Range"))
71417137 return HTTP_BAD_REQUEST;
71757171 }
71767172
71777173 /* Local Mailbox */
7174
7175
7176 /* Make sure mailbox type is correct */
7177 if (mbtype_isa(txn->req_tgt.mbentry->mbtype) != txn->req_tgt.namespace->mboxtype) {
7178 txn->error.precond = CALDAV_LOCATION_OK;
7179 return HTTP_FORBIDDEN;
7180 }
71787181
71797182 /* Read body */
71807183 txn->req_body.flags |= BODY_DECODE;
14211421
14221422 /* Send command to remote */
14231423 proxy_gentag(mytag, sizeof(mytag));
1424 prot_printf(be->out, "%s GETANNOTATION \"%s\" (", mytag, mbox_pat);
1424 prot_printf(be->out, "%s GETMETADATA \"%s\" (", mytag, mbox_pat);
14251425 for (i = 0; i < entry_pat->count; i++) {
14261426 const char *entry = strarray_nth(entry_pat, i);
14271427
784784 #endif
785785 }
786786 else {
787 smtp_envelope_add_rcpt(&sm_env, rc->addr);
787 struct address *addr = NULL;
788 char *rcpt = NULL;
789
790 parseaddr_list(rc->addr, &addr);
791 if (addr) {
792 rcpt = address_get_all(addr, 1);
793 parseaddr_free(addr);
794 }
795 if (rcpt) {
796 smtp_envelope_add_rcpt(&sm_env, rcpt);
797 free(rcpt);
798 }
799 else {
800 r = SIEVE_FAIL;
801 goto done;
802 }
788803 }
789804
790805 if (srs_return_path) free(srs_return_path);
12771277 /* Delete the existing N record value */
12781278 mboxlist_dbname_to_key(dbname, strlen(dbname), NULL, &key);
12791279 r = cyrusdb_delete(mbdb, buf_base(&key), buf_len(&key), txn, /*force*/1);
1280 goto done;
1280 if (r) goto done;
12811281
12821282 if (old->uniqueid) {
12831283 /* Get the existing I key if any */
12901290 if (oldi && !strcmp(oldi->name, name)) {
12911291 mboxlist_id_to_key(old->uniqueid, &key);
12921292 r = cyrusdb_delete(mbdb, buf_base(&key), buf_len(&key), txn, /*force*/1);
1293 goto done;
1293 if (r) goto done;
12941294 }
12951295 }
12961296 }
199199 int r = mboxlist_lookup(inboxname, &mbentry, NULL);
200200 free(inboxname);
201201
202 if (r) sieve_path = "";
203 else if (mbentry->mbtype & MBTYPE_LEGACY_DIRS) {
202 if (r || (mbentry->mbtype & MBTYPE_LEGACY_DIRS)) {
204203 legacy = 1;
205204 }
206205 else {
00 .\" Man page generated from reStructuredText.
11 .
2 .TH "ARBITRON" "8" "March 01, 2023" "3.8.0" "Cyrus IMAP"
2 .TH "ARBITRON" "8" "March 29, 2023" "3.8.0" "Cyrus IMAP"
33 .SH NAME
44 arbitron \- Cyrus IMAP documentation
55 .
00 .\" Man page generated from reStructuredText.
11 .
2 .TH "BACKUPD" "8" "March 01, 2023" "3.8.0" "Cyrus IMAP"
2 .TH "BACKUPD" "8" "March 29, 2023" "3.8.0" "Cyrus IMAP"
33 .SH NAME
44 backupd \- Cyrus IMAP documentation
55 .
00 .\" Man page generated from reStructuredText.
11 .
2 .TH "CHK_CYRUS" "8" "March 01, 2023" "3.8.0" "Cyrus IMAP"
2 .TH "CHK_CYRUS" "8" "March 29, 2023" "3.8.0" "Cyrus IMAP"
33 .SH NAME
44 chk_cyrus \- Cyrus IMAP documentation
55 .
00 .\" Man page generated from reStructuredText.
11 .
2 .TH "CTL_BACKUPS" "8" "March 01, 2023" "3.8.0" "Cyrus IMAP"
2 .TH "CTL_BACKUPS" "8" "March 29, 2023" "3.8.0" "Cyrus IMAP"
33 .SH NAME
44 ctl_backups \- Cyrus IMAP documentation
55 .
00 .\" Man page generated from reStructuredText.
11 .
2 .TH "CTL_CONVERSATIONSDB" "8" "March 01, 2023" "3.8.0" "Cyrus IMAP"
2 .TH "CTL_CONVERSATIONSDB" "8" "March 29, 2023" "3.8.0" "Cyrus IMAP"
33 .SH NAME
44 ctl_conversationsdb \- Cyrus IMAP documentation
55 .
00 .\" Man page generated from reStructuredText.
11 .
2 .TH "CTL_CYRUSDB" "8" "March 01, 2023" "3.8.0" "Cyrus IMAP"
2 .TH "CTL_CYRUSDB" "8" "March 29, 2023" "3.8.0" "Cyrus IMAP"
33 .SH NAME
44 ctl_cyrusdb \- Cyrus IMAP documentation
55 .
00 .\" Man page generated from reStructuredText.
11 .
2 .TH "CTL_DELIVER" "8" "March 01, 2023" "3.8.0" "Cyrus IMAP"
2 .TH "CTL_DELIVER" "8" "March 29, 2023" "3.8.0" "Cyrus IMAP"
33 .SH NAME
44 ctl_deliver \- Cyrus IMAP documentation
55 .
00 .\" Man page generated from reStructuredText.
11 .
2 .TH "CTL_MBOXLIST" "8" "March 01, 2023" "3.8.0" "Cyrus IMAP"
2 .TH "CTL_MBOXLIST" "8" "March 29, 2023" "3.8.0" "Cyrus IMAP"
33 .SH NAME
44 ctl_mboxlist \- Cyrus IMAP documentation
55 .
00 .\" Man page generated from reStructuredText.
11 .
2 .TH "CTL_ZONEINFO" "8" "March 01, 2023" "3.8.0" "Cyrus IMAP"
2 .TH "CTL_ZONEINFO" "8" "March 29, 2023" "3.8.0" "Cyrus IMAP"
33 .SH NAME
44 ctl_zoneinfo \- Cyrus IMAP documentation
55 .
00 .\" Man page generated from reStructuredText.
11 .
2 .TH "CVT_CYRUSDB" "8" "March 01, 2023" "3.8.0" "Cyrus IMAP"
2 .TH "CVT_CYRUSDB" "8" "March 29, 2023" "3.8.0" "Cyrus IMAP"
33 .SH NAME
44 cvt_cyrusdb \- Cyrus IMAP documentation
55 .
00 .\" Man page generated from reStructuredText.
11 .
2 .TH "CYR_BACKUP" "8" "March 01, 2023" "3.8.0" "Cyrus IMAP"
2 .TH "CYR_BACKUP" "8" "March 29, 2023" "3.8.0" "Cyrus IMAP"
33 .SH NAME
44 cyr_backup \- Cyrus IMAP documentation
55 .
00 .\" Man page generated from reStructuredText.
11 .
2 .TH "CYR_BUILDINFO" "8" "March 01, 2023" "3.8.0" "Cyrus IMAP"
2 .TH "CYR_BUILDINFO" "8" "March 29, 2023" "3.8.0" "Cyrus IMAP"
33 .SH NAME
44 cyr_buildinfo \- Cyrus IMAP documentation
55 .
00 .\" Man page generated from reStructuredText.
11 .
2 .TH "CYR_DBTOOL" "8" "March 01, 2023" "3.8.0" "Cyrus IMAP"
2 .TH "CYR_DBTOOL" "8" "March 29, 2023" "3.8.0" "Cyrus IMAP"
33 .SH NAME
44 cyr_dbtool \- Cyrus IMAP documentation
55 .
00 .\" Man page generated from reStructuredText.
11 .
2 .TH "CYR_DENY" "8" "March 01, 2023" "3.8.0" "Cyrus IMAP"
2 .TH "CYR_DENY" "8" "March 29, 2023" "3.8.0" "Cyrus IMAP"
33 .SH NAME
44 cyr_deny \- Cyrus IMAP documentation
55 .
00 .\" Man page generated from reStructuredText.
11 .
2 .TH "CYR_DF" "8" "March 01, 2023" "3.8.0" "Cyrus IMAP"
2 .TH "CYR_DF" "8" "March 29, 2023" "3.8.0" "Cyrus IMAP"
33 .SH NAME
44 cyr_df \- Cyrus IMAP documentation
55 .
00 .\" Man page generated from reStructuredText.
11 .
2 .TH "CYR_EXPIRE" "8" "March 01, 2023" "3.8.0" "Cyrus IMAP"
2 .TH "CYR_EXPIRE" "8" "March 29, 2023" "3.8.0" "Cyrus IMAP"
33 .SH NAME
44 cyr_expire \- Cyrus IMAP documentation
55 .
00 .\" Man page generated from reStructuredText.
11 .
2 .TH "CYR_INFO" "8" "March 01, 2023" "3.8.0" "Cyrus IMAP"
2 .TH "CYR_INFO" "8" "March 29, 2023" "3.8.0" "Cyrus IMAP"
33 .SH NAME
44 cyr_info \- Cyrus IMAP documentation
55 .
00 .\" Man page generated from reStructuredText.
11 .
2 .TH "CYR_SYNCLOG" "8" "March 01, 2023" "3.8.0" "Cyrus IMAP"
2 .TH "CYR_SYNCLOG" "8" "March 29, 2023" "3.8.0" "Cyrus IMAP"
33 .SH NAME
44 cyr_synclog \- Cyrus IMAP documentation
55 .
00 .\" Man page generated from reStructuredText.
11 .
2 .TH "CYR_VIRUSSCAN" "8" "March 01, 2023" "3.8.0" "Cyrus IMAP"
2 .TH "CYR_VIRUSSCAN" "8" "March 29, 2023" "3.8.0" "Cyrus IMAP"
33 .SH NAME
44 cyr_virusscan \- Cyrus IMAP documentation
55 .
00 .\" Man page generated from reStructuredText.
11 .
2 .TH "CYRUS.CONF" "5" "March 01, 2023" "3.8.0" "Cyrus IMAP"
2 .TH "CYRUS.CONF" "5" "March 29, 2023" "3.8.0" "Cyrus IMAP"
33 .SH NAME
44 cyrus.conf \- Cyrus IMAP documentation
55 .
00 .\" Man page generated from reStructuredText.
11 .
2 .TH "DELIVER" "8" "March 01, 2023" "3.8.0" "Cyrus IMAP"
2 .TH "DELIVER" "8" "March 29, 2023" "3.8.0" "Cyrus IMAP"
33 .SH NAME
44 deliver \- Cyrus IMAP documentation
55 .
00 .\" Man page generated from reStructuredText.
11 .
2 .TH "FETCHNEWS" "8" "March 01, 2023" "3.8.0" "Cyrus IMAP"
2 .TH "FETCHNEWS" "8" "March 29, 2023" "3.8.0" "Cyrus IMAP"
33 .SH NAME
44 fetchnews \- Cyrus IMAP documentation
55 .
00 .\" Man page generated from reStructuredText.
11 .
2 .TH "FUD" "8" "March 01, 2023" "3.8.0" "Cyrus IMAP"
2 .TH "FUD" "8" "March 29, 2023" "3.8.0" "Cyrus IMAP"
33 .SH NAME
44 fud \- Cyrus IMAP documentation
55 .
00 .\" Man page generated from reStructuredText.
11 .
2 .TH "HTTPD" "8" "March 01, 2023" "3.8.0" "Cyrus IMAP"
2 .TH "HTTPD" "8" "March 29, 2023" "3.8.0" "Cyrus IMAP"
33 .SH NAME
44 httpd \- Cyrus IMAP documentation
55 .
00 .\" Man page generated from reStructuredText.
11 .
2 .TH "HTTPTEST" "1" "March 01, 2023" "3.8.0" "Cyrus IMAP"
2 .TH "HTTPTEST" "1" "March 29, 2023" "3.8.0" "Cyrus IMAP"
33 .SH NAME
44 httptest \- Cyrus IMAP documentation
55 .
00 .\" Man page generated from reStructuredText.
11 .
2 .TH "IDLED" "8" "March 01, 2023" "3.8.0" "Cyrus IMAP"
2 .TH "IDLED" "8" "March 29, 2023" "3.8.0" "Cyrus IMAP"
33 .SH NAME
44 idled \- Cyrus IMAP documentation
55 .
00 .\" Man page generated from reStructuredText.
11 .
2 .TH "IMAPD" "8" "March 01, 2023" "3.8.0" "Cyrus IMAP"
2 .TH "IMAPD" "8" "March 29, 2023" "3.8.0" "Cyrus IMAP"
33 .SH NAME
44 imapd \- Cyrus IMAP documentation
55 .
00 .\" Man page generated from reStructuredText.
11 .
2 .TH "IMAPD.CONF" "5" "March 01, 2023" "3.8.0" "Cyrus IMAP"
2 .TH "IMAPD.CONF" "5" "March 29, 2023" "3.8.0" "Cyrus IMAP"
33 .SH NAME
44 imapd.conf \- Cyrus IMAP documentation
55 .
00 .\" Man page generated from reStructuredText.
11 .
2 .TH "IMCLIENT" "3" "March 01, 2023" "3.8.0" "Cyrus IMAP"
2 .TH "IMCLIENT" "3" "March 29, 2023" "3.8.0" "Cyrus IMAP"
33 .SH NAME
44 imclient \- Cyrus IMAP documentation
55 .
00 .\" Man page generated from reStructuredText.
11 .
2 .TH "IMTEST" "1" "March 01, 2023" "3.8.0" "Cyrus IMAP"
2 .TH "IMTEST" "1" "March 29, 2023" "3.8.0" "Cyrus IMAP"
33 .SH NAME
44 imtest \- Cyrus IMAP documentation
55 .
00 .\" Man page generated from reStructuredText.
11 .
2 .TH "INSTALLSIEVE" "1" "March 01, 2023" "3.8.0" "Cyrus IMAP"
2 .TH "INSTALLSIEVE" "1" "March 29, 2023" "3.8.0" "Cyrus IMAP"
33 .SH NAME
44 installsieve \- Cyrus IMAP documentation
55 .
00 .\" Man page generated from reStructuredText.
11 .
2 .TH "IPURGE" "8" "March 01, 2023" "3.8.0" "Cyrus IMAP"
2 .TH "IPURGE" "8" "March 29, 2023" "3.8.0" "Cyrus IMAP"
33 .SH NAME
44 ipurge \- Cyrus IMAP documentation
55 .
00 .\" Man page generated from reStructuredText.
11 .
2 .TH "KRB.EQUIV" "5" "March 01, 2023" "3.8.0" "Cyrus IMAP"
2 .TH "KRB.EQUIV" "5" "March 29, 2023" "3.8.0" "Cyrus IMAP"
33 .SH NAME
44 krb.equiv \- Cyrus IMAP documentation
55 .
00 .\" Man page generated from reStructuredText.
11 .
2 .TH "LMTPD" "8" "March 01, 2023" "3.8.0" "Cyrus IMAP"
2 .TH "LMTPD" "8" "March 29, 2023" "3.8.0" "Cyrus IMAP"
33 .SH NAME
44 lmtpd \- Cyrus IMAP documentation
55 .
00 .\" Man page generated from reStructuredText.
11 .
2 .TH "LMTPTEST" "1" "March 01, 2023" "3.8.0" "Cyrus IMAP"
2 .TH "LMTPTEST" "1" "March 29, 2023" "3.8.0" "Cyrus IMAP"
33 .SH NAME
44 lmtptest \- Cyrus IMAP documentation
55 .
00 .\" Man page generated from reStructuredText.
11 .
2 .TH "MASTER" "8" "March 01, 2023" "3.8.0" "Cyrus IMAP"
2 .TH "MASTER" "8" "March 29, 2023" "3.8.0" "Cyrus IMAP"
33 .SH NAME
44 master \- Cyrus IMAP documentation
55 .
00 .\" Man page generated from reStructuredText.
11 .
2 .TH "MBEXAMINE" "8" "March 01, 2023" "3.8.0" "Cyrus IMAP"
2 .TH "MBEXAMINE" "8" "March 29, 2023" "3.8.0" "Cyrus IMAP"
33 .SH NAME
44 mbexamine \- Cyrus IMAP documentation
55 .
00 .\" Man page generated from reStructuredText.
11 .
2 .TH "MBPATH" "8" "March 01, 2023" "3.8.0" "Cyrus IMAP"
2 .TH "MBPATH" "8" "March 29, 2023" "3.8.0" "Cyrus IMAP"
33 .SH NAME
44 mbpath \- Cyrus IMAP documentation
55 .
00 .\" Man page generated from reStructuredText.
11 .
2 .TH "MBTOOL" "8" "March 01, 2023" "3.8.0" "Cyrus IMAP"
2 .TH "MBTOOL" "8" "March 29, 2023" "3.8.0" "Cyrus IMAP"
33 .SH NAME
44 mbtool \- Cyrus IMAP documentation
55 .
00 .\" Man page generated from reStructuredText.
11 .
2 .TH "MUPDATETEST" "1" "March 01, 2023" "3.8.0" "Cyrus IMAP"
2 .TH "MUPDATETEST" "1" "March 29, 2023" "3.8.0" "Cyrus IMAP"
33 .SH NAME
44 mupdatetest \- Cyrus IMAP documentation
55 .
00 .\" Man page generated from reStructuredText.
11 .
2 .TH "NNTPD" "8" "March 01, 2023" "3.8.0" "Cyrus IMAP"
2 .TH "NNTPD" "8" "March 29, 2023" "3.8.0" "Cyrus IMAP"
33 .SH NAME
44 nntpd \- Cyrus IMAP documentation
55 .
00 .\" Man page generated from reStructuredText.
11 .
2 .TH "NNTPTEST" "1" "March 01, 2023" "3.8.0" "Cyrus IMAP"
2 .TH "NNTPTEST" "1" "March 29, 2023" "3.8.0" "Cyrus IMAP"
33 .SH NAME
44 nntptest \- Cyrus IMAP documentation
55 .
00 .\" Man page generated from reStructuredText.
11 .
2 .TH "NOTIFYD" "8" "March 01, 2023" "3.8.0" "Cyrus IMAP"
2 .TH "NOTIFYD" "8" "March 29, 2023" "3.8.0" "Cyrus IMAP"
33 .SH NAME
44 notifyd \- Cyrus IMAP documentation
55 .
00 .\" Man page generated from reStructuredText.
11 .
2 .TH "POP3D" "8" "March 01, 2023" "3.8.0" "Cyrus IMAP"
2 .TH "POP3D" "8" "March 29, 2023" "3.8.0" "Cyrus IMAP"
33 .SH NAME
44 pop3d \- Cyrus IMAP documentation
55 .
00 .\" Man page generated from reStructuredText.
11 .
2 .TH "POP3TEST" "1" "March 01, 2023" "3.8.0" "Cyrus IMAP"
2 .TH "POP3TEST" "1" "March 29, 2023" "3.8.0" "Cyrus IMAP"
33 .SH NAME
44 pop3test \- Cyrus IMAP documentation
55 .
00 .\" Man page generated from reStructuredText.
11 .
2 .TH "QUOTA" "8" "March 01, 2023" "3.8.0" "Cyrus IMAP"
2 .TH "QUOTA" "8" "March 29, 2023" "3.8.0" "Cyrus IMAP"
33 .SH NAME
44 quota \- Cyrus IMAP documentation
55 .
00 .\" Man page generated from reStructuredText.
11 .
2 .TH "RECONSTRUCT" "8" "March 01, 2023" "3.8.0" "Cyrus IMAP"
2 .TH "RECONSTRUCT" "8" "March 29, 2023" "3.8.0" "Cyrus IMAP"
33 .SH NAME
44 reconstruct \- Cyrus IMAP documentation
55 .
00 .\" Man page generated from reStructuredText.
11 .
2 .TH "RESTORE" "8" "March 01, 2023" "3.8.0" "Cyrus IMAP"
2 .TH "RESTORE" "8" "March 29, 2023" "3.8.0" "Cyrus IMAP"
33 .SH NAME
44 restore \- Cyrus IMAP documentation
55 .
00 .\" Man page generated from reStructuredText.
11 .
2 .TH "SIEVESHELL" "1" "March 01, 2023" "3.8.0" "Cyrus IMAP"
2 .TH "SIEVESHELL" "1" "March 29, 2023" "3.8.0" "Cyrus IMAP"
33 .SH NAME
44 sieveshell \- Cyrus IMAP documentation
55 .
00 .\" Man page generated from reStructuredText.
11 .
2 .TH "SIVTEST" "1" "March 01, 2023" "3.8.0" "Cyrus IMAP"
2 .TH "SIVTEST" "1" "March 29, 2023" "3.8.0" "Cyrus IMAP"
33 .SH NAME
44 sivtest \- Cyrus IMAP documentation
55 .
00 .\" Man page generated from reStructuredText.
11 .
2 .TH "SMMAPD" "8" "March 01, 2023" "3.8.0" "Cyrus IMAP"
2 .TH "SMMAPD" "8" "March 29, 2023" "3.8.0" "Cyrus IMAP"
33 .SH NAME
44 smmapd \- Cyrus IMAP documentation
55 .
00 .\" Man page generated from reStructuredText.
11 .
2 .TH "SMTPTEST" "1" "March 01, 2023" "3.8.0" "Cyrus IMAP"
2 .TH "SMTPTEST" "1" "March 29, 2023" "3.8.0" "Cyrus IMAP"
33 .SH NAME
44 smtptest \- Cyrus IMAP documentation
55 .
00 .\" Man page generated from reStructuredText.
11 .
2 .TH "SQUATTER" "8" "March 01, 2023" "3.8.0" "Cyrus IMAP"
2 .TH "SQUATTER" "8" "March 29, 2023" "3.8.0" "Cyrus IMAP"
33 .SH NAME
44 squatter \- Cyrus IMAP documentation
55 .
00 .\" Man page generated from reStructuredText.
11 .
2 .TH "SYNC_CLIENT" "8" "March 01, 2023" "3.8.0" "Cyrus IMAP"
2 .TH "SYNC_CLIENT" "8" "March 29, 2023" "3.8.0" "Cyrus IMAP"
33 .SH NAME
44 sync_client \- Cyrus IMAP documentation
55 .
00 .\" Man page generated from reStructuredText.
11 .
2 .TH "SYNC_RESET" "8" "March 01, 2023" "3.8.0" "Cyrus IMAP"
2 .TH "SYNC_RESET" "8" "March 29, 2023" "3.8.0" "Cyrus IMAP"
33 .SH NAME
44 sync_reset \- Cyrus IMAP documentation
55 .
00 .\" Man page generated from reStructuredText.
11 .
2 .TH "SYNC_SERVER" "8" "March 01, 2023" "3.8.0" "Cyrus IMAP"
2 .TH "SYNC_SERVER" "8" "March 29, 2023" "3.8.0" "Cyrus IMAP"
33 .SH NAME
44 sync_server \- Cyrus IMAP documentation
55 .
00 .\" Man page generated from reStructuredText.
11 .
2 .TH "TIMSIEVED" "8" "March 01, 2023" "3.8.0" "Cyrus IMAP"
2 .TH "TIMSIEVED" "8" "March 29, 2023" "3.8.0" "Cyrus IMAP"
33 .SH NAME
44 timsieved \- Cyrus IMAP documentation
55 .
00 .\" Man page generated from reStructuredText.
11 .
2 .TH "TLS_PRUNE" "8" "March 01, 2023" "3.8.0" "Cyrus IMAP"
2 .TH "TLS_PRUNE" "8" "March 29, 2023" "3.8.0" "Cyrus IMAP"
33 .SH NAME
44 tls_prune \- Cyrus IMAP documentation
55 .
00 .\" Man page generated from reStructuredText.
11 .
2 .TH "UNEXPUNGE" "8" "March 01, 2023" "3.8.0" "Cyrus IMAP"
2 .TH "UNEXPUNGE" "8" "March 29, 2023" "3.8.0" "Cyrus IMAP"
33 .SH NAME
44 unexpunge \- Cyrus IMAP documentation
55 .
664664 $lfh->[2]->print($$cyrref->error, "\n");
665665 return 1;
666666 }
667 $w = 0;
667668 foreach my $mbx (@res) {
668669 $l = $mbx->[0];
669670 if ($mbx->[1] ne '') {