1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00
freebsd-ports/mail
Eygene Ryabinkin 3cf6ff930d Exim: update to 4.82
New Stuff since 4.80.1 (ftp://exim.inode.at/exim/ChangeLogs/NewStuff-4.82):

 1. New command-line option -bI:sieve will list all supported sieve extensions
    of this Exim build on standard output, one per line.
    ManageSieve (RFC 5804) providers managing scripts for use by Exim should
    query this to establish the correct list to include in the protocol's
    SIEVE capability line.

 2. If the -n option is combined with the -bP option, then the name of an
    emitted option is not output, only the value (if visible to you).
    For instance, "exim -n -bP pid_file_path" should just emit a pathname
    followed by a newline, and no other text.

 3. When built with SUPPORT_TLS and USE_GNUTLS, the SMTP transport driver now
    has a "tls_dh_min_bits" option, to set the minimum acceptable number of
    bits in the Diffie-Hellman prime offered by a server (in DH ciphersuites)
    acceptable for security.  (Option accepted but ignored if using OpenSSL).
    Defaults to 1024, the old value.  May be lowered only to 512, or raised as
    far as you like.  Raising this may hinder TLS interoperability with other
    sites and is not currently recommended.  Lowering this will permit you to
    establish a TLS session which is not as secure as you might like.

    Unless you really know what you are doing, leave it alone.

 4. If not built with DISABLE_DNSSEC, Exim now has the main option
    dns_dnssec_ok; if set to 1 then Exim will initialise the resolver library
    to send the DO flag to your recursive resolver.  If you have a recursive
    resolver, which can set the Authenticated Data (AD) flag in results, Exim
    can now detect this.  Exim does not perform validation itself, instead
    relying upon a trusted path to the resolver.

    Current status: work-in-progress; $sender_host_dnssec variable added.

 5. DSCP support for outbound connections: on a transport using the smtp driver,
    set "dscp = ef", for instance, to cause the connections to have the relevant
    DSCP (IPv4 TOS or IPv6 TCLASS) value in the header.

    Similarly for inbound connections, there is a new control modifier, dscp,
    so "warn control = dscp/ef" in the connect ACL, or after authentication.

    Supported values depend upon system libraries.  "exim -bI:dscp" to list the
    ones Exim knows of.  You can also set a raw number 0..0x3F.

 6. The -G command-line flag is no longer ignored; it is now equivalent to an
    ACL setting "control = suppress_local_fixups".  The -L command-line flag
    is now accepted and forces use of syslog, with the provided tag as the
    process name.  A few other flags used by Sendmail are now accepted and
    ignored.

 7. New cutthrough routing feature.  Requested by a "control = cutthrough_delivery"
    ACL modifier; works for single-recipient mails which are recieved on and
    deliverable via SMTP.  Using the connection made for a recipient verify,
    if requested before the verify, or a new one made for the purpose while
    the inbound connection is still active.  The bulk of the mail item is copied
    direct from the inbound socket to the outbound (as well as the spool file).
    When the source notifies the end of data, the data acceptance by the destination
    is negociated before the acceptance is sent to the source.  If the destination
    does not accept the mail item, for example due to content-scanning, the item
    is not accepted from the source and therefore there is no need to generate
    a bounce mail.  This is of benefit when providing a secondary-MX service.
    The downside is that delays are under the control of the ultimate destination
    system not your own.

    The Recieved-by: header on items delivered by cutthrough is generated
    early in reception rather than at the end; this will affect any timestamp
    included.  The log line showing delivery is recorded before that showing
    reception; it uses a new ">>" tag instead of "=>".

    To support the feature, verify-callout connections can now use ESMTP and TLS.
    The usual smtp transport options are honoured, plus a (new, default everything)
    hosts_verify_avoid_tls.

    New variable families named tls_in_cipher, tls_out_cipher etc. are introduced
    for specific access to the information for each connection.  The old names
    are present for now but deprecated.

    Not yet supported: IGNOREQUOTA, SIZE, PIPELINING.

 8. New expansion operators ${listnamed:name} to get the content of a named list
    and ${listcount:string} to count the items in a list.

 9. New global option "gnutls_allow_auto_pkcs11", defaults false.  The GnuTLS
    rewrite in 4.80 combines with GnuTLS 2.12.0 or later, to autoload PKCS11
    modules.  For some situations this is desirable, but we expect admin in
    those situations to know they want the feature.  More commonly, it means
    that GUI user modules get loaded and are broken by the setuid Exim being
    unable to access files specified in environment variables and passed
    through, thus breakage.  So we explicitly inhibit the PKCS11 initialisation
    unless this new option is set.

    Some older OS's with earlier versions of GnuTLS might not have pkcs11 ability,
    so have also added a build option which can be used to build Exim with GnuTLS
    but without trying to use any kind of PKCS11 support.  Uncomment this in the
    Local/Makefile:

    AVOID_GNUTLS_PKCS11=yes

10. The "acl = name" condition on an ACL now supports optional arguments.
    New expansion item "${acl {name}{arg}...}" and expansion condition
    "acl {{name}{arg}...}" are added.  In all cases up to nine arguments
    can be used, appearing in $acl_arg1 to $acl_arg9 for the called ACL.
    Variable $acl_narg contains the number of arguments.  If the ACL sets
    a "message =" value this becomes the result of the expansion item,
    or the value of $value for the expansion condition.  If the ACL returns
    accept the expansion condition is true; if reject, false.  A defer
    return results in a forced fail.

11. Routers and transports can now have multiple headers_add and headers_remove
    option lines.  The concatenated list is used.

12. New ACL modifier "remove_header" can remove headers before message gets
    handled by routers/transports.

13. New dnsdb lookup pseudo-type "a+".  A sequence of "a6" (if configured),
    "aaaa" and "a" lookups is done and the full set of results returned.

14. New expansion variable $headers_added with content from ACL add_header
    modifier (but not yet added to messsage).

15. New 8bitmime status logging option for received messages.  Log field "M8S".

16. New authenticated_sender logging option, adding to log field "A".

17. New expansion variables $router_name and $transport_name.  Useful
    particularly for debug_print as -bt commandline option does not
    require privilege whereas -d does.

18. If built with EXPERIMENTAL_PRDR, per-recipient data responses per a
    proposed extension to SMTP from Eric Hall.

19. The pipe transport has gained the force_command option, to allow
    decorating commands from user .forward pipe aliases with prefix
    wrappers, for instance.

20. Callout connections can now AUTH; the same controls as normal delivery
    connections apply.

21. Support for DMARC, using opendmarc libs, can be enabled. It adds new
    options: dmarc_forensic_sender, dmarc_history_file, and dmarc_tld_file.
    It adds new expansion variables $dmarc_ar_header, $dmarc_status,
    $dmarc_status_text, and $dmarc_used_domain.  It adds a new acl modifier
    dmarc_status.  It adds new control flags dmarc_disable_verify and
    dmarc_enable_forensic.

22. Add expansion variable $authenticated_fail_id, which is the username
    provided to the authentication method which failed.  It is available
    for use in subsequent ACL processing (typically quit or notquit ACLs).

23. New ACL modifer "udpsend" can construct a UDP packet to send to a given
    UDP host and port.

24. New ${hexquote:..string..} expansion operator converts non-printable
    characters in the string to \xNN form.

25. Experimental TPDA (Transport Post Delivery Action) function added.
    Patch provided by Axel Rau.

26. Experimental Redis lookup added. Patch provided by Warren Baker.

Changes since 4.80.1 (ftp://exim.inode.at/exim/ChangeLogs/ChangeLog-4.82):

PP/01 Add -bI: framework, and -bI:sieve for querying sieve capabilities.

PP/02 Make -n do something, by making it not do something.
      When combined with -bP, the name of an option is not output.

PP/03 Added tls_dh_min_bits SMTP transport driver option, only honoured
      by GnuTLS.

PP/04 First step towards DNSSEC, provide $sender_host_dnssec for
      $sender_host_name and config options to manage this, and basic check
      routines.

PP/05 DSCP support for outbound connections and control modifier for inbound.

PP/06 Cyrus SASL: set local and remote IP;port properties for driver.
      (Only plugin which currently uses this is kerberos4, which nobody should
      be using, but we should make it available and other future plugins might
      conceivably use it, even though it would break NAT; stuff *should* be
      using channel bindings instead).

PP/07 Handle "exim -L <tag>" to indicate to use syslog with tag as the process
      name; added for Sendmail compatibility; requires admin caller.
      Handle -G as equivalent to "control = suppress_local_fixups" (we used to
      just ignore it); requires trusted caller.
      Also parse but ignore: -Ac -Am -X<logfile>
      Bugzilla 1117.

TL/01 Bugzilla 1258 - Refactor MAIL FROM optional args processing.

TL/02 Add +smtp_confirmation as a default logging option.

TL/03 Bugzilla 198 - Implement remove_header ACL modifier.
      Patch by Magnus Holmgren from 2007-02-20.

TL/04 Bugzilla 1281 - Spec typo.
      Bugzilla 1283 - Spec typo.
      Bugzilla 1290 - Spec grammar fixes.

TL/05 Bugzilla 1285 - Spec omission, fix docbook errors for spec.txt creation.

TL/06 Add Experimental DMARC support using libopendmarc libraries.

TL/07 Fix an out of order global option causing a segfault.  Reported to dev
      mailing list by by Dmitry Isaikin.

JH/01 Bugzilla 1201 & 304 - New cutthrough-delivery feature, with TLS support.

JH/02 Support "G" suffix to numbers in ${if comparisons.

PP/08 Handle smtp transport tls_sni option forced-fail for OpenSSL.

NM/01 Bugzilla 1197 - Spec typo
      Bugzilla 1196 - Spec examples corrections

JH/03 Add expansion operators ${listnamed:name} and ${listcount:string}

PP/09 Add gnutls_allow_auto_pkcs11 option (was originally called
      gnutls_enable_pkcs11, but renamed to more accurately indicate its
      function.

PP/10 Let Linux makefile inherit CFLAGS/CFLAGS_DYNAMIC.
      Pulled from Debian 30_dontoverridecflags.dpatch by Andreas Metzler.

JH/04 Add expansion item ${acl {name}{arg}...}, expansion condition
      "acl {{name}{arg}...}", and optional args on acl condition
      "acl = name arg..."

JH/05 Permit multiple router/transport headers_add/remove lines.

JH/06 Add dnsdb pseudo-lookup "a+" to do an "aaaa" + "a" combination.

JH/07 Avoid using a waiting database for a single-message-only transport.
      Performance patch from Paul Fisher.  Bugzilla 1262.

JH/08 Strip leading/trailing newlines from add_header ACL modifier data.
      Bugzilla 884.

JH/09 Add $headers_added variable, with content from use of ACL modifier
      add_header (but not yet added to the message).  Bugzilla 199.

JH/10 Add 8bitmime log_selector, for 8bitmime status on the received line.
      Pulled from Bugzilla 817 by Wolfgang Breyha.

PP/11 SECURITY: protect DKIM DNS decoding from remote exploit.
      CVE-2012-5671
      (nb: this is the same fix as in Exim 4.80.1)

JH/11 Add A= logging on delivery lines, and a client_set_id option on
      authenticators.

JH/12 Add optional authenticated_sender logging to A= and a log_selector
      for control.

PP/12 Unbreak server_set_id for NTLM/SPA auth, broken by 4.80 PP/29.

PP/13 Dovecot auth: log better reason to rejectlog if Dovecot did not
      advertise SMTP AUTH mechanism to us, instead of a generic
      protocol violation error.  Also, make Exim more robust to bad
      data from the Dovecot auth socket.

TF/01 Fix ultimate retry timeouts for intermittently deliverable recipients.

      When a queue runner is handling a message, Exim first routes the
      recipient addresses, during which it prunes them based on the retry
      hints database. After that it attempts to deliver the message to
      any remaining recipients. It then updates the hints database using
      the retry rules.

      So if a recipient address works intermittently, it can get repeatedly
      deferred at routing time. The retry hints record remains fresh so the
      address never reaches the final cutoff time.

      This is a fairly common occurrence when a user is bumping up against
      their storage quota. Exim had some logic in its local delivery code
      to deal with this. However it did not apply to per-recipient defers
      in remote deliveries, e.g. over LMTP to a separate IMAP message store.

      This change adds a proper retry rule check during routing so that the
      final cutoff time is checked against the message's age. We only do
      this check if there is an address retry record and there is not a
      domain retry record; this implies that previous attempts to handle
      the address had the retry_use_local_parts option turned on. We use
      this as an approximation for the destination being like a local
      delivery, as in LMTP.

      I suspect this new check makes the old local delivery cutoff check
      redundant, but I have not verified this so I left the code in place.

TF/02 Correct gecos expansion when From: is a prefix of the username.

      Test 0254 submits a message to Exim with the header

        Resent-From: f

      When I ran the test suite under the user fanf2, Exim expanded
      the header to contain my full name, whereas it should have added
      a Resent-Sender: header. It erroneously treats any prefix of the
      username as equal to the username.

      This change corrects that bug.

GF/01 DCC debug and logging tidyup
      Error conditions log to paniclog rather than rejectlog.
      Debug lines prefixed by "DCC: " to remove any ambiguity.

TF/03 Avoid unnecessary rebuilds of lookup-related code.

PP/14 Fix OCSP reinitialisation in SNI handling for Exim/TLS as server.
      Bug spotted by Jeremy Harris; was flawed since initial commit.
      Would have resulted in OCSP responses post-SNI triggering an Exim
      NULL dereference and crash.

JH/13 Add $router_name and $transport_name variables.  Bugzilla 308.

PP/15 Define SIOCGIFCONF_GIVES_ADDR for GNU Hurd.
      Bug detection, analysis and fix by Samuel Thibault.
      Bugzilla 1331, Debian bug #698092.

SC/01 Update eximstats to watch out for senders sending 'HELO [IpAddr]'

JH/14 SMTP PRDR (http://www.eric-a-hall.com/specs/draft-hall-prdr-00.txt).
      Server implementation by Todd Lyons, client by JH.
      Only enabled when compiled with EXPERIMENTAL_PRDR.  A new
      config variable "prdr_enable" controls whether the server
      advertises the facility.  If the client requests PRDR a new
      acl_data_smtp_prdr ACL is called once for each recipient, after
      the body content is received and before the acl_smtp_data ACL.
      The client is controlled by bolth of: a hosts_try_prdr option
      on the smtp transport, and the server advertisement.
      Default client logging of deliveries and rejections involving
      PRDR are flagged with the string "PRDR".

PP/16 Fix problems caused by timeouts during quit ACLs trying to double
      fclose().  Diagnosis by Todd Lyons.

PP/17 Update configure.default to handle IPv6 localhost better.
      Patch by Alain Williams (plus minor tweaks).
      Bugzilla 880.

PP/18 OpenSSL made graceful with empty tls_verify_certificates setting.
      This is now consistent with GnuTLS, and is now documented: the
      previous undocumented portable approach to treating the option as
      unset was to force an expansion failure.  That still works, and
      an empty string is now equivalent.

PP/19 Renamed DNSSEC-enabling option to "dns_dnssec_ok", to make it
      clearer that Exim is using the DO (DNSSEC OK) EDNS0 resolver flag,
      not performing validation itself.

PP/20 Added force_command boolean option to pipe transport.
      Patch from Nick Koston, of cPanel Inc.

JH/15 AUTH support on callouts (and hence cutthrough-deliveries).
      Bugzilla 321, 823.

TF/04 Added udpsend ACL modifer and hexquote expansion operator

PP/21 Fix eximon continuous updating with timestamped log-files.
      Broken in a format-string cleanup in 4.80, missed when I repaired the
      other false fix of the same issue.
      Report and fix from Heiko Schlichting.
      Bugzilla 1363.

PP/22 Guard LDAP TLS usage against Solaris LDAP variant.
      Report from Prashanth Katuri.

PP/23 Support safari_ecdhe_ecdsa_bug for openssl_options.
      It's SecureTransport, so affects any MacOS clients which use the
      system-integrated TLS libraries, including email clients.

PP/24 Fix segfault from trying to fprintf() to a NULL stdio FILE* if
      using a MIME ACL for non-SMTP local injection.
      Report and assistance in diagnosis by Warren Baker.

TL/08 Adjust exiqgrep to be case-insensitive for sender/receiver.

JH/16 Fix comparisons for 64b.  Bugzilla 1385.

TL/09 Add expansion variable $authenticated_fail_id to keep track of
      last id that failed so it may be referenced in subsequent ACL's.

TL/10 Bugzilla 1375 - Prevent TLS rebinding in ldap. Patch provided by
      Alexander Miroch.

TL/11 Bugzilla 1382 - Option ldap_require_cert overrides start_tls
      ldap library initialization, allowing self-signed CA's to be
      used. Also properly sets require_cert option later in code by
      using NULL (global ldap config) instead of ldap handle (per
      session). Bug diagnosis and testing by alxgomz.

TL/12 Enhanced documentation in the ratelimit.pl script provided in
      the src/util/ subdirectory.

TL/13 Bug 1301 - Imported transport SQL logging patch from Axel Rau
      renamed to Transport Post Delivery Action by Jeremy Harris, as
      EXPERIMENTAL_TPDA.

TL/14 Bugzilla 1217 - Redis lookup support has been added. It is only enabled
      when Exim is compiled with EXPERIMENTAL_REDIS. A new config variable
      redis_servers = needs to be configured which will be used by the redis
      lookup.  Patch from Warren Baker, of The Packet Hub.

TL/15 Fix exiqsumm summary for corner case. Patch provided by Richard Hall.

TL/16 Bugzilla 1289 - Clarify host/ip processing when have errors looking up a
      hostname or reverse DNS when processing a host list. Used suggestions
      from multiple comments on this bug.

TL/17 Bugzilla 1057 - Multiple clamd TCP targets patch from Mark Zealey.

TL/18 Had previously added a -CONTINUE option to runtest in the test suite.
      Missed a few lines, added it to make the runtest require no keyboard
      interaction.

TL/19 Bugzilla 1402 - Test 533 fails if any part of the path to the test suite
      contains upper case chars. Make router use caseful_local_part.

TL/20 Bugzilla 1400 - Add AVOID_GNUTLS_PKCS11 build option. Allows GnuTLS
      support when GnuTLS has been built with p11-kit.

Additionally, fix Exim monitor port.

QA page: http://codelabs.ru/fbsd/ports/qa/mail/exim/4.82
PR: ports/184522 by Larry Rosenman <ler@lerctr.org>
2013-12-08 16:58:55 +00:00
..
abook Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
adcomplain Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
addresses Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
addresses-goodies Update addresses goodies to the latest release. 2013-10-08 18:19:42 +00:00
akpop3d Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
alpine Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
altermime Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
althea Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
amavis-logwatch Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
annoyance-filter - Remove contiguous blank line 2013-11-14 22:55:49 +00:00
anomy-sanitizer Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
antivirus-milter - use STAGEDIR 2013-10-06 15:14:18 +00:00
anubis - Update security/gpgme to 1.4.3 2013-10-20 19:20:15 +00:00
archivemail Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
archiveopteryx Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
archivesmtp Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
archmbox Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
ask - Return almost all of my ports back to the pool. I have no time to make any 2013-11-29 07:37:52 +00:00
asmail Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
assp Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
atmail Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
automx - svn mv www/mod_wsgi www/mod_wsgi2 [1] 2013-11-24 23:33:15 +00:00
autorespond Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
autosig Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
avenger - Update to version 0.8.4 [1] 2013-10-29 20:17:04 +00:00
balsa - Remove manual creation and removal of share/applications, as it's now in the mtree (categories starting with m) 2013-10-22 13:56:27 +00:00
batv-milter Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
bayespam Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
bbmail Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
biabam Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
biffer - Return ports to the pool 2013-10-23 20:45:10 +00:00
bmf Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
bogofilter Support staging. 2013-10-01 14:21:35 +00:00
bogofilter-sqlite Support staging. 2013-10-01 14:21:35 +00:00
bogofilter-tc Support staging. 2013-10-01 14:21:35 +00:00
bsfilter - Remove dependency on japanese/ruby-chasen 2013-10-11 01:51:25 +00:00
bsmtp Staging, general overhaul. 2013-11-03 12:32:32 +00:00
bulk_mailer Be less silent when installing things. 2013-10-22 16:06:10 +00:00
c-sig mail/c-sig: allow staging 2013-09-26 16:03:43 +00:00
c-sig-emacs21 Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
cclient Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
chk4mail Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
clamfilter Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
claws-mail The word 'very' has no place in COMMENT 2013-10-31 04:17:29 +00:00
claws-mail-address_keeper - Fix comboboxes vcalendar bug by adding upstream patches [1] 2013-10-05 11:25:29 +00:00
claws-mail-archiver - Fix comboboxes vcalendar bug by adding upstream patches [1] 2013-10-05 11:25:29 +00:00
claws-mail-att_remover - Fix comboboxes vcalendar bug by adding upstream patches [1] 2013-10-05 11:25:29 +00:00
claws-mail-attach_warner - Fix comboboxes vcalendar bug by adding upstream patches [1] 2013-10-05 11:25:29 +00:00
claws-mail-bogofilter - Fix comboboxes vcalendar bug by adding upstream patches [1] 2013-10-05 11:25:29 +00:00
claws-mail-bsfilter - Fix comboboxes vcalendar bug by adding upstream patches [1] 2013-10-05 11:25:29 +00:00
claws-mail-clamd - Fix comboboxes vcalendar bug by adding upstream patches [1] 2013-10-05 11:25:29 +00:00
claws-mail-fancy - Fix comboboxes vcalendar bug by adding upstream patches [1] 2013-10-05 11:25:29 +00:00
claws-mail-fetchinfo - Fix comboboxes vcalendar bug by adding upstream patches [1] 2013-10-05 11:25:29 +00:00
claws-mail-gdata - Fix comboboxes vcalendar bug by adding upstream patches [1] 2013-10-05 11:25:29 +00:00
claws-mail-mailmbox - Fix comboboxes vcalendar bug by adding upstream patches [1] 2013-10-05 11:25:29 +00:00
claws-mail-newmail - Fix comboboxes vcalendar bug by adding upstream patches [1] 2013-10-05 11:25:29 +00:00
claws-mail-notification - Fix comboboxes vcalendar bug by adding upstream patches [1] 2013-10-05 11:25:29 +00:00
claws-mail-pdf_viewer - Fix comboboxes vcalendar bug by adding upstream patches [1] 2013-10-05 11:25:29 +00:00
claws-mail-perl - Fix comboboxes vcalendar bug by adding upstream patches [1] 2013-10-05 11:25:29 +00:00
claws-mail-pgp - Update security/gpgme to 1.4.3 2013-10-20 19:20:15 +00:00
claws-mail-python - Fix comboboxes vcalendar bug by adding upstream patches [1] 2013-10-05 11:25:29 +00:00
claws-mail-rssyl - Fix comboboxes vcalendar bug by adding upstream patches [1] 2013-10-05 11:25:29 +00:00
claws-mail-spamassassin - Fix comboboxes vcalendar bug by adding upstream patches [1] 2013-10-05 11:25:29 +00:00
claws-mail-spamreport - Fix comboboxes vcalendar bug by adding upstream patches [1] 2013-10-05 11:25:29 +00:00
claws-mail-tnef - Fix comboboxes vcalendar bug by adding upstream patches [1] 2013-10-05 11:25:29 +00:00
claws-mail-vcalendar Fix patching 2013-10-08 18:32:05 +00:00
clawsker Add support for STAGEDIR 2013-10-05 16:52:12 +00:00
cone Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
contact-lookup-applet Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
coolmail Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
courier Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
courier-authlib-vchkpw Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
courier-imap update to 4.14 2013-10-17 07:21:30 +00:00
courier-pythonfilter Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
couriergraph Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
crm114 Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
cucipop Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
cvsmail Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
cyrus2courier Support staging. 2013-10-24 15:11:40 +00:00
cyrus2dovecot - Update maintainer email 2013-11-23 14:14:16 +00:00
cyrus-imapd2 avoid package name collisions. 2013-10-05 18:35:40 +00:00
cyrus-imapd22 avoid package name collisions. 2013-10-05 18:35:40 +00:00
cyrus-imapd23 use modern OPTIONS helper. 2013-10-14 17:21:23 +00:00
cyrus-imapd24 use modern OPTIONS helper. 2013-10-13 18:48:51 +00:00
davmail - Remove manual creation and removal of share/applications, as it's now in the mtree (categories starting with m) 2013-10-22 13:56:27 +00:00
dbmail - Pet portlint 2013-11-15 10:44:19 +00:00
dbmail22 - Support STAGEDIR 2013-11-15 10:44:06 +00:00
dcc-dccd Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
deforaos-mailer mail/deforaos-mailer: bump port revision 2013-11-04 20:34:21 +00:00
delatt Support staging. 2013-10-24 15:11:40 +00:00
dk-milter - use STAGEDIR 2013-11-16 20:11:28 +00:00
dkfilter Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
dkimproxy Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
dma Correct maintainer's email address. 2013-09-22 14:36:55 +00:00
dovecot Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
dovecot2 - Update from 2.2.6 to 2.2.9 2013-11-25 19:03:16 +00:00
dovecot2-antispam-plugin - Update from 2.2.6 to 2.2.9 2013-11-25 19:03:16 +00:00
dovecot2-pigeonhole - Update from 2.2.6 to 2.2.9 2013-11-25 19:03:16 +00:00
dovecot-antispam Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
dovecot-managesieve Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
dovecot-sieve Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
drac Mark seven unmaintained ports as jobs unsafe. 2013-10-06 21:51:02 +00:00
dracmail Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
dsbl-testers Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
dspam Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
dspam-devel Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
ecartis Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
elm Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
elm+ME Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
elmo - Update security/gpgme to 1.4.3 2013-10-20 19:20:15 +00:00
elmo-devel - Update security/gpgme to 1.4.3 2013-10-20 19:20:15 +00:00
emh Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
emh-xemacs21-mule Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
emil Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
enma Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
eps Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
epstools Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
esmtp Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
evolution - Remove manual creation and removal of share/applications, as it's now in the mtree (categories starting with m) 2013-10-22 13:56:27 +00:00
evolution-exchange Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
evolution-mapi Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
exact Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
exilog Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
exim Exim: update to 4.82 2013-12-08 16:58:55 +00:00
exim-doc-html Fix NO_STAGE attribution 2013-09-22 18:05:04 +00:00
exim-doc-info Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
exim-doc-pdf Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
exim-doc-postscript Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
exim-ldap2 Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
exim-monitor Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
exim-mysql Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
exim-postgresql Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
exim-sa-exim Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
exim-sqlite Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
exipick - Return almost all of my ports back to the pool. I have no time to make any 2013-11-29 07:37:52 +00:00
exmh2 Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
extmail Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
extman Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
ez-pine-gpg Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
ezmlm - Return ports to the pool 2013-10-23 20:45:10 +00:00
ezmlm-idx Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
ezmlm-web Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
faces Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
fdm Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
fetchmail Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
fetchyahoo Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
filtermail Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
findmaildirs - Update to 0.2 2013-10-19 02:28:07 +00:00
firemime Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
firepay Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
ftrack Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
gbuffy Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
gensig Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
getlive Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
getmail Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
gkrellmmailwatch2 Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
gld Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
gmail-notify Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
gmime2 - Support STAGEDIR 2013-11-15 10:44:29 +00:00
gmime2-sharp Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
gmime24 - Support STAGEDIR 2013-11-15 10:44:23 +00:00
gmime24-sharp Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
gmime26 - Support STAGEDIR 2013-11-15 10:44:15 +00:00
gmime26-sharp Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
gml - Convert to dos2unix.mk 2013-11-19 23:08:44 +00:00
gnarwl Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
gnome-gmail-notifier Fix run-time with glib 2.36 [1] 2013-11-23 23:04:57 +00:00
gnubiff - Remove manual creation and removal of share/applications, as it's now in the mtree (categories starting with m) 2013-10-22 13:56:27 +00:00
gnumail Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
gotmail - Return almost all of my ports back to the pool. I have no time to make any 2013-11-29 07:37:52 +00:00
grepmail Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
greyfix Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
greylite Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
gubby Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
hashcash mail/hashcash: Unbreak by moving NO_STAGE definition 2013-10-15 20:34:06 +00:00
hbiff Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
heirloom-mailx Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
horde3-dimp Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
horde3-forwards Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
horde3-imp Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
horde3-ingo Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
horde3-mimp Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
horde3-turba Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
horde3-vacation Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
horde-imp Horde package update: 2013-11-21 21:55:54 +00:00
horde-ingo Horde package update: 2013-10-29 21:46:58 +00:00
horde-turba Horde package update: 2013-10-29 21:46:58 +00:00
horde-webmail Horde package update: 2013-10-29 21:46:58 +00:00
hotwayd Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
hs-email-validate Update to libmpc version 1.0.1 which brings the following fixes: 2013-10-26 00:52:33 +00:00
hs-mime Update to libmpc version 1.0.1 which brings the following fixes: 2013-10-26 00:52:33 +00:00
hs-mime-mail Update to libmpc version 1.0.1 which brings the following fixes: 2013-10-26 00:52:33 +00:00
hs-mime-types Update to libmpc version 1.0.1 which brings the following fixes: 2013-10-26 00:52:33 +00:00
ifile Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
ilohamail Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
ilohamail-devel Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
im Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
imap-uw Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
imapfilter Don't enforce dependency on OpenSSL port, the one in the base system seems to 2013-11-22 19:40:33 +00:00
imapsync mail/imapsync: add missing run dependency 2013-11-06 16:06:07 +00:00
imaptools Support stage. 2013-09-24 22:23:45 +00:00
imaputils Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
isbg Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
isoqlog Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
isync Support staging. 2013-10-26 07:52:07 +00:00
james Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
jamlib Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
jmba Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
junkfilter Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
kbiff Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
kshowmail Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
lbdb Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
lens Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
libcmime Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
libdkim Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
libdomainkeys Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
libesmtp Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
libetpan Add support for STAGEDIR 2013-10-05 16:52:12 +00:00
libmapi Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
libpst Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
librfc822 Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
libsieve Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
libspamtest - remove hardcoding of gcc 2013-09-22 06:48:45 +00:00
libspf - add MAKE_JOBS_UNSAFE 2013-10-25 05:31:03 +00:00
libspf2 - Remove NO_STAGE as these have been tested to be safe 2013-09-25 00:54:08 +00:00
libsrs2 - Remove NO_STAGE as these have been tested to be safe 2013-09-25 00:54:08 +00:00
libsrs_alt - Remove NO_STAGE as these have been tested to be safe 2013-09-25 00:54:08 +00:00
libvmime Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
linux-thunderbird - Remove manual creation and removal of share/applications, as it's now in the mtree (categories starting with m) 2013-10-22 13:56:27 +00:00
listadmin Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
lmtp2nntp Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
lookout Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
lurker mail/lurker: fix build on head 2013-09-26 17:30:13 +00:00
mahogany Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
mail2procmailrc Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
mail2sms Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
mail-notification - Remove manual creation and removal of share/applications, as it's now in the mtree (categories starting with m) 2013-10-22 13:56:27 +00:00
mailagent Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
mailcrypt Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
maildirsync Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
maildrop - Update to 2.7.1 2013-11-29 12:00:30 +00:00
mailfmt Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
mailfront Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
mailgraph Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
mailman - Update to new upstream release 2.1.17, resetting PORTREVISION. 2013-11-25 07:56:14 +00:00
mailmgr Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
mailscanner Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
mailsync Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
mailtray Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
mailutils Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
mailx Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
mairix Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
majordomo - Add patches to allow run under perl 5.16 2013-11-24 15:03:51 +00:00
masqmail Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
mb2md Support staging 2013-10-13 18:52:54 +00:00
mbox2imap Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
mbox2mdir Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
mboxcheck-applet Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
mboxgrep Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
mboxstats Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
mbx2mbox Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
mdpop3d Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
mess822 Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
meta1 - update to 1.0.Alpha18.0 2013-12-01 14:38:33 +00:00
metamail Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
mew Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
milter-bogom Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
milter-callback Support staging. 2013-10-27 13:32:57 +00:00
milter-greylist Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
milter-greylist-devel Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
milter-manager Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
milter-regex - update to 2.0 2013-11-27 04:39:09 +00:00
milter-skem Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
mime4j Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
mime-construct Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
mimedefang Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
mini_sendmail Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
minimalist Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
missey Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
mixmaster Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
ml Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
mlmmj Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
mls Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
mmr Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
movemail Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
mpop mail/mpop: update to 1.0.28 2013-11-02 23:09:33 +00:00
mreport Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
msgconvert Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
msmtp Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
mu Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
mulberry Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
mutt - Fix build for recent FreeBSD 10.0 2013-11-07 13:01:41 +00:00
mutt14 Fix pkgname collision 2013-10-07 11:09:05 +00:00
mutt14-lite Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
mutt_vc_query - support staging 2013-10-19 06:40:36 +00:00
mutt-lite Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
muttils - remove conditional no longer required per staging 2013-11-07 01:20:48 +00:00
muttzilla Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
nbsmtp Support staging. 2013-10-26 07:52:07 +00:00
newmail - Return ports to the pool 2013-10-23 20:45:10 +00:00
nmh Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
nmzmail Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
noattach - revert r331810 2013-10-28 20:17:49 +00:00
nocc Update to 1.9.4 release and stagify. 2013-11-07 15:31:39 +00:00
nohtml Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
normalizemime Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
notmuch Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
nullmailer Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
nullpop Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
offlineimap Upgrade OfflineIMAP to 6.5.5 2013-10-05 18:36:06 +00:00
opendkim Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
opendmarc Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
opensmtpd - Update to 5.4.1p1 2013-12-07 17:14:12 +00:00
opensmtpd-devel Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
openwebmail Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
osbf-lua Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
ovs Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
p3scan Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
p5-CGP-CLI Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
p5-Clamd Support STAGEDIR. 2013-11-05 02:54:53 +00:00
p5-Dancer-Plugin-Email - Support staging 2013-10-08 22:42:35 +00:00
p5-Data-Validate-Email Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
p5-Email-Abstract Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
p5-Email-Address Support STAGEDIR. 2013-11-05 02:54:53 +00:00
p5-Email-Address-List Parser for From, To, Cc, Bcc, Reply-To, Sender and previous prefixed 2013-11-26 23:56:58 +00:00
p5-Email-Address-Loose Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
p5-Email-AddressParser Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
p5-Email-Date Support STAGEDIR. 2013-11-05 02:54:53 +00:00
p5-Email-Date-Format Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
p5-Email-Delete Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
p5-Email-Filter Support STAGEDIR. 2013-11-05 02:54:53 +00:00
p5-Email-Find Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
p5-Email-Folder Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
p5-Email-Folder-IMAP Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
p5-Email-Folder-IMAPS Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
p5-Email-Folder-POP3 Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
p5-Email-FolderType Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
p5-Email-FolderType-Net Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
p5-Email-LocalDelivery Support STAGEDIR. 2013-11-05 02:54:53 +00:00
p5-Email-LocalDelivery-Ezmlm Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
p5-Email-MessageID Support STAGEDIR. 2013-11-05 02:54:53 +00:00
p5-Email-MIME - Update to 1.925 2013-11-12 08:11:22 +00:00
p5-Email-MIME-Attachment-Stripper Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
p5-Email-MIME-ContentType Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
p5-Email-MIME-CreateHTML Support STAGEDIR. 2013-11-05 02:54:53 +00:00
p5-Email-MIME-Creator-ISO_2022_JP Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
p5-Email-MIME-Encodings Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
p5-Email-Reply Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
p5-Email-Send Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
p5-Email-Sender - Update to 1.300006 2013-12-01 17:58:31 +00:00
p5-Email-Sender-Transport-SMTP-TLS Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
p5-Email-Sender-Transport-SQLite Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
p5-Email-Simple Support STAGEDIR. 2013-11-05 02:54:53 +00:00
p5-Email-Stuff Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
p5-Email-Stuffer - Really fix BUILD_DEPENDS 2013-11-22 02:37:29 +00:00
p5-Email-Valid Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
p5-Email-Valid-Loose Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
p5-FuzzyOcr Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
p5-FuzzyOcr-devel Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
p5-GMail-IMAPD Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
p5-IMAP-Admin Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
p5-IMAP-Client Support STAGEDIR. 2013-11-05 02:54:53 +00:00
p5-IMAP-Sieve Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
p5-LMAP-CID2SPF Support STAGEDIR. 2013-11-08 01:28:37 +00:00
p5-Log-Procmail Support STAGEDIR. 2013-11-05 02:54:53 +00:00
p5-Mail-Address-MobileJp Support STAGEDIR. 2013-11-05 02:54:53 +00:00
p5-Mail-Alias Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
p5-Mail-Audit Support STAGEDIR. 2013-11-05 02:54:53 +00:00
p5-Mail-Audit-Attach Support STAGEDIR. 2013-11-05 02:54:53 +00:00
p5-Mail-Box Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
p5-Mail-Box-Parser-C Support STAGEDIR. 2013-11-05 02:54:53 +00:00
p5-Mail-Bulkmail Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
p5-Mail-Cache Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
p5-Mail-CheckUser Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
p5-Mail-ClamAV Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
p5-Mail-DeliveryStatus-BounceParser Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
p5-Mail-DKIM Support STAGEDIR. 2013-11-05 02:54:53 +00:00
p5-Mail-DomainKeys Support STAGEDIR. 2013-11-05 02:54:53 +00:00
p5-Mail-Ezmlm Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
p5-Mail-Field-Received Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
p5-Mail-FilterXML Support STAGEDIR. 2013-11-05 02:54:53 +00:00
p5-Mail-Folder Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
p5-Mail-Freshmeat Support STAGEDIR. 2013-11-05 02:54:53 +00:00
p5-Mail-GnuPG Support STAGEDIR. 2013-11-05 02:54:53 +00:00
p5-Mail-Graph - Wrap up cd && foo in parenthesis, it'd break with bmake -j 2013-11-24 17:40:44 +00:00
p5-Mail-IMAPClient - Update to 3.35 2013-11-25 09:43:32 +00:00
p5-Mail-IMAPTalk Support STAGEDIR. 2013-11-05 02:54:53 +00:00
p5-Mail-IMAPTalk-MailCache Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
p5-Mail-ListDetector Support STAGEDIR. 2013-11-05 02:54:53 +00:00
p5-Mail-LMLM Support STAGEDIR. 2013-11-05 02:54:53 +00:00
p5-Mail-MailStats Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
p5-Mail-Mbox-MessageParser Support STAGEDIR. 2013-11-05 02:54:53 +00:00
p5-Mail-MboxParser Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
p5-Mail-OpenDKIM Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
p5-Mail-OpenRelay-Simple Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
p5-Mail-POP3Client Update to 2.19. 2013-10-06 12:31:21 +00:00
p5-Mail-Procmail Support STAGEDIR. 2013-11-05 02:54:53 +00:00
p5-Mail-Procmailrc Support STAGEDIR. 2013-11-05 02:54:53 +00:00
p5-Mail-RBL Support STAGEDIR. 2013-11-05 02:54:53 +00:00
p5-Mail-RFC822-Address Support STAGEDIR. 2013-11-05 02:54:53 +00:00
p5-Mail-SendEasy Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
p5-Mail-Sender Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
p5-Mail-Sendmail Support STAGEDIR. 2013-11-05 02:54:53 +00:00
p5-Mail-SpamAssassin Chase gnupg 1 packagename change. 2013-12-06 12:47:57 +00:00
p5-Mail-SpamAssassin-Alt Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
p5-Mail-SPF - Use USES=shebangfix 2013-10-22 20:02:50 +00:00
p5-Mail-SPF-Query - Mark DEPRECATED and set EXPIRATION_DATE to 2013-12-31 2013-11-15 10:11:55 +00:00
p5-Mail-Spool Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
p5-Mail-SRS Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
p5-Mail-Tools Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
p5-Mail-Transport-Dbx Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
p5-Mail-Verify Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
p5-Mail-Verp Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
p5-Mail-Webmail-Gmail Support STAGEDIR. 2013-11-05 02:54:53 +00:00
p5-MIME-AltWords Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
p5-MIME-Charset Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
p5-MIME-EncWords Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
p5-MIME-Explode Support STAGEDIR. 2013-11-05 02:54:53 +00:00
p5-MIME-Fast Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
p5-MIME-Lite - Update to 3.030 2013-11-04 16:58:59 +00:00
p5-MIME-Lite-HTML Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
p5-MIME-Lite-TT Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
p5-MIME-Lite-TT-HTML Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
p5-MIME-Tools - Update to 5.505 2013-11-15 17:55:53 +00:00
p5-MIME-Types Support STAGEDIR. 2013-11-05 02:54:53 +00:00
p5-Net-IMAP-Client Support STAGEDIR. 2013-11-05 02:54:53 +00:00
p5-Net-IMAP-Server Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
p5-Net-IMAP-Simple - Update to 1.2203 2013-10-10 07:11:09 +00:00
p5-Net-IMAP-Simple-SSL Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
p5-Net-ManageSieve Support STAGEDIR. 2013-11-05 02:54:53 +00:00
p5-Net-POP3-SSLWrapper Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
p5-Net-QMTP Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
p5-Net-SenderBase Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
p5-Net-Server-Mail Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
p5-Net-SMTP_auth Support STAGEDIR. 2013-11-05 02:54:53 +00:00
p5-Net-SMTP-Server Support STAGEDIR. 2013-11-05 02:54:53 +00:00
p5-Net-SMTP-SSL Convert to staging 2013-10-08 15:00:29 +00:00
p5-Net-SMTP-TLS Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
p5-Net-SMTP-TLS-ButMaintained Support STAGEDIR. 2013-11-05 02:54:53 +00:00
p5-Parse-Syslog-Mail Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
p5-POE-Component-Client-POP3 Support STAGEDIR. 2013-11-05 02:54:53 +00:00
p5-POE-Component-Client-SMTP Support STAGEDIR. 2013-11-05 02:54:53 +00:00
p5-POE-Component-SMTP Support STAGEDIR. 2013-11-05 02:54:53 +00:00
p5-POE-Filter-Transparent-SMTP Support STAGEDIR. 2013-11-05 02:54:53 +00:00
p5-Qmail-Envelope Support STAGEDIR. 2013-11-05 02:54:53 +00:00
p5-qpsmtpd - Wrap up cd && foo in parenthesis, it'd break with bmake -j 2013-11-24 17:40:44 +00:00
p5-Sendmail-AccessDB Fix pacakge list. 2013-10-25 11:20:05 +00:00
p5-Sendmail-Milter - Fix warning during 'make index' with bmake 2013-10-26 21:33:23 +00:00
p5-SES Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
p5-Test-Email Test::Email - Test Email Contents. 2013-11-27 00:09:28 +00:00
p5-URI-imap Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
p5-URI-imaps Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
p5-WWW-GMail Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
p5-WWW-Hotmail Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
p5-ZConf-Mail Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
pantomime Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
pathalias - fix misplaced NO_STAGE in slaveports and ifdefs 2013-09-21 11:06:03 +00:00
pear-Contact_Vcard_Build Stage support for non-IGNORED pear classes 2013-11-25 17:59:58 +00:00
pear-Contact_Vcard_Parse Stage support for non-IGNORED pear classes 2013-11-25 17:59:58 +00:00
pear-Horde_Imap_Client Stage support for non-IGNORED pear classes 2013-11-25 17:59:58 +00:00
pear-Horde_Kolab_Storage Stage support for non-IGNORED pear classes 2013-11-25 17:59:58 +00:00
pear-Horde_ListHeaders Stage support for non-IGNORED pear classes 2013-11-25 17:59:58 +00:00
pear-Horde_Mail Stage support for non-IGNORED pear classes 2013-11-25 17:59:58 +00:00
pear-Horde_Mime Stage support for non-IGNORED pear classes 2013-11-25 17:59:58 +00:00
pear-Horde_Mime_Viewer Stage support for non-IGNORED pear classes 2013-11-25 17:59:58 +00:00
pear-Horde_Smtp Stage support for non-IGNORED pear classes 2013-11-25 17:59:58 +00:00
pear-Mail Stage support for non-IGNORED pear classes 2013-11-25 17:59:58 +00:00
pear-Mail_Mbox Stage support for non-IGNORED pear classes 2013-11-25 17:59:58 +00:00
pear-Mail_Mime Stage support for non-IGNORED pear classes 2013-11-25 17:59:58 +00:00
pear-Mail_mimeDecode Stage support for non-IGNORED pear classes 2013-11-25 17:59:58 +00:00
pear-Mail_Queue Stage support for non-IGNORED pear classes 2013-11-25 17:59:58 +00:00
pear-MIME_Type Stage support for non-IGNORED pear classes 2013-11-25 17:59:58 +00:00
pear-Net_Cyrus Stage support for non-IGNORED pear classes 2013-11-25 17:59:58 +00:00
pear-Net_IMAP Stage support for non-IGNORED pear classes 2013-11-25 17:59:58 +00:00
pear-Net_LMTP Stage support for non-IGNORED pear classes 2013-11-25 17:59:58 +00:00
pecl-esmtp Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
pecl-mailparse Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
pecl-pop3 Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
perdition Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
pflogstats Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
pflogsumm Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
pfqueue Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
pgpsendmail Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
php5-imap Stagify. 2013-10-30 13:32:02 +00:00
php52-imap Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
php53-imap - convert php53 ports to STAGE 2013-11-01 23:49:56 +00:00
php55-imap Stagify. 2013-10-30 13:32:02 +00:00
phplist Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
phpmailer Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
phpmailer2 Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
pine-pgp-filters Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
pm-lib Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
policyd2 Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
pop3gwd Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
pop3lite Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
pop3proxy Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
pop3vscan Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
pop-before-smtp Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
popa3d Do not enforce a user/group that stage will automatically set. 2013-10-31 07:51:50 +00:00
popa3d-before-sendmail Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
popcheck Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
popd Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
popfile Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
poppassd Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
popper Rename the port popper to match the directory it is in and fix collision with mail/qpopper 2013-11-19 07:31:11 +00:00
poppwd Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
poppy Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
popular Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
postfinger Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
postfix Fixup pkgnames. 2013-12-05 11:10:49 +00:00
postfix27 Fixup pkgnames. 2013-12-05 11:10:49 +00:00
postfix28 Fixup pkgnames. 2013-12-05 11:10:49 +00:00
postfix29 Fixup pkgnames. 2013-12-05 11:10:49 +00:00
postfix-current Fixup pkgnames. 2013-12-05 11:10:49 +00:00
postfix-gps Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
postfix-logwatch Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
postfix-policyd-sf Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
postfix-policyd-spf-perl Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
postfix-policyd-spf-python Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
postfix-policyd-weight Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
postfix-postfwd Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
postfixadmin Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
postgrey - Make postgrey work with Perl 5.18 2013-10-19 20:03:52 +00:00
postpals Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
prayer Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
premail Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
prepflog Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
procmail Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
prom-wl - Return almost all of my ports back to the pool. I have no time to make any 2013-11-29 07:37:52 +00:00
pronto - Return almost all of my ports back to the pool. I have no time to make any 2013-11-29 07:37:52 +00:00
proxsmtp Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
py-apolicy New USES=twisted, to replace the old USE_TWISTED knob. 2013-12-08 12:04:07 +00:00
py-authres mail/py-authres: allow staging 2013-09-26 12:54:08 +00:00
py-cyruslib Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
py-libgmail Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
py-milter Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
py-ppolicy New USES=twisted, to replace the old USE_TWISTED knob. 2013-12-08 12:04:07 +00:00
py-Products.MailHost - Update WWW: 2013-11-20 20:51:25 +00:00
py-Products.SecureMailHost - Update WWW: 2013-11-20 20:51:25 +00:00
py-spambayes Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
py-spf - Fix shebang 2013-11-20 03:24:31 +00:00
py-turbomail Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
py-twistedMail - Support STAGEDIR 2013-11-28 16:08:33 +00:00
py-zope.sendmail - Update WWW: 2013-11-20 20:51:25 +00:00
pymsgauth Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
pysieved Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
pyzor mail/pyzor: add missing dependency 2013-10-22 09:53:35 +00:00
qar-bufo Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
qconfirm Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
qgmailnotifier - Convert to USES=qmake (and other USES while I'm here) 2013-11-22 18:48:41 +00:00
qmail - Add NO_STAGE until validated to be safe for upcoming staging support 2013-09-20 15:58:09 +00:00
qmail-activedir Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
qmail-auditor Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
qmail-autoresponder Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
qmail-conf - Add NO_STAGE until validated to be safe for upcoming staging support 2013-09-20 15:58:09 +00:00
qmail-contrib - Add NO_STAGE until validated to be safe for upcoming staging support 2013-09-20 15:58:09 +00:00
qmail-dk - Add NO_STAGE until validated to be safe for upcoming staging support 2013-09-20 15:58:09 +00:00
qmail-ldap - Add NO_STAGE until validated to be safe for upcoming staging support 2013-09-20 15:58:09 +00:00
qmail-mysql - Add NO_STAGE until validated to be safe for upcoming staging support 2013-09-20 15:58:09 +00:00
qmail-notify Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
qmail-qfilter Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
qmail-rblchk Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
qmail-remove Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
qmail-scanner Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
qmail-scanner1 Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
qmail-spamcontrol - Add NO_STAGE until validated to be safe for upcoming staging support 2013-09-20 15:58:09 +00:00
qmail-tls - Add NO_STAGE until validated to be safe for upcoming staging support 2013-09-20 15:58:09 +00:00
qmailadmin - Remove mail/qmailadmin-devel as is it older than mail/qmailadmin and 2013-10-19 21:36:35 +00:00
qmailanalog - Add NO_STAGE until validated to be safe for upcoming staging support 2013-09-20 15:58:09 +00:00
qmailmrtg7 Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
qmhandle - Add NO_STAGE until validated to be safe for upcoming staging support 2013-09-20 15:58:09 +00:00
qmqtool Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
qpopper Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
qscan Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
qsf Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
qsheff Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
qtools - Add NO_STAGE until validated to be safe for upcoming staging support 2013-09-20 15:58:09 +00:00
queue-fix - Add NO_STAGE until validated to be safe for upcoming staging support 2013-09-20 15:58:09 +00:00
queue-repair - Add NO_STAGE until validated to be safe for upcoming staging support 2013-09-20 15:58:09 +00:00
quickml Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
rabl_client Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
rabl_server Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
raysfilter - use STAGEDIR 2013-10-27 22:29:46 +00:00
razor-agents Add LICENSE 2013-10-31 23:35:34 +00:00
rbl-milter - add USES=gmake 2013-12-07 05:06:24 +00:00
rblcheck Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
relay-ctrl Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
relaydb Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
renattach Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
reply-o-matic Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
rftp Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
ripmime - revert r331810 2013-10-28 20:17:49 +00:00
rlytest - Return ports to the pool 2013-10-23 20:45:10 +00:00
rmilter - Update to 1.5.46 2013-12-02 12:24:38 +00:00
roundcube Update to 0.9.5 release. 2013-10-25 07:50:03 +00:00
roundcube-air Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
roundcube-automatic_addressbook Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
roundcube-contextmenu Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
roundcube-groupvice Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
roundcube-login_info Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
roundcube-mobilecube Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
roundcube-mvision2 Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
roundcube-sauserprefs Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
roundcube-sieverules Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
roundcube-thunderbird_labels Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
roundcube-umich Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
roundcube-veximaccountadmin - Fix for Roundcube >=0.9.0 2013-10-04 18:09:26 +00:00
rspamd - Update to 0.6.2. 2013-12-06 15:47:06 +00:00
rss2email Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
ruby-rfilter Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
ruby-rmail Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
rubygem-actionmailer - Update to 3.2.16 2013-12-05 20:27:13 +00:00
rubygem-exception_notification - Add stage support 2013-10-30 02:50:05 +00:00
rubygem-larch - Add LICENSE 2013-12-07 01:02:19 +00:00
rubygem-mail - Fix and sort RUN_DEPENDS 2013-12-05 20:28:42 +00:00
rubygem-mailfactory - Add stage support 2013-10-30 02:50:05 +00:00
rubygem-pony - Update to 1.6.2 2013-12-06 15:23:32 +00:00
rubygem-qmail Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
rubygem-rmail - Add stage support 2013-10-30 02:50:05 +00:00
rubygem-tmail Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
rubygem-vmail Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
sa-stats Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
sa-utils - Stageify 2013-09-27 08:06:39 +00:00
sastatd Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
scam-backscatter Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
sccmilter Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
sendmail - fix CC handling 2013-11-16 06:38:19 +00:00
sendmail-sasl - fix misplaced NO_STAGE in slaveports and ifdefs 2013-09-21 11:06:03 +00:00
sendok Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
sentinel - convert LIB_DEPENDS 2013-12-07 05:09:57 +00:00
serialmail - Add NO_STAGE until validated to be safe for upcoming staging support 2013-09-20 15:58:09 +00:00
sgwi Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
sid-milter - use STAGEDIR 2013-12-04 07:08:54 +00:00
sieve-connect Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
sigit Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
sigrot Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
simscan Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
slapd-cyrus mail/slapd-cyrus: update dependency on cyrus-imapd version 2013-11-24 11:23:42 +00:00
sma - revert r331810 2013-10-28 20:17:49 +00:00
smail Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
smfsav Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
smtp-cli Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
smtp-gated - Change maintainer email to @FreeBSD.org 2013-09-29 23:36:27 +00:00
smtpfeed Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
smtpmail Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
smtprc Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
smtptrapd Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
softfail Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
sortmail Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
spamass-ixhash Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
spamass-milter Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
spamass-rules Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
spambnc Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
spamcup Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
spamd Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
spamdb-curses Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
spamdyke - Add NO_STAGE until validated to be safe for upcoming staging support 2013-09-20 15:58:09 +00:00
spamguard Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
spamilter - use STAGEDIR 2013-12-05 08:39:07 +00:00
spamoracle Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
spampd Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
spamprobe Unbreak on 10 by patching missing #includes into source files. 2013-11-04 20:24:06 +00:00
spamstats Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
spfval Support staging. 2013-10-24 15:11:40 +00:00
spmfilter Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
spmfilter-clamav Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
spmfilter-spamassassin Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
sqlgrey Import patch to fix IPv6 greylisting 2013-12-06 16:59:37 +00:00
squirrelmail Update to 2013/10/26 2013-10-26 15:47:53 +00:00
squirrelmail-abook_import_export-plugin Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
squirrelmail-askuserinfo-plugin Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
squirrelmail-avelsieve-plugin Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
squirrelmail-calendar_file_backend-plugin Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
squirrelmail-calendar_sql_backend-plugin Deprecated ports broken for more than 6 month 2013-11-22 08:24:11 +00:00
squirrelmail-change_ldappass-plugin Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
squirrelmail-change_sqlpass-plugin Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
squirrelmail-check_quota-plugin Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
squirrelmail-compatibility-plugin - Convert remaining plugins to bsd.squirrelmail.mk. 2013-12-08 16:53:57 +00:00
squirrelmail-decode Removed a blank line from the header. 2013-10-28 12:58:16 +00:00
squirrelmail-email_footer-plugin Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
squirrelmail-login_auth-plugin Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
squirrelmail-login_notes-plugin Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
squirrelmail-mark_read-plugin Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
squirrelmail-multilogin-plugin - Convert remaining plugins to bsd.squirrelmail.mk. 2013-12-08 16:53:57 +00:00
squirrelmail-notes-plugin - Convert remaining plugins to bsd.squirrelmail.mk. 2013-12-08 16:53:57 +00:00
squirrelmail-notify-plugin - Convert remaining plugins to bsd.squirrelmail.mk. 2013-12-08 16:53:57 +00:00
squirrelmail-password_forget-plugin Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
squirrelmail-plugins Clean up list, sort, use OPTIONS helpers. PORTREVISION bump 2013-12-08 16:01:01 +00:00
squirrelmail-pupdate-plugin Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
squirrelmail-qmailadmin_login-plugin Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
squirrelmail-quota_usage-plugin - Convert remaining plugins to bsd.squirrelmail.mk. 2013-12-08 16:53:57 +00:00
squirrelmail-sasql-plugin - Convert remaining plugins to bsd.squirrelmail.mk. 2013-12-08 16:53:57 +00:00
squirrelmail-secure_login-plugin Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
squirrelmail-shared_calendars-plugin - Convert remaining plugins to bsd.squirrelmail.mk. 2013-12-08 16:53:57 +00:00
squirrelmail-spam-buttons-plugin Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
squirrelmail-squirrel_logger-plugin Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
squirrelmail-timeout_user-plugin Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
squirrelmail-tmda-plugin Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
squirrelmail-translations Update to 2013/10/26. Brings in translations for plugins too. 2013-10-26 16:10:55 +00:00
squirrelmail-unsafe_image_rules-plugin Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
squirrelmail-user_special_mailboxes-plugin Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
squirrelmail-vlogin-plugin Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
squirrelmail-websearch-plugin Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
squirrelmail-wetteronline-plugin - Convert remaining plugins to bsd.squirrelmail.mk. 2013-12-08 16:53:57 +00:00
sqwebmail update to 5.7.0 2013-10-17 09:28:55 +00:00
ssmtp Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
surblhost Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
svnmailer Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
swaks Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
sylpheed Support staging. 2013-10-24 15:11:40 +00:00
sympa Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
synonym Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
t-prot Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
teapop Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
textmail mail/textmail: Fix previous pdftotext breakage better 2013-10-06 23:11:56 +00:00
thunderbird - update firefox to 25.0 2013-10-30 20:37:55 +00:00
thunderbird-dictionaries Update to libmpc version 1.0.1 which brings the following fixes: 2013-10-26 00:52:33 +00:00
thunderbird-i18n - update firefox to 25.0 2013-10-30 20:37:55 +00:00
tkrat2 Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
tlb Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
tmda Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
tpop3d Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
trojita Update to libmpc version 1.0.1 which brings the following fixes: 2013-10-26 00:52:33 +00:00
tumgreyspf - Add LICENSE 2013-12-05 20:26:35 +00:00
uebimiau Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
up-imapproxy Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
usendmail Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
vacation Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
vbsfilter - use STAGEDIR 2013-12-07 05:04:18 +00:00
vexim Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
vm Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
vm-pop3d Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
vmailmgr Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
vpopmail - Add NO_STAGE until validated to be safe for upcoming staging support 2013-09-20 15:58:09 +00:00
vqadmin Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
vqregister - Stagify 2013-11-29 03:54:28 +00:00
vrfy Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
wanderlust Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
wanderlust-devel Fix package name collision 2013-10-14 06:52:32 +00:00
wanderlust-emacs21 Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
wanderlust-emacs22 Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
wanderlust-xemacs21-mule Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
websieve Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
whoson Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
wmbiff . Add LICENSE 2013-10-31 23:36:06 +00:00
wmmaiload Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
wmpop3 Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
wmpop3lb Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
x-face-e21 - enable stage. 2013-10-12 18:46:32 +00:00
xbuffy Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
xcite enable stage. 2013-10-12 18:41:20 +00:00
xf-spf Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
xfaces Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
xfce4-mailwatch-plugin - Update to 1.2.0 2013-10-24 19:40:41 +00:00
xfmail Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
xlbiff Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
xmail Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
xmailbox Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
xmailwatcher Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
xpbiff Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
xpi-displayquota Update to 0.3.6 2013-09-21 12:12:51 +00:00
xpi-dispmua Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
zmailer Add NO_STAGE all over the place in preparation for the staging support (cat: mail) 2013-09-20 19:59:12 +00:00
Makefile Test::Email - Test Email Contents. 2013-11-27 00:09:28 +00:00