summaryrefslogtreecommitdiff
path: root/mail/heirloom-mailx (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Remove WWW entries moved into port MakefilesStefan Eßer2022-09-071-2/+0
| | | | | | | | | | Commit b7f05445c00f has added WWW entries to port Makefiles based on WWW: lines in pkg-descr files. This commit removes the WWW: lines of moved-over URLs from these pkg-descr files. Approved by: portmgr (tcberner)
* Add WWW entries to port MakefilesStefan Eßer2022-09-071-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It has been common practice to have one or more URLs at the end of the ports' pkg-descr files, one per line and prefixed with "WWW:". These URLs should point at a project website or other relevant resources. Access to these URLs required processing of the pkg-descr files, and they have often become stale over time. If more than one such URL was present in a pkg-descr file, only the first one was tarnsfered into the port INDEX, but for many ports only the last line did contain the port specific URL to further information. There have been several proposals to make a project URL available as a macro in the ports' Makefiles, over time. This commit implements such a proposal and moves one of the WWW: entries of each pkg-descr file into the respective port's Makefile. A heuristic attempts to identify the most relevant URL in case there is more than one WWW: entry in some pkg-descr file. URLs that are not moved into the Makefile are prefixed with "See also:" instead of "WWW:" in the pkg-descr files in order to preserve them. There are 1256 ports that had no WWW: entries in pkg-descr files. These ports will not be touched in this commit. The portlint port has been adjusted to expect a WWW entry in each port Makefile, and to flag any remaining "WWW:" lines in pkg-descr files as deprecated. Approved by: portmgr (tcberner)
* mail/heirloom-mailx: Fix wrong UTC offset for Europe/DublinAndrea Biardi2022-01-264-3/+74
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Somewhere around 2018, the tzdata maintainers (IANA) corrected a historical mistake with the Europe/Dublin timezone. The mistake was rooted in a misunderstanding of whether IST meant "Irish Summer Time" or "Irish Standard Time". The problem was discussed at great length (http://mm.icann.org/pipermail/tz/2018-January/thread.html) and it was concluded that IST really meant Irish *Standard* Time (in constrast with, say, British *Summer* Time), and that this standard time is defined as UTC+0100. This corresponds to the article at https://en.wikipedia.org/wiki/Time_in_the_Republic_of_Ireland and the notes at https://en.wikipedia.org/wiki/Winter_time_(clock_lag); the source archive of tzdata has a long section dedicated to this problem and a large set of official references and links to www.irishstatutebook.ie. Once the question was settled, the only possible solution for keeping the Irish local time in sync with the rest of the world (timezones aside, the local time in Ireland - as understood by common people - is the same as in London and Belfast) was for IANA to _reverse_ the functioning of the DST flag for Ireland. The result is that in the current IANA timezone database (2021e), Europe/Dublin has DST applied in *winter*, with an adjustment of -1h (that is, negative). Digging deeper, one uncovers that there are a few other countries that have (or once had) the same time-switch mechanism as Ireland; amongst others, https://github.com/MenoData/Time4J/issues/742 also concedes that negative DST is a reality. In heirloom mailx, the logic that works out the UTC offset does the right thing up to a point (November 2021, Ireland = UTC+0100), but then upon inspecting tm->tm_isdst it sees that DST is in effect (remember, flag has been reversed, so DST in Ireland is on in winter time) it adds one hour (it should subtract one, because the adjustment is negative, but mailx doesn't know). PR: 260137 Submitted by: Andrea Biardi <a.biardi@tiscali.it> Reported by: Andrea Biardi <a.biardi@tiscali.it> MFH: 2022Q1
* mail/heirloom-mailx: Use the proper progname in argv[0]Cy Schubert2022-01-262-1/+11
| | | | | | | | | | When argv[0] does not match that af the program name passed to execv(2), mailwrapper cannot determine which application to call in its translation table resulting in: mailwrapper: no mapping in /etc/mail/mailer.conf MFH: 2022Q1
* */*: Remove redundant '-[0-9]*' from CONFLICTSStefan Eßer2021-10-291-1/+1
| | | | | | | | | | | | | The conflict checks compare the patterns first against the package names without version (as reported by "pkg query "%n"), then - if there was no match - agsinst the full package names including the version (as reported by "pkg query "%n-%v"). Many CONFLICTS definitions used patterns like "bash-[0-9]*" to filter for the bash package in any version. But that pattern is functionally identical with just "bash". Approved by: portmgr (blanket)
* mail/heirloom-mailx: Add CPE informationBernhard Froehlich2021-10-081-1/+2
| | | | Approved by: portmgr (blanket)
* One more small cleanup, forgotten yesterday.Mathieu Arnold2021-04-071-1/+0
| | | | Reported by: lwhsu
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* Drop the ipv6 virtual category for m* category as it is not relevant anymoreBaptiste Daroussin2019-10-091-1/+1
| | | | Notes: svn path=/head/; revision=514142
* Jettison SSLv2 support. Not only does this allow mail/mailx toCy Schubert2018-10-153-1/+31
| | | | | | | build using openssl111 in base but SSLv2 is insecure. Notes: svn path=/head/; revision=482131
* Switch to USES=localbase.Cy Schubert2017-06-211-4/+1
| | | | Notes: svn path=/head/; revision=444007
* Assume maintainership.Cy Schubert2016-07-041-1/+1
| | | | | | | PR: 210762 Notes: svn path=/head/; revision=418052
* mail/heirloom-mailx: Fix build without EGDBernard Spil2016-07-022-10/+28
| | | | | | | | | | | - Add patch for building without EGD (OpenSSL 1.1/LibreSSL) - Move from USE_OPENSSL to USES=ssl PR: 205540 Approved by: Maintainer timeout Notes: svn path=/head/; revision=417925
* Fix path to sendmail binary that was accidentally removedPawel Pekala2015-02-041-1/+2
| | | | | | | | | | during a previous update PR: 196082 Submitted by: Jamie Landeg-Jones <jamie@dyslexicfish.net> (maintainer) Notes: svn path=/head/; revision=378412
* Fix build when OpenSSL doesn't support SSL2/SSL3Tijl Coosemans2015-01-091-11/+28
| | | | | | | PR: 195796 Notes: svn path=/head/; revision=376629
* mail/heirloom-mailx: remove SENDMAIL option, wrapper is sufficientKurt Jaeger2014-08-051-11/+4
| | | | | | | | PR: 190134 Approved by: jamie@dyslexicfish.net (maintainer) Notes: svn path=/head/; revision=364070
* mail/heirloom-mailx: add option to use sendmail from ports, and take ownershipKurt Jaeger2014-08-041-4/+11
| | | | | | | | PR: 190134 Submitted by: Jamie Landeg-Jones <jamie@dyslexicfish.net> Notes: svn path=/head/; revision=363985
* 1: Stagify.Vanilla I. Shu2014-06-082-18/+10
| | | | | | | 2: due pkg-plist changed, bump version. Notes: svn path=/head/; revision=357014
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-0/+1
| | | | | | | mail) Notes: svn path=/head/; revision=327742
* - Convert USE_ICONV=yes to USES=iconvMarcus von Appen2013-04-271-1/+1
| | | | | | | | | - Change USE_GNOME=pkgconfig|gnomehack to USES=pathfix|pkgconfig while here Reviewed by: zeising Notes: svn path=/head/; revision=316662
* Convert to new options frameworkBaptiste Daroussin2013-02-201-10/+6
| | | | Notes: svn path=/head/; revision=312658
* - Reassign ports from avl@ back to pool at his request.Dima Panov2013-02-201-1/+1
| | | | | | | | Submitted by: avl via IM Approved by: avl via IM Notes: svn path=/head/; revision=312628
* Fix typos in COMMENTCarlo Strub2012-07-281-1/+1
| | | | | | | Approved by: portmgr@ (implicit) Notes: svn path=/head/; revision=301663
* - Fix build with OpenSSL 1.xAlexander Logvinov2011-09-242-0/+149
| | | | | | | | | PR: ports/158933 Submitted by: D'Arcy Cain <darcy at Vex.Net> Obtained from: heirloom-mailx CVS Notes: svn path=/head/; revision=282296
* - Add LDFLAGS to CONFIGURE_ENV and MAKE_ENV (as it was done with LDFLAGS)Dmitry Marakasov2011-09-231-2/+2
| | | | | | | | | | | | - Fix all ports that add {CPP,LD}FLAGS to *_ENV to modify flags instead PR: 157936 Submitted by: myself Exp-runs by: pav Approved by: pav Notes: svn path=/head/; revision=282282
* - remove MD5Olli Hauer2011-07-031-1/+0
| | | | Notes: svn path=/head/; revision=276989
* - Add a patch to fix "unignore" and similar commandsAlexander Logvinov2010-05-112-1/+23
| | | | | | | | | | | - Bump PORTREVISION PR: ports/146280 Submitted by: B. Smith <anon_101100 at yahoo.com> Obtained from: developers cvs Notes: svn path=/head/; revision=254169
* - Fix wrong PKGNAMEAlexander Logvinov2009-10-141-2/+2
| | | | | | | | PR: ports/139577 Submitted by: Jamie Landeg Jones <jamie at bishopston.net> Notes: svn path=/head/; revision=242823
* - Switch SourceForge ports to the new File Release System: categories ↵Dmitry Marakasov2009-08-221-2/+1
| | | | | | | starting with M Notes: svn path=/head/; revision=240072
* Change MAINTAINER on my ports to my FreeBSD email addressAlexander Logvinov2009-05-281-1/+1
| | | | | | | Approved by: tabthorpe (mentor) Notes: svn path=/head/; revision=234716
* - Make MAKE_JOBS_UNSAFEMartin Wilke2009-03-311-0/+1
| | | | | | | | PR: 133125 Submitted by: Alexander Logvinov <ports@logvinov.com> (maintainer) Notes: svn path=/head/; revision=231363
* - Add mutual conflicts to mail/heirloom-mailx and mail/mailx: both install ↵Dmitry Marakasov2008-12-011-0/+3
| | | | | | | | | | | bin/mailx PR: 129332 Submitted by: Alexander Logvinov <ports at logvinov dot com> (maintainer of mail/heirloom-mailx) Reported by: Evgeniy Pismenchuk <evpian at gmail dot com> Notes: svn path=/head/; revision=223661
* [maintainer update] mail/heirloom-mailx: update to 12.4Edwin Groothuis2008-08-152-9/+16
| | | | | | | | | | | | | Update to 12.4 See http://heirloom.sourceforge.net/mailx/ChangeLog Add option for IPv6 Support PR: ports/126293 Submitted by: Alexander Logvinov <ports@logvinov.com> Notes: svn path=/head/; revision=218575
* - Update to 12.3Martin Wilke2007-07-162-4/+4
| | | | | | | | PR: 114608 Submitted by: Alexander Logvinov <ports@logvinov.com> (maintainer) Notes: svn path=/head/; revision=195705
* - Update to 12.2Cheng-Lung Sung2007-01-082-4/+4
| | | | | | | | PR: ports/107670 Submitted by: maintainer (Alexander Logvinov) Notes: svn path=/head/; revision=181751
* - Add ipv6 to CATEGORIESGabor Kovesdan2006-12-201-1/+1
| | | | | | | | | | PR: ports/106893 Submitted by: Janos Mohacsi <janos.mohacsi@bsd.hu> Approved by: erwin (mentor), Alexander Logvinov <ports@logvinov.com> (maintainer) Notes: svn path=/head/; revision=180269
* - Complete repocopy of mail/nail to mail/heirloom-mailx.Alejandro Pulver2006-11-053-15/+32
| | | | | | | | PR: ports/104693 Submitted by: Alexander Logvinov <ports@logvinov.com> (maintainer) Notes: svn path=/head/; revision=176518
* - take maintainershipCheng-Lung Sung2006-10-311-1/+1
| | | | | | | | PR: ports/104951 Submitted by: Alexander Logvinov <ports_AT_logvinov dot com> Notes: svn path=/head/; revision=175634
* Drop maintainer-shipEmanuel Haupt2006-03-151-1/+1
| | | | | | | PR: 94136 Notes: svn path=/head/; revision=157225
* Add SHA256 hashes to my portsEmanuel Haupt2005-11-301-0/+1
| | | | Notes: svn path=/head/; revision=150048
* Change MAINTAINER address for my ports.Emanuel Haupt2005-10-061-1/+1
| | | | | | | Approved by: novel (mentor) Notes: svn path=/head/; revision=144389
* - Update to 11.25Sergey Matveychuk2005-08-292-8/+14
| | | | | | | | | | | - Preserve config on deinstall - Pass maintainership to submitter PR: ports/85045 Submitted by: Emanuel Haupt <ehaupt@critical.ch> Notes: svn path=/head/; revision=141296
* - Update to 11.24Pav Lucistnik2005-07-142-3/+3
| | | | | | | | PR: ports/83458 Submitted by: Vsevolod Stakhov <vsevolod@highsecure.ru> Notes: svn path=/head/; revision=139214
* Update to 11.23Jean-Yves Lefort2005-06-292-3/+3
| | | | | | | | PR: ports/82745 Submitted by: Vsevolod Stakhov <vsevolod@highsecure.ru> Notes: svn path=/head/; revision=138213
* Update to 11.22Kirill Ponomarev2005-03-202-3/+3
| | | | Notes: svn path=/head/; revision=131744
* - Update to 11.21Michael Johnson2005-03-022-3/+3
| | | | | | | | PR: ports/78314 Submitted by: Ports Fury Notes: svn path=/head/; revision=130217
* Update to 11.20Kirill Ponomarev2005-01-132-3/+3
| | | | Notes: svn path=/head/; revision=126325
* Update to version 11.19Kirill Ponomarev2005-01-082-3/+3
| | | | | | | | PR: ports/75953 Submitted by: Ports Fury Notes: svn path=/head/; revision=125827
* Update to 11.18Kirill Ponomarev2004-12-092-3/+3
| | | | Notes: svn path=/head/; revision=123593
* Update to version 11.17Kirill Ponomarev2004-11-222-6/+9
| | | | | | | | PR: ports/74246 Submitted by: Ports Fury Notes: svn path=/head/; revision=122151