notbugAs an Amazon Associate I earn from qualifying purchases.
Want a good read? Try FreeBSD Mastery: Jails (IT Mastery Book 15)
Want a good monitor light? See my photosAll times are UTC
Ukraine
This referral link gives you 10% off a Fastmail.com account and gives me a discount on my Fastmail account.

Get notified when packages are built

A new feature has been added. FreshPorts already tracks package built by the FreeBSD project. This information is displayed on each port page. You can now get an email when FreshPorts notices a new package is available for something on one of your watch lists. However, you must opt into that. Click on Report Subscriptions on the right, and New Package Notification box, and click on Update.

Finally, under Watch Lists, click on ABI Package Subscriptions to select your ABI (e.g. FreeBSD:14:amd64) & package set (latest/quarterly) combination for a given watch list. This is what FreshPorts will look for.

non port: mail/dovecot2/Makefile

Number of commits found: 115 (showing only 100 on this page)

1 | 2  »  

Sunday, 6 Aug 2017
14:01 adamw search for other commits by this committer
Remove CONFLICTS for dovecot1, which expired.
Original commitRevision:447463 
Friday, 30 Jun 2017
22:56 adamw search for other commits by this committer
Add upstream patches to fix IMAP NOTIFY subscriptions, broken in 2.2.31.

PR:		220397
Submitted by:	Vladimir Krstulja
Original commitRevision:444810 
Monday, 26 Jun 2017
22:29 adamw search for other commits by this committer
Update dovecot2 to 2.2.31, and bump PORTREVISION on the modules.

* LMTP: Removed "(Dovecot)" from added Received headers. Some
  installations want to hide it, and there's not really any good reason
  for anyone to have it.

+ Add ssl_alt_cert and ssl_alt_key settings to add support for
  having both RSA and ECDSA certificates.
+ dsync/imapc, pop3-migration plugin: Strip trailing whitespace from
  headers when matching mails. This helps with migrations from Zimbra.
+ acl: Add acl_globals_only setting to disable looking up
  per-mailbox dovecot-acl files.
+ Parse invalid message addresses better. This mainly affects the
  generated IMAP ENVELOPE replies.
- v2.2.30 wasn't fixing corrupted dovecot.index.cache files properly.
  It could have deleted wrong mail's cache or assert-crashed.
- v2.2.30 mail-crypt-acl plugin was assert-crashing
- v2.2.30 welcome plugin wasn't working
- Various fixes to handling mailbox listing. Especially related to
  handling nonexistent autocreated/autosubscribed mailboxes and ACLs.
- Global ACL file was parsed as if it was local ACL file. This caused
  some of the ACL rule interactions to not work exactly as intended.
- auth: forward_* fields didn't work properly: Only the first forward
  field was working, and only if the first passdb lookup succeeded.
- Using mail_sort_max_read_count sometimes caused "Broken sort-*
  indexes, resetting" errors.
- Using mail_sort_max_read_count may have caused very high CPU usage.
- Message address parsing could have crashed on invalid input.
- imapc_features=fetch-headers wasn't always working correctly and
  caused the full header to be fetched.
- imapc: Various bugfixes related to connection failure handling.
- quota=imapc sent unnecessary FETCH RFC822.SIZE to server when
  expunging mails.
- quota=count: quota_warning = -storage=.. was never executed
- quota=count: Add support for "ns" parameter
- dsync: Fix incremental syncing for mails that don't have Date or
  Message-ID headers.
- imap: Fix hang when client sends pipelined SEARCH +
  EXPUNGE/CLOSE/LOGOUT.
- oauth2: Token validation didn't accept empty server responses.
- imap: NOTIFY command has been almost completely broken since the
  beginning. I guess nobody has been trying to use it.
Original commitRevision:444419 
Monday, 19 Jun 2017
21:16 adamw search for other commits by this committer
Add an upstream patch to fix a potential crash or a scenario where
mail is mis-marked as corrupted.

Submitted by:	arved
Obtained
from:	https://github.com/dovecot/core/commit/8a5fe0c06f48b202a5f1d3dd49f7ed7ed92d64ae
MFH:		2017Q2
Original commitRevision:443911 
Tuesday, 6 Jun 2017
15:37 ler search for other commits by this committer
mail/dovecot2:
    - auth: Multiple failed authentications within short time caused
          crashes
        - push-notification: OX driver crashed at deinit

Bump PORTREVISION for plugins.
Original commitRevision:442779 
Wednesday, 31 May 2017
14:16 adamw search for other commits by this committer
Update dovecot to 2.2.30.1, and bump PORTREVISION on plugins.

  Due to some release process changes I didn't notice that one
  important bugfix wasn't included in the v2.2.30 release branch
  before I made the release. So fixing it here with v2.2.30.1.
  Also included another less important fix.

    - quota_warning scripts weren't working in v2.2.30
    - vpopmail still wasn't compiling

  Also I guess should mention that in v2.2.30+ the "script"
  service's protocol changed to a new version. If anyone had
  written their own script services (not using the included
  "script" binary) they would need some changes. I haven't
  heard of anyone having done that though.
Original commitRevision:442182 
Tuesday, 30 May 2017
20:13 adamw search for other commits by this committer
Update dovecot to 2.2.30, and bump PORTREVISION in consumers.

* auth: Use timing safe comparisons for everything related to
  passwords. It's unlikely that these could have been used for
  practical attacks, especially because Dovecot delays and flushes all
  failed authentications in 2 second intervals. Also it could have
  worked only when passwords were stored in plaintext in the passdb.
* master process sends SIGQUIT to all running children at shutdown,
  which instructs them to close all the socket listeners immediately.
  This way restarting Dovecot should no longer fail due to some
  processes keeping the listeners open for a long time.

+ auth: Add passdb { mechanisms=none } to match separate passdb lookup
+ auth: Add passdb { username_filter } to use passdb only if user
  matches the filter. See https://wiki2.dovecot.org/PasswordDatabase
+ dsync: Add dsync_commit_msgs_interval setting. It attempts to commit
  the transaction after saving this many new messages. Because of the
  way dsync works, it may not always be possible if mails are copied
  or UIDs need to change.
+ imapc: Support imapc_features=search without ESEARCH extension.
+ imapc: Add imapc_features=fetch-bodystructure to pass through remote
  server's FETCH BODY and BODYSTRUCTURE.
+ imapc: Add quota=imapc backend to use GETQUOTA/GETQUOTAROOT on the
  remote server.
+ passdb imap: Add allow_invalid_cert and ssl_ca_file parameters.
+ If dovecot.index.cache corruption is detected, reset only the one
  corrupted mail instead of the whole file.
+ doveadm mailbox status: Add "firstsaved" field.
+ director_flush_socket: Add old host's up/down and vhost count as parameters
- More fixes to automatically fix corruption in dovecot.list.index
- dsync-server: Fix support for dsync_features=empty-header-workaround
- imapc: Various bugfixes, including infinite loops on some errors
- IMAP NOTIFY wasn't working for non-INBOX if IMAP client hadn't
  enabled modseq tracking via CONDSTORE/QRESYNC.
- fts-lucene: Fix it to work again with mbox format
- Some internal error messages may have contained garbage in v2.2.29
- mail-crypt: Re-encrypt when copying/moving mails and per-mailbox keys
  are used. Otherwise the copied mails can't be opened.
- vpopmail: Fix compiling
Original commitRevision:442118 
Thursday, 11 May 2017
00:28 adamw search for other commits by this committer
Control lz4 support from a configure knob. Previously, if liblz4.so was
present, the port would pick it up, without registering a proper dependency.

PORTREVISION bump for the potential product change.

Reported by:	Melissa Pilgrim
Original commitRevision:440608 
Sunday, 30 Apr 2017
22:40 adamw search for other commits by this committer
Add an alread-upstreamed patch to fix dovecot-auth wedging with
NTLM authentication.

PR:		218693
Submitted by:	Andriy Syrovenko
Obtained
from:	https://github.com/dovecot/core/commit/a319c3201bff1ea7bae3e7ab1fae42e9c4759056
MFH:		2017Q2
Original commitRevision:439854 
Wednesday, 12 Apr 2017
16:17 adamw search for other commits by this committer
Update to 2.2.29.1.

  - imapc reconnection fix was forgotten from 2.2.29 release, which also
    made "make check" fail in a unit test
  - dict-sql: Merging multiple UPDATEs to a single statement wasn't
    actually working.
  - Fixed building with vpopmail
Original commitRevision:438365 
Tuesday, 11 Apr 2017
00:23 adamw search for other commits by this committer
Update dovecot to 2.2.29, and bump PORTREVISION for the plugins. Add a
warning to the pkg-message that security.bsd.see_other_uids/gids should
not be enabled if dovecot is storing mail for multiple users concurrently
(PR 218392, submitted by topical).

 * passdb/userdb dict: Don't double-expand %variables in keys. If dict
   was used as the authentication passdb, using specially crafted
   %variables in the username could be used to cause DoS (CVE-2017-2669)
 * When Dovecot encounters an internal error, it logs the real error and
   usually logs another line saying what function failed. Previously the
   second log line's error message was a rather uninformative "Internal
   error occurred. Refer to server log for more information." Now the
   real error message is duplicated in this second log line.
 * lmtp: If a delivery has multiple recipients, run autoexpunging only
   for the last recipient. This avoids a problem where a long
   autoexpunge run causes LMTP client to timeout between the DATA
   replies, resulting in duplicate mail deliveries.
 * config: Don't stop the process due to idling. Otherwise the
   configuration is reloaded when the process restarts.
 * mail_log plugin: Differentiate autoexpunges from regular expunges
 * imapc: Use LOGOUT to cleanly disconnect from server.
 * lib-http: Internal status codes (>9000) are no longer visible in logs
 * director: Log vhost count changes and HOST-UP/DOWN

 + quota: Add plugin { quota_max_mail_size } setting to limit the
   maximum individual mail size that can be saved.
 + imapc: Add imapc_features=delay-login. If set, connecting to the
   remote IMAP server isn't done until it's necessary.
 + imapc: Add imapc_connection_retry_count and
   imapc_connection_retry_interval settings.
 + imap, pop3, indexer-worker: Add (deinit) to process title before
   autoexpunging runs.
 + Added %{encrypt} and %{decrypt} variables
 + imap/pop3 proxy: Log proxy state in errors as human-readable string.
 + imap/pop3-login: All forward_* extra fields returned by passdb are
   sent to the next hop when proxying using ID/XCLIENT commands. On the
   receiving side these fields are imported and sent to auth process
   where they're accessible via %{passdb:forward_*}. This is done only
   if the sending IP address matches login_trusted_networks.
 + imap-login: If imap_id_retain=yes, send the IMAP ID string to
   auth process. %{client_id} expands to it in auth process. The ID
   string is also sent to the next hop when proxying.
 + passdb imap: Use ssl_client_ca_* settings for CA validation.
 - fts-tika: Fixed crash when parsing attachment without
   Content-Disposition header. Broken by 2.2.28. (fixed in FreeBSD ports)
 - trash plugin was broken in 2.2.28 (fixed in FreeBSD ports)
 - auth: When passdb/userdb lookups were done via auth-workers, too much
   data was added to auth cache. This could have resulted in wrong
   replies when using multiple passdbs/userdbs.
 - auth: passdb { skip & mechanisms } were ignored for the first passdb
 - oauth2: Various fixes, including fixes to crashes
 - dsync: Large Sieve scripts (or other large metadata) weren't always
   synced.
 - Index rebuild (e.g. doveadm force-resync) set all mails as \Recent
 - imap-hibernate: %{userdb:*} wasn't expanded in mail_log_prefix
 - doveadm: Exit codes weren't preserved when proxying commands via
   doveadm-server. Almost all errors used exit code 75 (tempfail).
 - ACLs weren't applied to not-yet-existing autocreated mailboxes.
 - Fixed a potential crash when parsing a broken message header.
 - cassandra: Fallback consistency settings weren't working correctly.
 - doveadm director status <user>: "Initial config" was always empty
 - imapc: Various reconnection fixes.
Original commitRevision:438222 
Wednesday, 22 Mar 2017
15:15 adamw search for other commits by this committer
Add an upstream patch to fix a crash in the tika FTS plugin.

Submitted by:	ler
Obtained
from:	https://github.com/dovecot/core/commit/3751b61dfbc6c141731a740d982fc59918db2482.patch
Original commitRevision:436705 
Wednesday, 1 Mar 2017
17:55 adamw search for other commits by this committer
Add a patch from upstream that fixes a crash with the trash plugin:

Panic: file mail-namespace.c: line 709 (mail_namespace_find): assertion failed:
(ns != NULL)

Bump PORTREVISION.

PR:		217364
Submitted by:	Max Kostikov
Obtained
from:	https://github.com/dovecot/core/commit/326fb016a23480e4ff8dcc03dc80e76812859bd6.patch
Original commitRevision:435188 
Friday, 24 Feb 2017
15:24 adamw search for other commits by this committer
Update dovecot2 to 2.2.28, and bump PORTREVISION on the plugins.

  * director: "doveadm director move" to same host now refreshes user's
    timeout. This allows keeping user constantly in the same backend by
    just periodically moving the user there.
  * When new mailbox is created, use initially INBOX's
    dovecot.index.cache caching decisions.
  * Expunging mails writes GUID to dovecot.index.log now only if the
    GUID is quickly available from index/cache.
  * pop3c: Increase timeout for PASS command to 5 minutes.
  * Mail access errors are no longer ignored when searching or sorting.
    With IMAP the untagged SEARCH/SORT reply is still sent the same as
    before, but NO reply is returned instead of OK.

  + Make dovecot.list.index's filename configurable. This is needed when
    there are multiple namespaces pointing to the same mail root
    (e.g. lazy_expunge namespace for mdbox).
  + Add size.virtual to dovecot.index when folder vsizes are accessed
    (e.g. quota=count). This is mainly a workaround to avoid slow quota
    recalculation performance when message sizes get lost from
    dovecot.index.cache due to corruption or some other reason.
  + auth: Support OAUTHBEARER and XOAUTH2 mechanisms. Also support them
    in lib-dsasl for client side.
  + auth: Support filtering by SASL mechanism: passdb { mechanisms }
  + Shrink the mail processes' memory usage by not storing settings
    duplicated unnecessarily many times.
  + imap: Add imap_fetch_failure setting to control what happens when
    FETCH fails for some mails (see example-config).
  + imap: Include info about last command in disconnection log line.
  + imap: Created new SEARCH=X-MIMEPART extension. It's currently not
    advertised by default, since it's not fully implemented.
  + fts-solr: Add support for basic authentication.
  + Cassandra: Support automatically retrying failed queries if
    execution_retry_interval and execution_retry_times are set.
  + doveadm: Added "mailbox path" command.
  + mail_log plugin: If plugin { mail_log_cached_only=yes }, log the
    wanted fields only if it doesn't require opening the email.
  + mail_vsize_bg_after_count setting added (see example-config).
  + mail_sort_max_read_count setting added (see example-config).
  + pop3c: Added pop3c_features=no-pipelining setting to prevent using
    PIPELINING extension even though it's advertised.

  - Index files: day_first_uid wasn't updated correctly since v2.2.26.
    This caused dovecot.index.cache to be non-optimal.
  - imap: SEARCH/SORT may have assert-crashed in
    client_check_command_hangs
  - imap: FETCH X-MAILBOX may have assert-crashed in virtual mailboxes.
  - imap: Running time in tagged command reply was often wrongly 0.
  - search: Using NOT n:* or NOT UID n:* wasn't handled correctly
  - director: doveadm director kick was broken
  - director: Fix crash when using director_flush_socket
  - director: Fix some bugs when moving users between backends
  - imapc: Various error handling fixes and improvements
  - master: doveadm process status output had a lot of duplicates.
  - autoexpunge: If mailbox's rename timestamp is newer than mail's
    save-timestamp, use it instead. This is useful when autoexpunging
    e.g. Trash/* and an entire mailbox is deleted by renaming it under
    Trash to prevent it from being autoexpunged too early.
  - autoexpunge: Multiple processes may have been trying to expunge the
    same mails simultaneously. This was problematic especially with
    lazy_expunge plugin.
  - auth: %{passdb:*} was empty in auth-worker processes
  - auth-policy: hashed_password was always sent empty.
  - dict-sql: Merge multiple UPDATEs to a single statement if possible.
  - fts-solr: Escape {} chars when sending queries
  - fts: fts_autoindex_exclude = \Special-use caused crashes
  - doveadm-server: Fix leaks and other problems when process is reused
    for multiple requests (service_count != 1)
  - sdbox: Fix assert-crash on mailbox create race
  - lda/lmtp: deliver_log_format values weren't entirely correct if Sieve
    was used. especially %{storage_id} was broken.
  - lmtp_user_concurrency_limit didn't work if userdb changed username
Original commitRevision:434722 
Monday, 9 Jan 2017
13:16 amdmi3 search for other commits by this committer
- Remove always-true/false conditions after FreeBSD 9, 10.1, 10.2 EOL

Approved by:	portmgr blanket
Original commitRevision:430947 
Saturday, 3 Dec 2016
18:31 adamw search for other commits by this committer
Update dovecot2 to 2.2.27, and bump PORTREVISION on pigeonhole and
antispam-plugin. Also, while here, switch the MASTER_SITE to https,
because https.

The big thing in this release is the ability to read and write
encrypted messages. I'm very interested in hearing FreeBSD users'
experiences with it.

Really, Larry Rosenman did almost all the actual work here.


 * dovecot.list.index.log rotation sizes/times were changed so that
   the .log file stays smaller and .log.2 is deleted sooner.

 + Added mail_crypt plugin that allows encryption of stored emails.
   See http://wiki2.dovecot.org/Plugins/MailCrypt
 + stats: Global stats can be sent to Carbon server by setting
   stats_carbon_server=ip:port
 + imap/pop3 proxy: If passdb returns proxy_not_trusted, don't send
   ID/XCLIENT
 + Added generic hash modifier for %variables:
   %{<hash algorithm>;rounds=<n>,truncate=<bits>,salt=s>:field}
   Hash algorithm is any of the supported ones, e.g. md5, sha1, sha256.
   Also "pkcs5" is supported using SHA256. For example: %{sha256:user}
   or %{md5;truncate=32:user}.
 + Added support for SHA3-256 and SHA3-512 hashes.
 + config: Support DNS wildcards in local_name, e.g.
   local_name *.example.com { .. } matches anything.example.com, but
   not multiple.anything.example.com.
 + config: Support multiple names in local_name, e.g.
   local_name "1.example.com 2.example.com" { .. }
 - Fixed crash in auth process when auth-policy was configured and
   authentication was aborted/failed without a username set.
 - director: If two users had different tags but the same hash,
   the users may have been redirected to the wrong tag's hosts.
 - Index files may have been thought incorrectly lost, causing
   "Missing middle file seq=.." to be logged and index rebuild.
   This happened more easily with IMAP hibernation enabled.
 - Various fixes to restoring state correctly in un-hibernation.
 - dovecot.index files were commonly 4 bytes per email too large. This
   is because 3 bytes per email were being wasted that could have been
   used for IMAP keywords.
 - Various fixes to handle dovecot.list.index corruption better.
 - lib-fts: Fixed assert-crash in address tokenizer with specific input.
 - Fixed assert-crash in HTML to text parsing with specific input
   (e.g. for FTS indexing or snippet generation)
 - doveadm sync -1: Fixed handling mailbox GUID conflicts.
 - sdbox, mdbox: Perform full index rebuild if corruption is detected
   inside lib-index, which runs index fsck.
 - quota: Don't skip quota checks when moving mails between different
   quota roots.
 - search: Multiple sequence sets or UID sets in search parameters
   weren't handled correctly. They were incorrectly merged together
Original commitRevision:427636 
Sunday, 20 Nov 2016
09:38 gerald search for other commits by this committer
Bump PORTREVISIONS for ports depending on the canonical version of GCC and
lang/gcc which have moved from GCC 4.8.5 to GCC 4.9.4 (at least under some
circumstances such as versions of FreeBSD or platforms).

In particular that is ports with USE_GCC=yes, USE_GCC=any, or one of
gcc-c++11-lib, openmp, nestedfct, c++11-lib as well as c++14-lang,
c++11-lang, c++0x, c11 requested via USES=compiler.
Original commitRevision:426566 
Saturday, 19 Nov 2016
18:21 jbeich search for other commits by this committer
devel/icu: update to 58.1

Changes:	http://site.icu-project.org/download/58
PR:		214384
Exp-run by:	antoine
Approved by:	office (bapt)
Original commitRevision:426525 
Wednesday, 9 Nov 2016
21:57 adamw search for other commits by this committer
Add an upstream github commit:
https://github.com/dovecot/core/commit/b284962364068d5e9d60b8b1e98ba61b4b6593ec

lib-http: client: Fixed assert failure occurring when server eturns
error status early while client is still sending blocking payload.

PR:		214365
Submitted by:	Larry Rosenman
Original commitRevision:425810 
Friday, 28 Oct 2016
17:11 adamw search for other commits by this committer
Update to 2.2.26.0, which you can tell is higher than 2.2.26 because 0
is a larger number.

  - Fixed some compiling issues.
  - auth: Fixed assert-crash when using NTLM or SKEY mechanisms and
    multiple passdbs.
  - auth: Fixed crash when exporting to auth-worker passdb extra fields
    that had empty values.
  - dsync: Fixed assert-crash in dsync_brain_sync_mailbox_deinit
Original commitRevision:424865 
Thursday, 27 Oct 2016
23:15 adamw search for other commits by this committer
Update dovecot2 to 2.2.26, and bump PORTREVISION on pigeonhole and
antispam-plugin.

Changes for 2.2.26:
Mainly there are quite a lot of director fixes and improvements.

Here's the full list of changes:

 * master: Removed hardcoded 511 backlog limit for listen(). The kernel
   should limit this as needed.
 * doveadm import: Source user is now initialized the same as target
   user. Added -U parameter to override the source user.
 * Mailbox names are no longer limited to 16 hierarchy levels. We'll
   check another way to make sure mailbox names can't grow larger than
   4096 bytes.

 + Added a concept of "alternative usernames" by returning user_* extra
   field(s) in passdb. doveadm proxy list shows these alt usernames in
   "doveadm proxy list" output. "doveadm director&proxy kick" adds
   -f <passdb field> parameter. The alt usernames don't have to be
   unique, so this allows creation of user groups and kicking them in
   one command.
 + auth: passdb/userdb dict allows now %variables in key settings.
 + auth: If passdb returns noauthenticate=yes extra field, assume that
   it only set extra fields and authentication wasn't actually performed.
 + auth: passdb static now supports password={scheme} prefix.
 + auth, login_log_format_elements: Added %{local_name} variable, which
   expands to TLS SNI hostname if given.
 + imapc: Added imapc_max_line_length to limit maximum memory usage.
 + imap, pop3: Added rawlog_dir setting to store IMAP/POP3 traffic logs.
   This replaces at least partially the rawlog plugin.
 + dsync: Added dsync_features=empty-header-workaround setting. This
   makes incremental dsyncs work better for servers that randomly return
   empty headers for mails. When an empty header is seen for an existing
   mail, dsync assumes that it matches the local mail.
 + doveadm sync/backup: Added -I <max size> parameter to skip too
   large mails.
 + doveadm sync/backup: Fixed -t parameter and added -e for "end date".
 + doveadm mailbox metadata: Added -s parameter to allow accessing
   server metadata by using empty mailbox name.
 + Added "doveadm service status" and "doveadm process status" commands.
 + director: Added director_flush_socket. See
   http://wiki2.dovecot.org/Director#Flush_socket
 + doveadm director flush: Users are now moved only max 100 at a time to
   avoid load spikes. --max-parallel parameter overrides this.
 + Added FILE_LOCK_SLOW_WARNING_MSECS environment, which logs a warning
   if any lock is waited on or kept for this many milliseconds.

 - master process's listener socket was leaked to all child processes.
   This might have allowed untrusted processes to capture and prevent
   "doveadm service stop" comands from working.
 - login proxy: Fixed crash when outgoing SSL connections were hanging.
 - auth: userdb fields weren't passed to auth-workers, so %{userdb:*}
   from previous userdbs didn't work there.
 - auth: Each userdb lookup from cache reset its TTL.
 - auth: Fixed auth_bind=yes + sasl_bind=yes to work together
 - auth: Blocking userdb lookups reset extra fields set by previous
   userdbs.
 - auth: Cache keys didn't include %{passdb:*} and %{userdb:*}
 - auth-policy: Fixed crash due to using already-freed memory if policy
   lookup takes longer than auth request exists.
 - lib-auth: Unescape passdb/userdb extra fields. Mainly affected
   returning extra fields with LFs or TABs.
 - lmtp_user_concurrency_limit>0 setting was logging unnecessary
   anvil errors.
 - lmtp_user_concurrency_limit is now checked before quota check with
   lmtp_rcpt_check_quota=yes to avoid unnecessary quota work.
 - lmtp: %{userdb:*} variables didn't work in mail_log_prefix
 - autoexpunge settings for mailboxes with wildcards didn't work when
   namespace prefix was non-empty.
 - Fixed writing >2GB to iostream-temp files (used by fs-compress,
   fs-metawrap, doveadm-http)
 - director: Ignore duplicates in director_servers setting.
 - director: Many fixes related to connection handshaking, user moving
   and error handling.
 - director: Don't break with shutdown_clients=no
 - zlib, IMAP BINARY: Fixed internal caching when accessing multiple
   newly created mails. They all had UID=0 and the next mail could have
   wrongly used the previously cached mail.
 - doveadm stats reset wasn't reseting all the stats.
 - auth_stats=yes: Don't update num_logins, since it doubles them when
   using with mail stats.
 - quota count: Fixed deadlocks when updating vsize header.
 - dict-quota: Fixed crashes happening due to memory corruption.
 - dict proxy: Fixed various timeout-related bugs.
 - doveadm proxying: Fixed -A and -u wildcard handling.
 - doveadm proxying: Fixed hangs and bugs related to printing.
 - imap: Fixed wrongly triggering assert-crash in
   client_check_command_hangs.
 - imap proxy: Don't send ID command pipelined with nopipelining=yes
 - imap-hibernate: Don't execute quota_over_script or last_login after
   un-hibernation.
 - imap-hibernate: Don't un-hibernate if client sends DONE+IDLE in one
   IP packet.
 - imap-hibernate: Fixed various failures when un-hibernating.
 - fts: fts_autoindex=yes was broken in 2.2.25 unless
   fts_autoindex_exclude settings existed.
 - fts-solr: Fixed searching multiple mailboxes (patch by x16a0)
 - doveadm fetch body.snippet wasn't working in 2.2.25. Also fixed a
   crash with certain emails.
 - pop3-migration + dbox: Various fixes related to POP3 UIDL
   optimization in 2.2.25.
 - pop3-migration: Fixed "truncated email header" workaround.
Original commitRevision:424796 
Tuesday, 11 Oct 2016
21:59 adamw search for other commits by this committer
- When DOCS is enabled but EXAMPLES is not, two files that are supposed to
  be examples are bundled into DOCSDIR. Fix this by installing them into
  EXAMPLESDIR regardless of the EXAMPLES knob and trust pkg to DTRT
- Make vpopmail depend on vpopmail-the-package, instead of
  vchkpw-the-silly-looking-path-under-LOCALBASE
- Turn the curl dependency in the SOLR knob to a LIB_DEPENDS instead of a
  BUILD_DEPENDS, so that curl is available at runtime as well
- Categorize the OPTIONS helpers under the same categories they're listed
  under in the OPTIONS dialogue, to aid with organization

PORTREVISION bump for the potential plist and dependency changes.
Original commitRevision:423802 
Saturday, 24 Sep 2016
11:06 tijl search for other commits by this committer
- Update devel/icu to 57.1.
- Clean up the Makefile.
- Follow some upstream recommendations (--with-data-packaging=archive,
  --disable-renaming, -DICU_NO_USER_DATA_OVERRIDE).
- Patch makefiles to install static libraries with INSTALL_DATA so they
  aren't stripped.
- Patch config/mh-bsd-gcc to sync with config/mh-linux-gcc.
- Fix endianness detection in ICU.  The code wanted to use BYTE_ORDER
  defined in machine/endian.h, but this isn't visible because ICU is
  compiled with _XOPEN_SOURCE.  Patch the code to use _BYTE_ORDER instead.
- Compile ICU with C++11 compiler to enable move constructors.
- Patch ICU to fix a problem with atomics in the case of a C++11 compiler
  without C++11 header <atomic> (like Clang on FreeBSD 9).
- Bump all ports that depend on it due to library version change.
- Add USES=compiler:c++0x to some ports that pick up -std=c++0x from ICU
  pkgconfig files.
- Add USES=compiler:c++11-lib to graphics/libcdr01 because it also needs
  a C++11 runtime library now.  Add this to all ports that depend on it
  so their executables load the right libstdc++.so on FreeBSD 9.

PR:		205120
Exp-run by:	antoine
Approved by:	portmgr (antoine)
Original commitRevision:422711 
Sunday, 18 Sep 2016
16:46 ohauer search for other commits by this committer
- bump PORTREVISION

PR:		212788
Original commitRevision:422399 
Wednesday, 20 Jul 2016
17:07 adamw search for other commits by this committer
Remove the SSL option and make it mandatory.

I received a report that the build is broken on 9.x with SSL disabled.
I think the right solution here is just to remove the SSL option entirely.
I really can't think of a use-case where IMAP/POP/LMTP without TLS
capability is a good idea. Plus, NetBSD and OpenBSD both have SSL
mandatory.

PORTREVISION bump is necessary here, because it was possible to have
no SSL on 10.x with a successful build.

Discussed with:	Larry Rosenman, maintainer of dovecot2-pigeonhole
Original commitRevision:418843 
Wednesday, 13 Jul 2016
19:53 adamw search for other commits by this committer
Simplify gssapi settings
Original commitRevision:418502 
19:08 adamw search for other commits by this committer
Fix typo in LDFLAGS
Original commitRevision:418498 
Saturday, 9 Jul 2016
15:47 adamw search for other commits by this committer
Fix packaging with SSL disabled. No PORTREVISION bump.

While here, left-indent a comment so that 9.x doesn't log it to
the console, and only set USES=ssl if SSL is enabled.

Submitted by:	Christian Bernard
Original commitRevision:418284 
Wednesday, 6 Jul 2016
22:10 mat search for other commits by this committer
Bump PORTREVISION for the icu revert.

This time not bumping lang/php70, but devel/php70-intl which is the one
really depending on icu.

PR:		205120
With hat:	portmgr
Sponsored by:	Absolight
Original commitRevision:418153 
07:34 gahr search for other commits by this committer
devel/icu: bump PORTREVISION on dependent ports
Original commitRevision:418119 
Tuesday, 5 Jul 2016
19:31 adamw search for other commits by this committer
Fix build on 9.x.

Adds compiler:c11 for this error:
sha1.h:80: error: static or type qualifiers in abstract declarator

dovecot no longer builds againt the old OpenSSL in 9.x base, so
require ssl from ports there.

Despite the dependency change (only for 9.x), I'm not bumping
PORTREVISION because build couldn't complete on 9.x regardless.
Original commitRevision:418106 
17:06 adamw search for other commits by this committer
Update dovecot2 to 2.2.25 again, this time with a patch from upstream to
fix the kqueue crash. Bump PORTREVISION on pigeonhole and antispam-plugin
again.

Extra thanks to Larry Rosenman for being on top of the fix.

Obtained
from:	https://github.com/dovecot/core/commit/ffd8dc932516bc55bf01d91355540daab365e5e9
Original commitRevision:418095 
Friday, 1 Jul 2016
16:16 adamw search for other commits by this committer
Back out the 2.2.25 update before anybody builds it. I'm getting errors
on production with it:

Jul  1 10:10:34 IMAP-jail dovecot: master: Panic: kevent(EV_ADD, READ, 45)
failed: Bad file descriptor
Original commitRevision:417892 
15:55 adamw search for other commits by this committer
Update dovecot2 to 2.2.25, and bump PORTREVISION on pigeonhole and
antispam-plugin.

  * lmtp: Start tracking lmtp_user_concurrency_limit and reject already
    at RCPT TO stage. This avoids MTA unnecessarily completing DATA only
    to get an error.
  * doveadm: Previously only mail settings were read from protocol
    doveadm { .. } section. Now all settings are.

  + quota: Added quota_over_flag_lazy_check setting. It avoids checking
    quota_over_flag always at startup. Instead it's checked only when
    quota is being read for some other purpose.
  + auth: Added a new auth policy service:
    http://wiki2.dovecot.org/Authentication/Policy
  + auth: Added PBKDF2 password scheme
  + auth: Added %{auth_user}, %{auth_username} and %{auth_domain}
  + auth: Added ":remove" suffix to extra field names to remove them.
  + auth: Added "delay_until=<timestamp>[+<max random secs>]" passdb
    extra field. The auth will wait until <timestamp> and optionally some
    randomness and then return success.
  + dict proxy: Added idle_msecs=<n> parameter. Support async operations.
  + Performance improvements for handling large mailboxes.
  + Added lib-dcrypt API for providing cryptographic functions.
  + Added "doveadm mailbox update" command
  + imap commands' output now includes timing spent on the "syncing"
    stage if it's larger than 0.
  + cassandra: Added metrics=<path> to connect setting to output internal
    statistics in JSON format every second to <path>.
  + doveadm mailbox delete: Added -e parameter to delete only empty
    mailboxes. Added --unsafe option to quickly delete a mailbox,
    bypassing lazy_expunge and quota plugins.
  + doveadm user & auth cache flush are now available via doveadm-server.
  + doveadm service stop <services> will stop specified services while
    leaving the rest of Dovecot running.
  + quota optimization: Avoid reading mail sizes for backends which
    don't need them (count, fs, dirsize)
  + Added mailbox { autoexpunge_max_mails=<n> } setting.
  + Added welcome plugin: http://wiki2.dovecot.org/Plugins/Welcome
  + fts: Added fts_autoindex_exclude setting.
  - v2.2.24's MIME parser was assert-crashing on mails having truncated
    MIME headers.
  - auth: With multiple userdbs the final success/failure result wasn't
    always correct. The last userdb's result was always used.
  - doveadm backup was sometimes deleting entire mailboxes unnecessarily.
  - doveadm: Command -parameters weren't being sent to doveadm-server.
  - If dovecot.index read failed e.g. because mmap() reached VSZ limit,
    an empty index could have been opened instead, corrupting the
    mailbox state.
  - imapc: Fixed EXPUNGE handling when imapc_features didn't have modseq.
  - lazy-expunge: Fixed a crash when copying failed. Various other fixes.
  - fts-lucene: Fixed crash on index rescan.
  - auth_stats=yes produced broken output
  - dict-ldap: Various fixes
  - dict-sql: NULL values crashed. Now they're treated as "not found".
Original commitRevision:417891 
Wednesday, 27 Apr 2016
16:08 adamw search for other commits by this committer
Switch to USES=mysql
Original commitRevision:414114 
Tuesday, 26 Apr 2016
16:03 adamw search for other commits by this committer
Update dovecot2 to 2.2.24, and bump PORTREVISION on antispam-plugin and
pigeonhole.

* doveconf now warns if it sees a global setting being changed when
  the same setting was already set inside some filters. (A common
  mistake has been adding more plugins to a global mail_plugins
  setting after it was already set inside protocol { .. }, which
  caused the global setting to be ignored for that protocol.)
* LMTP proxy: Increased default timeout 30s -> 125s. This makes it
  less likely to reach the timeout and cause duplicate deliveries.
* LMTP and indexer now append ":suffix" to session IDs to make it
  unique for the specific user's delivery. (Fixes duplicate session
  ID warnings in stats process.)

+ Added dict-ldap for performing read-only LDAP dict lookups.
+ lazy-expunge: All mails can be saved to a single specified mailbox.
+ mailbox { autoexpunge } supports now wildcards in mailbox names.
+ doveadm HTTP API: Added support for proxy commands
+ imapc: Reconnect when getting disconnected in non-selected state.
+ imapc: Added imapc_features=modseq to access MODSEQs/HIGHESTMODSEQ.
  This is especially useful for incremental dsync.
+ doveadm auth/user: Auth lookup performs debug logging if
  -o auth_debug=yes is given to doveadm.
+ Added passdb/userdb { auth_verbose=yes|no } setting.
+ Cassandra: Added user, password, num_threads, connect_timeout and
  request_timeout settings.
+ doveadm user -e <value>: Print <value> with %variables expanded.
- Huge header lines could have caused Dovecot to use too much memory
  (depending on config and used IMAP commands). (Typically this would
  result in only the single user's process dying with out of memory
  due to reaching service { vsz_limit } - not a global DoS).
- dsync: Detect and handle invalid/stale -s state string better.
- dsync: Fixed crash caused by specific mailbox renames
- auth: Auth cache is now disabled passwd-file. It was unnecessary and
  it broke %variables in extra fields.
- fts-tika: Don't crash if it returns 500 error
- dict-redis: Fixed timeout handling
- SEARCH INTHREAD was crashing
- stats: Only a single fifo_listeners was supported, making it
  impossible to use both auth_stats=yes and mail stats plugin.
- SSL errors were logged in separate "Stacked error" log lines
  instead of as part of the disconnection reason.
- MIME body parser didn't handle properly when a child MIME part's
  --boundary had the same prefix as the parent.
Original commitRevision:414060 
Monday, 25 Apr 2016
16:13 mat search for other commits by this committer
Remove USE_SQLITE from bsd.databases.mk, replaced by USES=sqlite.

While there replace USE_SQLITE=x by USES=sqlite:x.

PR:		208971
Submitted by:	mat
Exp-run by:	antoine
With hat:	portmgr
Sponsored by:	Absolight
Differential Revision:	https://reviews.freebsd.org/D5951
Original commitRevision:414014 
Saturday, 2 Apr 2016
16:59 adamw search for other commits by this committer
Update dovecot2 to 2.2.23, and bump PORTREVISION on dovecot2-pigeonhole
and dovecot2-antispam-plugin.

From the 2.2.23 release notes:

This is a bugfix-only release with various important fixes on top of v2.2.22.

 - Various fixes to doveadm. Especially running commands via
   doveadm-server was broken.
 - director: Fixed user weakness getting stuck in some situations
 - director: Fixed a situation where directors keep re-sending
   different states to each others and never becoming synced.
 - director: Fixed assert-crash related to a slow "user killed" reply
 - Fixed assert-crash related to istream-concat, which could have
   been triggered at least by a Sieve script.
Original commitRevision:412423 
Friday, 1 Apr 2016
14:16 mat search for other commits by this committer
Remove ${PORTSDIR}/ from dependencies, categories m, n, o, and p.

With hat:	portmgr
Sponsored by:	Absolight
Original commitRevision:412348 
Wednesday, 16 Mar 2016
17:29 adamw search for other commits by this committer
Update mail/dovecot2 to 2.2.22, and bump PORTREVISION on dovecot2-pigeonhole
and dovecot2-antispam-plugin.

Changes for 2.2.22:
 + Added doveadm HTTP API: See
   http://wiki2.dovecot.org/Design/DoveadmProtocol/HTTP
 + virtual plugin: Mailbox filtering can now be done based on the
   mailbox metadata. See http://wiki2.dovecot.org/Plugins/Virtual
 + stats: Added doveadm stats reset to reset global stats.
 + stats: Added authentication statistics if auth_stats=yes.
 + dsync, imapc, pop3c & pop3-migration: Many optimizations,
   improvements and error handling fixes.
 + doveadm: Most commands now stop soon after SIGINT/SIGTERM.
 - auth: Auth caching was done too aggressively when %variables were
   used in default_fields, override_fields or LDAP pass/user_attrs.
   userdb result_* were also ignored when user was found from cache.
 - imap: Fixed various assert-crashes caused v2.2.20+. Some of them
   caught actual hangs or otherwise unwanted behavior towards IMAP
   clients.
 - Expunges were forgotten in some situations, for example when
   pipelining multiple IMAP MOVE commands.
 - quota: Per-namespaces quota were broken for dict and count backends
   in v2.2.20+
 - fts-solr: Search queries were using OR instead of AND as the
   separator for multi-token search queries in v2.2.20+.
 - Single instance storage support wasn't really working in v2.2.16+
 - dbox: POP3 message ordering wasn't working correctly.
 - virtual plugin: Fixed crashes related to backend mailbox deletions.
Original commitRevision:411242 
Tuesday, 5 Jan 2016
20:59 adamw search for other commits by this committer
Execute run_rc_command even if the config file doesn't exist. Previously,
until you followed the instructions in pkg-message, the config file didn't
exist and rc.d/dovecot would just silently exit.

While here, also spit out a message reminding you to create the config
files if necessary.

PR:		205761
Submitted by:	me@cschwarz.com
Original commitRevision:405316 
Saturday, 12 Dec 2015
16:47 adamw search for other commits by this committer
Update dovecot2 to 2.2.21, and bump PORTREVISION in consumers.

While here, fix up some paths in the decode2text plugin, and add a note
to pkg-message about how to make it work. [1]

Changes:
 - doveadm mailbox list (and some others) were broken in v2.2.20
 - director: Fixed making backend changes when running with only a
   single director server.
 - virtual plugin: Fixed crash when trying to open nonexistent
   autocreated backend mailbox.

PR:		205231 [1]
Submitted by:	andrej@ebert.su
Original commitRevision:403608 
Wednesday, 9 Dec 2015
15:39 adamw search for other commits by this committer
Update dovecot2 to 2.2.20, and bump PORTREVISION on antispam-plugin and
pigeonhole.

Also, remove the GC option from dovecot2. As reported in bug #205035,
reported by sebastian@wolfgarten.com, all it does it cause leaks and
spam the logs about it.

Changes:
 + Added mailbox { autoexpunge=<time> } setting. See
   http://wiki2.dovecot.org/MailboxSettings for details.
 + ssl_options: Added support for no_ticket
 + imap/pop3/managesieve-login: Added postlogin_socket=path passdb extra
   field. This allows replacing the default service
   imap/pop3/managesieve {} settings for specific users (e.g. running
   their imap process via valgrind or strace).
 + doveadm fetch: Added date.sent/received/saved.unixtime
 + fs-posix: Added mode=auto parameter to set the created files' and
   directories' mode based on the parent dir if it has setgid-bit.
 + director: Support backends having hostnames, which makes it possible
   to verify their SSL certificates.
 - director: Directors' state became desynchronized if doveadm director
   commands were used to modify the same backend in multiple directors
   at the same time with conflicting changes. This fix includes some
   extra checks, which makes sure that if such a conflict still happens
   it's automatically fixed. In some situations such an automatic fix
   may now be unnecessarily triggered and an error logged.
 - director: Backend tags weren't working correctly.
 - ldap: tls_* settings weren't used for ldaps URIs.
 - ldap, mysql: Fixed setting connect timeout.
 - auth: userdb lookups via auth-worker couldn't change username
 - dsync: Fixed handling deleted directories. Make sure we don't go to
   infinite mailbox renaming loop.
 - imap: Fixed crash in NOTIFY when there were watched namespaces that
   didn't support NOTIFY.
 - imap: After SETMETADATA was used, various commands (especially FETCH)
   could have started hanging when their output was large.
 - stats: Idle sessions weren't refreshed often enough, causing stats
   process to forget them and log errors about unknown sessions when
   they were updated later.
 - stats: Fixed "Duplicate session ID" errors when LMTP delivered to
   multiple recipients and fts_autoindex=yes.
 - zlib plugin: Fixed copying causing cache corruption when zlib_save
   wasn't set, but the source message was compressed.
 - fts-solr: Fixed escaping Solr query parameters.
 - lmtp: quota_full_tempfail=yes was ignored with
   lmtp_rcpt_check_quota=yes
Original commitRevision:403426 
Friday, 2 Oct 2015
22:44 adamw search for other commits by this committer
Update dovecot2 to 2.2.19, and bump PORTREVISION on antispam-plugin
and pigeonhole.

Changes:

* pop3_deleted_flag has been broken since v2.2.10. Using it would
  cause buffer overflows, which could be exploitable. However, this
  bug would have become visible quite soon after users had deleted
  some POP3 mails, because the pop3 processes would have started
  crashing all the time even in normal use.
* "doveadm director flush" command has a changed meaning now:
  It safely moves users to their wanted backends, instead of simply
  forgetting the mapping entirely and leaving the existing connections
  untouched. Use -F parameter to get the original unsafe behavior.

+ Added imap-hibernate processes (see imap_hibernate_timeout setting).
  IDLEing IMAP connections can be hibernated, which saves memory.
+ Optimized tracking mailboxes' vsizes (= sum of all messages' sizes).
  If mailbox_list_index=yes, it's also stored in there. This makes it
  very efficient to look up vsizes for all mailboxes.
+ Added a quota "count" backend, which uses the mailbox vsizes to get
  the current quota usage. It requires using the new quota_vsizes=yes
  setting, which tracks the messages' "virtual sizes" rather than
  "physical sizes". Their distiction is minor and mostly irrelevant
  nowadays (if mail sizes should be counted with LF or CRLF newlines).
+ "doveadm director up/down" commands added. The monitoring script
  should be using these commands instead of changing the vhost count.
  This allows admin to manually disable a server by changing the vhost
  count to 0 without the monitoring script changing it back.
+ Added support for HAProxy protocol: http://wiki2.dovecot.org/HAProxy
+ Added push-notification plugin framework, which can be used to
  easily implement push notifications to various backends. Implemented
  "ox" backend for notifying Open-Xchange via HTTP/json.
+ imap_logout_format supports more variables now, e.g. number of
  deleted messages.
+ pop3: Added pop3_delete_type setting (related to pop3_deleted_flag).
+ plugin { fts_enforced=yes } setting now fails body searches unless
  it can be done via the full text search engine.
+ Added %{passdb:*} and %{userdb:*} variables to various places
+ auth: Added ":protected" suffix for passdb and userdb fields. If
  used, the field doesn't overwrite an existing field.
+ IMAP/POP3 proxy: If a backend server dies, avoid client reconnection
  spikes by slowly disconnecting clients over time. This is enabled by
  setting login_proxy_max_disconnect_delay=secs passdb extra field.
+ imap: Added new read-only METADATA entries: /private/specialuse,
  /shared/comment, /shared/admin
+ imap: If client disconnects in the middle of a command, log how long
  the command had been running.
- mdbox: Rebuilding could have caused message's reference count to
  overflow the 16bit number in some situations, causing problems when
  trying to expunge the duplicates.
- Various search fixes (fts, solr, tika, lib-charset, indexer)
- Various virtual plugin fixes
- Various fixes and optimizations to dsync, imapc and pop3-migration
- imap: Various RFC compliancy and crash fixes to NOTIFY
Original commitRevision:398453 
Friday, 28 Aug 2015
16:27 adamw search for other commits by this committer
Use new _VARS option helpers. Still can't remove bsd.port.options.mk inclusion
though.
Original commitRevision:395509 
Friday, 15 May 2015
15:02 adamw search for other commits by this committer
Update dovecot2 to 2.2.18. This is a bugfix release to address issues
identified in 2.2.17.

Changes:
- director: Login UNIX sockets were normally detected as doveadm or
  director ring sockets, causing it to break in existing installations.
- sdbox: When copying a mail in alt storage, place the destination to
  alt storage as well.

Bump PORTREVISION on antispam-plugin and pigeonhole, like I should have
done last time.
Original commitRevision:386411 
10:41 bapt search for other commits by this committer
Move the big warning on top of the Makefile so maybe next time the bump of
portrevision of plugins won't be missed
Original commitRevision:386396 
Wednesday, 13 May 2015
22:00 adamw search for other commits by this committer
Update to 2.2.17.

For a full change list, see:
http://dovecot.org/list/dovecot-news/2015-May/000292.html

There are two changes that could potentially break setups:
* Dovecot no longer checks or warns if a mountpoint is removed. This
  was causing more trouble than it was worth. Make sure that all the
  mountpoints that Dovecot accesses aren't writable by mail processes
  when they're unmounted.
* dict server wasn't properly escaping/unescaping data. Fixing this
  broke backwards compatibility with data that contains line feeds.
  This hopefully affects only very few installations. If you're using
  dict to save multiline data (Sieve scripts to SQL), you may be
  affected.

For this release I've introduced many new OPTIONS:
* boehm-gc support
* CDB database support
* icu (for FTS)
* libtextcat FTS
* disabling kqueue support also disables kqueue fs change notification
* databases and FTS plugins moved to their own config sections
Original commitRevision:386271 
Tuesday, 24 Mar 2015
20:56 adamw search for other commits by this committer
Fix installation when DOCS is disabled.
Original commitRevision:382170 
17:38 adamw search for other commits by this committer
Move the sample configuration files into ETCDIR.

After talking more with Rozhuk Ivan (submitter of 198792, see r381930),
the sample configuration files don't belong in DOCSDIR, and they really
don't belong underneath an OPTION that many people have disabled by
default.

I still don't think that they're good candidates for @sample, but they
make more sense living in ETCDIR.

While here, shuffle around a few other docs/examples files.

PORTREVISION bump for the plist changes.

PR:		198792
Submitted by:	Rozhuk Ivan
Original commitRevision:382128 
Friday, 13 Mar 2015
14:59 adamw search for other commits by this committer
Fix build on FreeBSD < 10. Thanks to oliver@ for sending me the fix.
Original commitRevision:381214 
Thursday, 12 Mar 2015
18:21 adamw search for other commits by this committer
Update to 2.2.16.

List of changes is at
http://dovecot.org/list/dovecot-news/2015-March/000283.html
Original commitRevision:381124 
Monday, 2 Feb 2015
17:16 adamw search for other commits by this committer
rc.d/dovecot allows for multiple concurrent dovecot setups, but in doing
so runs the dovecot binary against each provided configuration file to
obtain configuration data. When the configuration file doesn't exist, it
says:
	doveconf: Fatal: open(/im_not_here) failed: No such file or directory

Mistyping the conf file locations when doing multiple instances deserves
an error message. The real issue here is that in order to set up
dovecot, you have to actually copy files over from ${EXAMPLESDIR}. The
default configuration file intentionally does not exist in a clean
installation. So everybody who installs the dovecot2 port and does not
configure it will receive that message at every boot.

Fix it with a patch from pi that makes sure the conf file exists before
trying to do stuff with it.

PORTREVISION bump.

PR:		197275
Submitted by:	pi
Original commitRevision:378311 
Friday, 12 Dec 2014
15:21 adamw search for other commits by this committer
Dovecot reloads its configuration on HUP signal [1], so, add the reload command
to its rc.d script.

[1] http://wiki2.dovecot.org/RunningDovecot#Reloading_Configuration

PR:		195915
Submitted by:	quickfox@abv.bg
Original commitRevision:374595 
Saturday, 22 Nov 2014
19:13 crees search for other commits by this committer
Switch to USES=pgsql
Original commitRevision:373091 
Thursday, 20 Nov 2014
03:33 adamw search for other commits by this committer
Allow the port to build on arm.

I don't think this requires a PORTREVISION bump, but someone will
correct me if I'm wrong.

PR:		195168
Submitted by:	Ronald Klop
Original commitRevision:372831 
Monday, 27 Oct 2014
15:45 adamw search for other commits by this committer
Remove the checkyesno dovecot_enable section, as it prevents onestart/onestop
from working (as well as other things).

I suspect this behaviour is present in other rc-files... a general cleanup on
this might be in order.

PR:		194629
Submitted by:	Reinier Schoof
Original commitRevision:371588 
Sunday, 26 Oct 2014
00:15 adamw search for other commits by this committer
Update dovecot2 to 2.2.15, and add an LZ4 option that uses liblz4.

ChangeLog:

Some small fixes and changes to v2.2.14. This release is mainly in the hope
that it could still make it into the next Debian stable instead of v2.2.14 -
mainly because of a couple of new assert crashes that started happening in
v2.2.14 and should be fixed now.

	* Plugins can now print a banner comment in doveconf output
	  (typically the plugin version)
	* Replication plugin now triggers low (instead of high) priority for
	  mail copying operations.
	* IMAP/POP3/ManageSieve proxy: If destination server can't be
	  connected to, retry connecting once per second up to the value of
	  proxy_timeout. This allows quick restarts/upgrades on the backend
	  server without returning login failures.
	* Internal passdb lookups (e.g. done by lmtp/doveadm proxy) wasn't
	  returning failure in some situations where it should have (e.g.
	  allow_nets mismatch)
	* LMTP uses mail_log_prefix now for logging mail deliveries instead of
	  a hardcoded prefix. The non-delivery log prefix is still hardcoded
	  though.

	+ passdb allow_nets=local matches lookups that don't contain an IP
	  address (internally done by Dovecot services)
	+ Various debug logging and error logging improvements
	- Various race condition fixes to LAYOUT=index
	- v2.2.14 virtual plugin crashed in some situations
Original commitRevision:371494 
Tuesday, 21 Oct 2014
21:47 adamw search for other commits by this committer
Similar to r371306, add USE_OPENSSL=yes so that WITH_OPENSSL_PORT is
honored properly.

Submitted by:	Derek Schrock
Original commitRevision:371338 
Tuesday, 14 Oct 2014
17:35 adamw search for other commits by this committer
Update dovecot2 to 2.2.14. PORTREVISION bumps for dovecot2-pigeonhole and
dovecot2-antispam-plugin.

Changes in 2.2.14:

	* lmtp: Delivered-To: header no longer contains <> around the email
	  address. Other MDAs don't have it either.
	* "Out of disk space" errors are now treated as temporary errors
	  (not the same as "Out of disk quota").
	* replication plugin: Use replication only for users who have a
	  non-empty mail_replica setting.

	+ lmtp proxy: Log a line about each mail delivery.
	+ Added login_source_ips setting. This can be used to set the source IP
	  address round-robin from a pool of IPs (in case you run out of TCP
	  ports).
	+ Rawlog settings can use tcp:<host>:<port> as the path.
	+ virtual plugin: Don't keep more than virtual_max_open_mailboxes
	  (default 64) number of backend mailboxes open.
	+ SSL/TLS compression can be disabled with ssl_options=no_compression
	+ acl: Global ACL file now supports "quotes" around patterns.
	+ Added last-login plugin to set user's last-login timestamp on login.
	+ LDAP auth: Allow passdb credentials lookup also with auth_bind=yes
	- IMAP: MODSEQ was sent in FETCH reply even if CONDSTORE/QRESYNC wasn't
	  enabled. This broke at least old Outlooks.
	- passdb static treated missing password field the same as an empty
	  password field.
	- mdbox: Fixed potential infinite looping when scanning a broken
	  mdbox file.
	- imap-login, pop3-login: Fixed potential crashes when client
	  disconnected unexpectedly.
	- imap proxy: The connection was hanging in some usage patterns. This
	  mainly affected older Outlooks.
	- lmtp proxy: The proxy sometimes delivered empty mails in error
	  situations or potentially delivered truncated mails.
	- fts-lucene: If whitespace_chars was set, we may have ended up
	  indexing some garbage words, growing the index size unnecessarily.
	- -c and -i parameters for dovecot/doveadm commands were ignored if
	  the config socket was readable.
	- quota: Quota recalculation didn't include INBOX in some setups.
	- Mail headers were sometimes added to dovecot.index.cache in wrong
	  order. The main problem this caused was with dsync+imapc incremental
	  syncing when the second sync thought the local mailbox had changed.
	- doveadm backup didn't notice if emails were missing from the middle
	  of the destination mailbox. Now it deletes and resyncs the mailbox.
Original commitRevision:370872 
Sunday, 10 Aug 2014
14:47 adamw search for other commits by this committer
Add CPE data to my ports.
Original commitRevision:364547 
Thursday, 24 Jul 2014
18:34 tijl search for other commits by this committer
net/openldap24-*:
- Convert to USES=libtool and bump dependent ports
- Avoid USE_AUTOTOOLS
- Don't use PTHREAD_LIBS
- Use MAKE_CMD

databases/glom:
- Drop :keepla
- Add INSTALL_TARGET=install-strip

databases/libgda4* databases/libgda5*:
- Convert to USES=libtool and bump dependent ports
- USES=tar:xz
- Use INSTALL_TARGET=install-strip
- Use @sample

databases/libgdamm:
- Drop :keepla
- USES=tar:bzip2
- Use INSTALL_TARGET=install-strip

databases/libgdamm5:
- Add INSTALL_TARGET=install-strip
- Drop --enable-static (inherited from old repocopy)

devel/anjuta x11-toolkits/py-gnome-extras:
- Drop :keepla

dns/powerdns dns/powerdns-devel:
- Convert to USES=libtool
- Add INSTALL_TARGET=install-strip
- Disable static modules
- Stop creating library symlinks with .0 suffix, not needed for dynamically
  opened modules

mail/dovecot2:
- Add USES=libtool

mail/dovecot2-pigeonhole:
- Drop CONFIGURE_TARGET (incorrect for Dragonfly)
- Add USES=libtool and INSTALL_TARGET=install-strip

math/gnumeric:
- USES=libtool tar:xz

Approved by:	portmgr (implicit, bump unstaged ports)
Original commitRevision:362835 
Saturday, 5 Jul 2014
12:19 tijl search for other commits by this committer
Bump more ports that depend on libsqlite3.so:
- ports that set USE_SQLITE with the *_USE option helper
- ports that depend on libsqlite3 indirectly as reported by pkg rquery

Approved by:	portmgr (implicit)
Original commitRevision:360738 
Tuesday, 1 Jul 2014
17:19 adamw search for other commits by this committer
Don't depend on dovecot itself to create DOCSDIR.

Noticed by:	Bill Richter <richterb@9500years.com>
Original commitRevision:360056 
16:04 adamw search for other commits by this committer
Enable support for GSSAPI from ports using USES=gssapi magic. PORTREVISION
bump for this.

PR:		ports/187721
Submitted by:	dewayne@heuristicsystems.com.au

While we're here:
- More general cleanups
- Improve COMMENT and pkg-descr
Original commitRevision:360050 
Monday, 30 Jun 2014
21:06 adamw search for other commits by this committer
General tidying and cleanups. THe functional changes:

Remove NOOP sed commands, and incorporate the pkg-deinstall message into
pkg-plist.
Use install-strip as the INSTALL_TARGET rather than manually stripping
libraries.

Technically it needs a PORTREVISION bump for the pkg-deinstall/pkg-plist thing,
but I'm going to need to bump PORTREVISION for some other changes soon and I'd
rather not force everyone to rebuild an extra time for a differently-phrased
message.
Original commitRevision:359921 
11:43 adamw search for other commits by this committer
Take this.
Original commitRevision:359830 
Sunday, 29 Jun 2014
15:57 marino search for other commits by this committer
mail/dovecot2: Reset maintainer after numerous PR timeouts
Original commitRevision:359778 
Saturday, 7 Jun 2014
17:12 olgeni search for other commits by this committer
Upgrade to version 2.2.13.

PR:		190182
Submitted by:	Larry Rosenman
Approved by:	maintainer timeout (14 days)
Original commitRevision:356929 
Tuesday, 29 Apr 2014
08:06 ohauer search for other commits by this committer
- bring back CPPFLAGS / LDFLAGS
  this is required if PGSQL is not selected
Original commitRevision:352584 
Monday, 28 Apr 2014
12:58 ohauer search for other commits by this committer
- update to 2.2.12
- cleanup Makefile, (leftovers from copy dovecot e.g PLIST_SUB+= SQL)
- use new OPTIONS syntax
- use explicit username for USERS (instead ${PORTNAME})
- fix pkg-plist (add missing files + sort)

PR:		ports/188870
Submitted by:	ohauer
Approved by:	Nagy Attila <bra@fsn.hu> (maintainer)
Original commitRevision:352493 
Saturday, 15 Mar 2014
14:31 pawel search for other commits by this committer
Fix linking on FreeBSD 10 when GSSAPI=on

PR:		ports/186745
Submitted by:	Jyrki Ahpola <jyrkia@gmail.com>
Approved by:	maintainer timeout
Original commitRevision:348327 
Friday, 31 Jan 2014
15:07 pawel search for other commits by this committer
- Update mail/dovecot2 to version 2.2.10
- Bump affected plugin ports

PR:		ports/185904
Submitted by:	maintainer
Original commitRevision:342000 
Thursday, 9 Jan 2014
15:51 mat search for other commits by this committer
Fix pkgname collisions.
Original commitRevision:339260 
Monday, 25 Nov 2013
19:03 danilo search for other commits by this committer
- Update from 2.2.6 to 2.2.9
- And, following the instructions in Makefile, bump PORTREVISION of
mail/dovecot2-antispam-plugin and mail/dovecot-pigeonhole

PR:		ports/184273
Submitted by:	Attila Nagy <bra@fsn.hu> (maintainer)
Original commitRevision:334882 
Saturday, 26 Oct 2013
12:36 wg search for other commits by this committer
mail/dovecot2: fix build without KQUEUE

- Fix build without KQUEUE

PR:		ports/182594
Submitted by:	Eero Hanninen <fax nohik.ee>
Approved by:	maintainer
Original commitRevision:331676 
Monday, 14 Oct 2013
17:49 wg search for other commits by this committer
mail/dovecot2: fix package without DOCS option

- Fix package without DOCS option

PR:		ports/182585
Original commitRevision:330339 
Thursday, 3 Oct 2013
16:39 wg search for other commits by this committer
mail/dovecot2: use PORTEXAMPLES unconditionally

- Use PORTEXAMPLES unconditionally

Reported by:	sunpoet
Original commitRevision:329209 
Tuesday, 1 Oct 2013
23:23 wg search for other commits by this committer
mail/dovecot2: update to 2.2.6

- Update to 2.2.6 [1]
- Convert lib depends to new format
- Allow staging
- Bump antispam plugin (pigenhole update comming next)

PR:		ports/182543 [1]
Submitted by:	Attila Nagy <bra fsn.hu> (maintainer) [1]
Original commitRevision:329007 
Friday, 20 Sep 2013
19:59 bapt search for other commits by this committer
Add NO_STAGE all over the place in preparation for the staging support (cat:
mail)
Original commitRevision:327742 
Tuesday, 6 Aug 2013
11:56 wg search for other commits by this committer
mail/dovecot2: update to 2.2.5

- Update to 2.2.5 [1]
- Bump antispam plugin (pigeonhole update comming soon)
- Fix SSL pkg-plist
- Fix MAN1 list

Changes: http://www.dovecot.org/doc/NEWS-2.2

PR:		ports/181081 [1]
Submitted by:	Attila Nagy <bra fsn.hu> (maintainer)
Original commitRevision:324308 
Tuesday, 25 Jun 2013
12:36 wg search for other commits by this committer
mail/dovecot2: update to 2.2.4

- Update to 2.2.4 [1]
- Bump plugins PORTREVISION
- Add LICENSE (LGPL21 MIT)

PR:		ports/179953
Submitted by:	Attila Nagy <bra@fsn.hu> [1] (maintainer)
Original commitRevision:321740 
Thursday, 23 May 2013
17:58 miwi search for other commits by this committer
- Update dovecot2 to 2.2.2
- Update dovecot2-pigeonhole to 0.4.0

PR:		178832
Submitted by:	maintainer
Original commitRevision:318892 
Thursday, 9 May 2013
17:39 delphij search for other commits by this committer
Update mail/dovecot2 to 2.1.16 and mail/dovecot2-pigeonhole to 0.34.

PR:		ports/178428
Approved by:	maintainer
Original commitRevision:317742 
Saturday, 27 Apr 2013
11:59 mva search for other commits by this committer
- Convert USE_ICONV=yes to USES=iconv
- Change USE_GNOME=pkgconfig|gnomehack to USES=pathfix|pkgconfig while here

Reviewed by:	zeising
Original commitRevision:316662 
Thursday, 14 Feb 2013
07:46 miwi search for other commits by this committer
- Update to 2.1.15
- Bump Portrevision for dovecot plugins
PR:		176102
Submitted by:	maintainer
Original commitRevision:312200 
Monday, 4 Feb 2013
10:30 rakuco search for other commits by this committer
Update dovecot2 to 2.1.14.

PR:		ports/175738
Submitted by:	Attila Nagy <bra@fsn.hu> (maintainer)
Original commitRevision:311602 
Monday, 28 Jan 2013
23:38 jkim search for other commits by this committer
Add an optional support for full-text search with CLucene 2.3.x.

PR:		ports/174779
Submitted by:	Veniamin Gvozdikov <g.veniamin@googlemail.com>
Approved by:	Attila Nagy <bra@fsn.hu> (maintainer)
Original commitRevision:311138 
Sunday, 2 Dec 2012
12:11 rm search for other commits by this committer
- update to 2.1.12
- chase update in dovecot2-pigeonhole

while here, do some changes in dovecot2-pigeonhole:
- remove indefinite article from COMMENT
- tab -> scape in pkg-descr:WWW
- remove trailing whitespace in pkg-message
- fix pkg-plist

PR:		174014
Submitted by:	Attila Nagy <bra@fsn.hu> (maintainer)
Feature safe:	yes
Original commitRevision:308099 
Wednesday, 26 Sep 2012
22:48 jase search for other commits by this committer
- Update to 2.1.10 [1]
- Convert to new format Makefile header

Changes:	http://www.dovecot.org/list/dovecot-news/2012-September/000231.html

PR:		ports/172082 [1]
Submitted by:	Attila Nagy <bra@fsn.hu> (maintainer)
Approved by:	flo, culot (mentors, implicit)
Original commitRevision:304935 
Tuesday, 4 Sep 2012
03:05 linimon search for other commits by this committer
Mark as broken on ARM.

PR:		ports/170946
Submitted by:	linimon
Hat:		portmgr
Original commitRevision:303634 
Saturday, 1 Sep 2012
18:19 tj search for other commits by this committer
Correct typo.

PR:		ports/170797
Submitted by:	Artis Caune <Artis.Caune@gmail.com>
Approved by:	Attila Nagy bra@fsn.hu (maintainer)
Approved by:	eadler (mentor)
Original commitRevision:303505 
Sunday, 5 Aug 2012
23:19 dougb search for other commits by this committer
Move the rc.d scripts of the form *.sh.in to *.in

Where necessary add $FreeBSD$ to the file

No PORTREVISION bump necessary because this is a no-op
Original commit
Wednesday, 18 Jul 2012
11:04 zeising search for other commits by this committer
Add an optional dependency on libwrap, using option LIBWRAP.

PR:		ports/169932 (minor modifications)
Submitted by:	vfx9as <vfx9as [AT] gmail.com>
Approved by:	maintainer, kwm (mentor)
Original commit
Friday, 13 Jul 2012
11:58 jase search for other commits by this committer
- Amend PORTREVISION bump reminder to include mail/dovecot2-antispam-plugin

Reported by:    Andrzej Tobola (via email)
Approved by:    Attila Nagy (maintainer), flo (mentor)
Original commit
Tuesday, 10 Jul 2012
12:57 wxs search for other commits by this committer
Remove unnecessary gssapi replacement.

Approved by:    Attila Nagy <bra@fsn.hu>
Original commit
Saturday, 7 Jul 2012
16:26 jase search for other commits by this committer
- Update to 2.1.8 [1]
- Convert to optionsNG and add DOCS,EXAMPLES options
- Minor PLIST_SUB and pkg-plist amendments

PR:             ports/169622 [1]
Submitted by:   Attila Nagy <bra@fsn.hu> (maintainer)
Approved by:    culot (mentor)
Original commit
Monday, 2 Jul 2012
19:27 zi search for other commits by this committer
- Add missing BUILD_DEPEND when WITH_SOLR is enabled

PR:             ports/168831
Submitted by:   Masaaki Nishimura <masaaki@netaid.or.jp>
Approved by:    maintainer timeout
Original commit
Thursday, 31 May 2012
21:32 delphij search for other commits by this committer
 - Update dovecot2 to 2.1.7.
 - Bump PORTREVISION for dovecot2-pigeonhole per maintainer request.

PR:             ports/168476
Approved by:    maintainer
Original commit
Sunday, 20 May 2012
13:21 zi search for other commits by this committer
- Resolve typo in SOLR support

PR:             ports/168156
Submitted by:   Jashank Jeremy <jashank@rulingia.com>
Approved by:    Attila Nagy <bra@fsn.hu> (maintainer, implicit)
Original commit

Number of commits found: 115 (showing only 100 on this page)

1 | 2  »