public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: net-mail/mailbase/files/, net-mail/mailbase/
@ 2020-12-29 10:41 Eray Aslan
  0 siblings, 0 replies; 4+ messages in thread
From: Eray Aslan @ 2020-12-29 10:41 UTC (permalink / raw
  To: gentoo-commits

commit:     f2b712ce31a89f4873ae76c1f5a4148eebfc7533
Author:     Eray Aslan <eras <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 29 10:41:04 2020 +0000
Commit:     Eray Aslan <eras <AT> gentoo <DOT> org>
CommitDate: Tue Dec 29 10:41:30 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2b712ce

net-mail/mailbase: do not hardcode application paths

as it obviously wont work for gentoo prefix project.
and review and revize the mailcap file while at it.

Bug: https://bugs.gentoo.org/761772
Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Eray Aslan <eras <AT> gentoo.org>

 net-mail/mailbase/files/mailcap-r1    | 19 +++++++++++++++
 net-mail/mailbase/mailbase-1.6.ebuild | 46 +++++++++++++++++++++++++++++++++++
 2 files changed, 65 insertions(+)

diff --git a/net-mail/mailbase/files/mailcap-r1 b/net-mail/mailbase/files/mailcap-r1
new file mode 100644
index 00000000000..0ffdcca3783
--- /dev/null
+++ b/net-mail/mailbase/files/mailcap-r1
@@ -0,0 +1,19 @@
+application/pdf; xdg-open '%s'; needsterminal
+application/postscript; xdg-open '%s'; needsterminal
+application/x-info; info --subnodes -o /dev/stdout -f '%s' 2>/dev/null; copiousoutput; description=GNU Info document
+application/x-gtar; tar tvzf -; print=tar tvzf - | print text/plain:-; copiousoutput
+application/x-tar; tar tvf -; print=tar tvf - | print text/plain:-; copiousoutput
+application/x-troff-man; nroff -mandoc -Tutf8; copiousoutput; print=nroff -mandoc -Tutf8 | print text/plain:-
+
+audio/*; xdg-open '%s'; needsterminal
+image/*; xdg-open '%s'; needsterminal
+
+text/html; lynx -dump '%s'; copiousoutput; description=HTML Text; nametemplate=%s.html
+text/troff; man -l '%s'; needsterminal; description=Man page
+text/*; less '%s'; needsterminal
+text/*; gview '%s'; edit=gvim -f '%s'; compose=gvim -f '%s'; test=test "$DISPLAY" != ""
+text/*; view '%s'; edit=vim '%s'; compose=vim '%s'; needsterminal
+text/*; more '%s'; needsterminal
+
+*/*; less '%s'; needsterminal
+*/*; false; print=lpr '%s'

diff --git a/net-mail/mailbase/mailbase-1.6.ebuild b/net-mail/mailbase/mailbase-1.6.ebuild
new file mode 100644
index 00000000000..7687676d7b1
--- /dev/null
+++ b/net-mail/mailbase/mailbase-1.6.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit pam
+
+DESCRIPTION="MTA layout package"
+SRC_URI=""
+HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86"
+IUSE="pam"
+
+RDEPEND="
+	acct-group/mail
+	acct-user/mail
+	acct-user/postmaster
+	pam? ( sys-libs/pam )
+	!<net-mail/metamail-2.7.53.3-r2"
+
+S=${WORKDIR}
+
+src_install() {
+	dodir /etc/mail
+	insinto /etc/mail
+	doins "${FILESDIR}"/aliases
+	insinto /etc
+	newins "${FILESDIR}"/mailcap-r1 mailcap
+	doman "${FILESDIR}"/mailcap.5
+
+	dosym spool/mail /var/mail
+
+	newpamd "${FILESDIR}"/common-pamd-include pop
+	newpamd "${FILESDIR}"/common-pamd-include imap
+	if use pam ; then
+		local p
+		for p in pop3 pop3s pops ; do
+			dosym pop /etc/pam.d/${p}
+		done
+		for p in imap4 imap4s imaps ; do
+			dosym imap /etc/pam.d/${p}
+		done
+	fi
+}


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-mail/mailbase/files/, net-mail/mailbase/
@ 2021-12-27  5:35 Eray Aslan
  0 siblings, 0 replies; 4+ messages in thread
From: Eray Aslan @ 2021-12-27  5:35 UTC (permalink / raw
  To: gentoo-commits

commit:     1a1eb2dfdfd41ba2eb9a5416e1b6f445fe00028d
Author:     Eray Aslan <eras <AT> gentoo <DOT> org>
AuthorDate: Mon Dec 27 05:34:48 2021 +0000
Commit:     Eray Aslan <eras <AT> gentoo <DOT> org>
CommitDate: Mon Dec 27 05:34:48 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a1eb2df

net-mail/mailbase: remove wildcards from mailcap

as noted in mailcap(5):
	Note that wildcards may only be specified in the subtype (e.g.
	"*" or "*/*" do not work),  and  as  the  entire subtype (e.g.
	"application/x-*" does not work)

wildcards were introduced in the hope that they might be useful for some
programs.  however, some mailers reportedly error out with:

s-nail: $MAILCAPS: /etc/mailcap: skip due to error: invalid MIME type: */*

so, just remove */* wildcards from mailcap

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Eray Aslan <eras <AT> gentoo.org>

 net-mail/mailbase/files/mailcap-r3    | 30 +++++++++++++++++++++++
 net-mail/mailbase/mailbase-1.8.ebuild | 45 +++++++++++++++++++++++++++++++++++
 2 files changed, 75 insertions(+)

diff --git a/net-mail/mailbase/files/mailcap-r3 b/net-mail/mailbase/files/mailcap-r3
new file mode 100644
index 000000000000..fe717f34e0b0
--- /dev/null
+++ b/net-mail/mailbase/files/mailcap-r3
@@ -0,0 +1,30 @@
+# Database binding MIME types to programs that can process them.
+# This file is generally used by mail clients to view attachments.
+#
+# Users should add their own rules to their ~/.mailcap file.  That file will be
+# processed first before falling back to this one.
+#
+# For more information, see the mailcap(5) man page.
+
+# NB: Do not quote %s.  Clients will handle expanding it with proper quoting,
+# so adding quotes ourselves just confuses things.
+
+application/pdf; xdg-open %s; needsterminal
+application/postscript; xdg-open %s; needsterminal
+application/x-info; info --subnodes -o /dev/stdout -f %s 2>/dev/null; copiousoutput; description=GNU Info document
+application/x-gtar; tar tvzf -; print=tar tvzf - | print text/plain:-; copiousoutput
+application/x-tar; tar tvf -; print=tar tvf - | print text/plain:-; copiousoutput
+application/x-troff-man; nroff -mandoc -Tutf8; copiousoutput; print=nroff -mandoc -Tutf8 | print text/plain:-
+# It'd be nice to limit this to compressed formats (e.g. x-*), but the file
+# format doesn't support that, and less has good fallbacks already.
+application/*; less %s; copiousoutput; needsterminal
+
+audio/*; xdg-open %s; needsterminal
+image/*; xdg-open %s; needsterminal
+
+text/html; lynx -dump -assume_charset=%{charset} %s; copiousoutput; description=HTML Text; nametemplate=%s.html
+text/troff; man -l %s; needsterminal; description=Man page
+text/*; less %s; needsterminal
+text/*; gview %s; edit=gvim -f %s; compose=gvim -f %s; test=test "$DISPLAY" != ""
+text/*; view %s; edit=vim %s; compose=vim %s; needsterminal
+text/*; more %s; needsterminal

diff --git a/net-mail/mailbase/mailbase-1.8.ebuild b/net-mail/mailbase/mailbase-1.8.ebuild
new file mode 100644
index 000000000000..699bdc713711
--- /dev/null
+++ b/net-mail/mailbase/mailbase-1.8.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+inherit pam
+
+DESCRIPTION="MTA layout package"
+HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+IUSE="pam"
+
+RDEPEND="
+	acct-group/mail
+	acct-user/mail
+	acct-user/postmaster
+	pam? ( sys-libs/pam )
+"
+
+S=${WORKDIR}
+
+src_install() {
+	insinto /etc/mail
+	doins "${FILESDIR}"/aliases
+	insinto /etc
+	newins "${FILESDIR}"/mailcap-r3 mailcap
+	doman "${FILESDIR}"/mailcap.5
+
+	dosym spool/mail /var/mail
+
+	if use pam ; then
+		newpamd "${FILESDIR}"/common-pamd-include pop
+		newpamd "${FILESDIR}"/common-pamd-include imap
+		local p
+		for p in pop3 pop3s pops ; do
+			dosym pop /etc/pam.d/${p}
+		done
+		for p in imap4 imap4s imaps ; do
+			dosym imap /etc/pam.d/${p}
+		done
+	fi
+}


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-mail/mailbase/files/, net-mail/mailbase/
@ 2022-04-19 12:05 Eray Aslan
  0 siblings, 0 replies; 4+ messages in thread
From: Eray Aslan @ 2022-04-19 12:05 UTC (permalink / raw
  To: gentoo-commits

commit:     f1394019e23364160898c3e27fa52b41c1dcc740
Author:     Eray Aslan <eras <AT> gentoo <DOT> org>
AuthorDate: Tue Apr 19 12:04:42 2022 +0000
Commit:     Eray Aslan <eras <AT> gentoo <DOT> org>
CommitDate: Tue Apr 19 12:04:42 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1394019

net-mail/mailbase: drop 1.6-r1, 1.7

Signed-off-by: Eray Aslan <eras <AT> gentoo.org>

 net-mail/mailbase/files/mailcap-r1       | 19 -------------
 net-mail/mailbase/files/mailcap-r2       | 36 -------------------------
 net-mail/mailbase/mailbase-1.6-r1.ebuild | 46 --------------------------------
 net-mail/mailbase/mailbase-1.7.ebuild    | 45 -------------------------------
 4 files changed, 146 deletions(-)

diff --git a/net-mail/mailbase/files/mailcap-r1 b/net-mail/mailbase/files/mailcap-r1
deleted file mode 100644
index 0ffdcca3783f..000000000000
--- a/net-mail/mailbase/files/mailcap-r1
+++ /dev/null
@@ -1,19 +0,0 @@
-application/pdf; xdg-open '%s'; needsterminal
-application/postscript; xdg-open '%s'; needsterminal
-application/x-info; info --subnodes -o /dev/stdout -f '%s' 2>/dev/null; copiousoutput; description=GNU Info document
-application/x-gtar; tar tvzf -; print=tar tvzf - | print text/plain:-; copiousoutput
-application/x-tar; tar tvf -; print=tar tvf - | print text/plain:-; copiousoutput
-application/x-troff-man; nroff -mandoc -Tutf8; copiousoutput; print=nroff -mandoc -Tutf8 | print text/plain:-
-
-audio/*; xdg-open '%s'; needsterminal
-image/*; xdg-open '%s'; needsterminal
-
-text/html; lynx -dump '%s'; copiousoutput; description=HTML Text; nametemplate=%s.html
-text/troff; man -l '%s'; needsterminal; description=Man page
-text/*; less '%s'; needsterminal
-text/*; gview '%s'; edit=gvim -f '%s'; compose=gvim -f '%s'; test=test "$DISPLAY" != ""
-text/*; view '%s'; edit=vim '%s'; compose=vim '%s'; needsterminal
-text/*; more '%s'; needsterminal
-
-*/*; less '%s'; needsterminal
-*/*; false; print=lpr '%s'

diff --git a/net-mail/mailbase/files/mailcap-r2 b/net-mail/mailbase/files/mailcap-r2
deleted file mode 100644
index 5ecd40a4201a..000000000000
--- a/net-mail/mailbase/files/mailcap-r2
+++ /dev/null
@@ -1,36 +0,0 @@
-# Database binding MIME types to programs that can process them.
-# This file is generally used by mail clients to view attachments.
-#
-# Users should add their own rules to their ~/.mailcap file.  That file will be
-# processed first before falling back to this one.
-#
-# For more information, see the mailcap(5) man page.
-
-# NB: Do not quote %s.  Clients will handle expanding it with proper quoting,
-# so adding quotes ourselves just confuses things.
-
-application/pdf; xdg-open %s; needsterminal
-application/postscript; xdg-open %s; needsterminal
-application/x-info; info --subnodes -o /dev/stdout -f %s 2>/dev/null; copiousoutput; description=GNU Info document
-application/x-gtar; tar tvzf -; print=tar tvzf - | print text/plain:-; copiousoutput
-application/x-tar; tar tvf -; print=tar tvf - | print text/plain:-; copiousoutput
-application/x-troff-man; nroff -mandoc -Tutf8; copiousoutput; print=nroff -mandoc -Tutf8 | print text/plain:-
-# It'd be nice to limit this to compressed formats (e.g. x-*), but the file
-# format doesn't support that, and less has good fallbacks already.
-application/*; less %s; copiousoutput; needsterminal
-
-audio/*; xdg-open %s; needsterminal
-image/*; xdg-open %s; needsterminal
-
-text/html; lynx -dump -assume_charset=%{charset} %s; copiousoutput; description=HTML Text; nametemplate=%s.html
-text/troff; man -l %s; needsterminal; description=Man page
-text/*; less %s; needsterminal
-text/*; gview %s; edit=gvim -f %s; compose=gvim -f %s; test=test "$DISPLAY" != ""
-text/*; view %s; edit=vim %s; compose=vim %s; needsterminal
-text/*; more %s; needsterminal
-
-# NB: This is an extension in the hope that it might be useful to some programs.
-# RFC1524 does not support * for the type (the string before the /), only for
-# the subtype (the string after the /).
-*/*; less %s; needsterminal
-*/*; false; print=lpr %s

diff --git a/net-mail/mailbase/mailbase-1.6-r1.ebuild b/net-mail/mailbase/mailbase-1.6-r1.ebuild
deleted file mode 100644
index c8ddcc3a5694..000000000000
--- a/net-mail/mailbase/mailbase-1.6-r1.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-inherit pam
-
-DESCRIPTION="MTA layout package"
-SRC_URI=""
-HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage"
-S=${WORKDIR}
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE="pam"
-
-RDEPEND="
-	acct-group/mail
-	acct-user/mail
-	acct-user/postmaster
-	pam? ( sys-libs/pam )
-	!<net-mail/metamail-2.7.53.3-r2
-"
-
-src_install() {
-	insinto /etc/mail
-	doins "${FILESDIR}"/aliases
-	insinto /etc
-	newins "${FILESDIR}"/mailcap-r1 mailcap
-	doman "${FILESDIR}"/mailcap.5
-
-	dosym spool/mail /var/mail
-
-	if use pam ; then
-		newpamd "${FILESDIR}"/common-pamd-include pop
-		newpamd "${FILESDIR}"/common-pamd-include imap
-		local p
-		for p in pop3 pop3s pops ; do
-			dosym pop /etc/pam.d/${p}
-		done
-		for p in imap4 imap4s imaps ; do
-			dosym imap /etc/pam.d/${p}
-		done
-	fi
-}

diff --git a/net-mail/mailbase/mailbase-1.7.ebuild b/net-mail/mailbase/mailbase-1.7.ebuild
deleted file mode 100644
index 242efe827056..000000000000
--- a/net-mail/mailbase/mailbase-1.7.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-inherit pam
-
-DESCRIPTION="MTA layout package"
-HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage"
-S=${WORKDIR}
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE="pam"
-
-RDEPEND="
-	acct-group/mail
-	acct-user/mail
-	acct-user/postmaster
-	pam? ( sys-libs/pam )
-	!<net-mail/metamail-2.7.53.3-r2
-"
-
-src_install() {
-	insinto /etc/mail
-	doins "${FILESDIR}"/aliases
-	insinto /etc
-	newins "${FILESDIR}"/mailcap-r2 mailcap
-	doman "${FILESDIR}"/mailcap.5
-
-	dosym spool/mail /var/mail
-
-	if use pam ; then
-		newpamd "${FILESDIR}"/common-pamd-include pop
-		newpamd "${FILESDIR}"/common-pamd-include imap
-		local p
-		for p in pop3 pop3s pops ; do
-			dosym pop /etc/pam.d/${p}
-		done
-		for p in imap4 imap4s imaps ; do
-			dosym imap /etc/pam.d/${p}
-		done
-	fi
-}


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-mail/mailbase/files/, net-mail/mailbase/
@ 2022-05-28  8:24 Eray Aslan
  0 siblings, 0 replies; 4+ messages in thread
From: Eray Aslan @ 2022-05-28  8:24 UTC (permalink / raw
  To: gentoo-commits

commit:     2a7b70d6874dfd700cc9c92f0e51c0594366b201
Author:     Eray Aslan <eras <AT> gentoo <DOT> org>
AuthorDate: Sat May 28 08:20:04 2022 +0000
Commit:     Eray Aslan <eras <AT> gentoo <DOT> org>
CommitDate: Sat May 28 08:20:29 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a7b70d6

net-mail/mailbase: add 1.8.1

copiousoutput and needsterminal do not make sense when used together.
one is "does no interaction with the user" and the other "needs to
interact with the user".

Signed-off-by: Eray Aslan <eras <AT> gentoo.org>

 net-mail/mailbase/files/mailcap-r4      | 30 ++++++++++++++++++++++
 net-mail/mailbase/mailbase-1.8.1.ebuild | 44 +++++++++++++++++++++++++++++++++
 2 files changed, 74 insertions(+)

diff --git a/net-mail/mailbase/files/mailcap-r4 b/net-mail/mailbase/files/mailcap-r4
new file mode 100644
index 000000000000..8c1bd310e3de
--- /dev/null
+++ b/net-mail/mailbase/files/mailcap-r4
@@ -0,0 +1,30 @@
+# Database binding MIME types to programs that can process them.
+# This file is generally used by mail clients to view attachments.
+#
+# Users should add their own rules to their ~/.mailcap file.  That file will be
+# processed first before falling back to this one.
+#
+# For more information, see the mailcap(5) man page.
+
+# NB: Do not quote %s.  Clients will handle expanding it with proper quoting,
+# so adding quotes ourselves just confuses things.
+
+application/pdf; xdg-open %s; needsterminal
+application/postscript; xdg-open %s; needsterminal
+application/x-info; info --subnodes -o /dev/stdout -f %s 2>/dev/null; copiousoutput; description=GNU Info document
+application/x-gtar; tar tvzf -; print=tar tvzf - | print text/plain:-; copiousoutput
+application/x-tar; tar tvf -; print=tar tvf - | print text/plain:-; copiousoutput
+application/x-troff-man; nroff -mandoc -Tutf8; copiousoutput; print=nroff -mandoc -Tutf8 | print text/plain:-
+# It'd be nice to limit this to compressed formats (e.g. x-*), but the file
+# format doesn't support that, and less has good fallbacks already.
+application/*; less %s; needsterminal
+
+audio/*; xdg-open %s; needsterminal
+image/*; xdg-open %s; needsterminal
+
+text/html; lynx -dump -assume_charset=%{charset} %s; copiousoutput; description=HTML Text; nametemplate=%s.html
+text/troff; man -l %s; needsterminal; description=Man page
+text/*; less %s; needsterminal
+text/*; gview %s; edit=gvim -f %s; compose=gvim -f %s; test=test "$DISPLAY" != ""
+text/*; view %s; edit=vim %s; compose=vim %s; needsterminal
+text/*; more %s; needsterminal

diff --git a/net-mail/mailbase/mailbase-1.8.1.ebuild b/net-mail/mailbase/mailbase-1.8.1.ebuild
new file mode 100644
index 000000000000..31a62191a865
--- /dev/null
+++ b/net-mail/mailbase/mailbase-1.8.1.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+inherit pam
+
+DESCRIPTION="MTA layout package"
+HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage"
+S=${WORKDIR}
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+IUSE="pam"
+
+RDEPEND="
+	acct-group/mail
+	acct-user/mail
+	acct-user/postmaster
+	pam? ( sys-libs/pam )
+"
+
+src_install() {
+	insinto /etc/mail
+	doins "${FILESDIR}"/aliases
+	insinto /etc
+	newins "${FILESDIR}"/mailcap-r4 mailcap
+	doman "${FILESDIR}"/mailcap.5
+
+	dosym spool/mail /var/mail
+
+	if use pam ; then
+		newpamd "${FILESDIR}"/common-pamd-include pop
+		newpamd "${FILESDIR}"/common-pamd-include imap
+		local p
+		for p in pop3 pop3s pops ; do
+			dosym pop /etc/pam.d/${p}
+		done
+		for p in imap4 imap4s imaps ; do
+			dosym imap /etc/pam.d/${p}
+		done
+	fi
+}


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2022-05-28  8:24 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-12-29 10:41 [gentoo-commits] repo/gentoo:master commit in: net-mail/mailbase/files/, net-mail/mailbase/ Eray Aslan
  -- strict thread matches above, loose matches on Subject: below --
2021-12-27  5:35 Eray Aslan
2022-04-19 12:05 Eray Aslan
2022-05-28  8:24 Eray Aslan

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox