GNU bug report logs -
#77023
[PATCH 0/3] home: services: Add readymedia.
Previous Next
To reply to this bug, email your comments to 77023 AT debbugs.gnu.org.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
andrew <at> trop.in, janneke <at> gnu.org, ludo <at> gnu.org, maxim.cournoyer <at> gmail.com, tanguy <at> bioneland.org, guix-patches <at> gnu.org
:
bug#77023
; Package
guix-patches
.
(Sat, 15 Mar 2025 02:03:01 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Sughosha <sughosha <at> disroot.org>
:
New bug report received and forwarded. Copy sent to
andrew <at> trop.in, janneke <at> gnu.org, ludo <at> gnu.org, maxim.cournoyer <at> gmail.com, tanguy <at> bioneland.org, guix-patches <at> gnu.org
.
(Sat, 15 Mar 2025 02:03:01 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
This set of patches updates homepage of the 'readymedia' package and the URL of
the documentation of ReadyMedia Service; make 'readymedia-configuration',
'readymedia-shepherd-service' and 'readymedia-activation' compatible to be
wrapped with 'for-home'; adds 'home-readymedia-service-type', a home
counterpart of 'readymedia-service-type'.
Sughosha (3):
gnu: readymedia: Update home-page.
doc: Update ReadyMedia url.
home: services: Add readymedia.
doc/guix.texi | 47 +++++++++++++++++++++++++++++++-
gnu/home/services/upnp.scm | 55 ++++++++++++++++++++++++++++++++++++++
gnu/local.mk | 1 +
gnu/packages/upnp.scm | 2 +-
gnu/services/upnp.scm | 45 ++++++++++++++++++++++---------
5 files changed, 136 insertions(+), 14 deletions(-)
create mode 100644 gnu/home/services/upnp.scm
base-commit: e124661486ec722b5c09a94b416f0104b9dde5a4
--
2.48.1
Information forwarded
to
guix-patches <at> gnu.org
:
bug#77023
; Package
guix-patches
.
(Sat, 15 Mar 2025 02:05:02 GMT)
Full text and
rfc822 format available.
Message #8 received at 77023 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/upnp.scm (readymedia): Update home-page.
Change-Id: I11f38874c362025e03fa3f0706e57b32d3706edd
---
gnu/packages/upnp.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gnu/packages/upnp.scm b/gnu/packages/upnp.scm
index e49c39ef574..9a58e6d7f62 100644
--- a/gnu/packages/upnp.scm
+++ b/gnu/packages/upnp.scm
@@ -174,7 +174,7 @@ (define-public readymedia
libvorbis
sqlite
zlib))
- (home-page "https://sourceforge.net/projects/minidlna/")
+ (home-page "https://minidlna.sourceforge.net/")
(synopsis "DLNA/UPnP-AV media server")
(description "ReadyMedia (formerly known as MiniDLNA) is a simple media
server, which serves multimedia content to compatible clients on the network.
--
2.48.1
Information forwarded
to
ludo <at> gnu.org, maxim.cournoyer <at> gmail.com, guix-patches <at> gnu.org
:
bug#77023
; Package
guix-patches
.
(Sat, 15 Mar 2025 02:05:02 GMT)
Full text and
rfc822 format available.
Message #11 received at 77023 <at> debbugs.gnu.org (full text, mbox):
* doc/guix.texi (DLNA/UPnP Services): Update ReadyMedia url.
Change-Id: Ief346066edd6b9e679f020a6ff8528856cf853d9
---
doc/guix.texi | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/doc/guix.texi b/doc/guix.texi
index d109877a32c..02da0a2ee98 100644
--- a/doc/guix.texi
+++ b/doc/guix.texi
@@ -43931,7 +43931,7 @@ Miscellaneous Services
media streaming and device interoperability within a local network. For
now, this module provides the @code{readymedia-service-type}.
-@uref{https://sourceforge.net/projects/minidlna/, ReadyMedia} (formerly
+@uref{https://minidlna.sourceforge.net/, ReadyMedia} (formerly
known as MiniDLNA) is a DLNA/UPnP-AV media server. The project's
daemon, @code{minidlnad}, can serve media files (audio, pictures, and
video) to DLNA/UPnP-AV clients available on the network.
--
2.48.1
Information forwarded
to
andrew <at> trop.in, janneke <at> gnu.org, ludo <at> gnu.org, maxim.cournoyer <at> gmail.com, tanguy <at> bioneland.org, guix-patches <at> gnu.org
:
bug#77023
; Package
guix-patches
.
(Sat, 15 Mar 2025 02:05:03 GMT)
Full text and
rfc822 format available.
Message #14 received at 77023 <at> debbugs.gnu.org (full text, mbox):
* gnu/home/services/upnp.scm: New file.
* gnu/local.mk: Register it.
* gnu/services/upnp.scm: Export readymedia-activation and
readymedia-shepherd-service.
(<readymedia-configuration>)[home-service?]: New field.
[cache-directory]: Adjust value depending on 'for-home?'.
[log-directory]: Ditto.
(readymedia-shepherd-service): Adjust 'requirement' and 'start' according to
'home-service?'.
(readymedia-activation): Adjust creating directories with permissions according
to 'home-service?'.
* doc/guix.texi (Miscellaneous Home Services): Document Readymedia Service.
(Miscellaneous Services): Add cross-reference.
Change-Id: I57ec25726e716ca6600ef23b636523c48fd5041f
---
doc/guix.texi | 45 +++++++++++++++++++++++++++++++
gnu/home/services/upnp.scm | 55 ++++++++++++++++++++++++++++++++++++++
gnu/local.mk | 1 +
gnu/services/upnp.scm | 45 ++++++++++++++++++++++---------
4 files changed, 134 insertions(+), 12 deletions(-)
create mode 100644 gnu/home/services/upnp.scm
diff --git a/doc/guix.texi b/doc/guix.texi
index 02da0a2ee98..0cb4573e4db 100644
--- a/doc/guix.texi
+++ b/doc/guix.texi
@@ -43965,6 +43965,12 @@ Miscellaneous Services
field is mandatory. All other fields (such as network ports and the
server name) come with a predefined default and can be omitted.
+@quotation Note
+This service is also available for Guix Home, where it runs directly
+with your user privileges (@pxref{Miscellaneous Home Services,
+@code{home-readymedia-service-type}}).
+@end quotation
+
@c %start of fragment
@deftp {Data Type} readymedia-configuration
@@ -50159,6 +50165,8 @@ Networking Home Services
This section lists services somewhat networking-related that you may use
with Guix Home.
+@subheading Syncthing Service
+
@cindex Syncthing, file synchronization service
@cindex backup service, Syncthing
The @code{(gnu home services syncthing)} module provides a service to
@@ -50261,6 +50269,43 @@ Miscellaneous Home Services
(dicod-configuration @dots{})))
@end lisp
+@subheading ReadyMedia Service
+
+@cindex ReadyMedia, DLNA/UPnP Service
+The @code{(gnu home services upnp)} module provides a service to set up
+the @uref{https://minidlna.sourceforge.net/, ReadyMedia} @acronym{DLNA,
+Digital Living Network Alliance} @acronym{UPnP, Universal Plug and Play}
+media server.
+
+@defvar home-readymedia-service-type
+This is the service type for the @command{minidlnad} daemon; it is the
+Home counterpart of the @code{readymedia-service-type} system service
+(@pxref{Miscellaneous Services, @code{readymedia-service-type}}). The value
+for this service type is a @code{readymedia-configuration}.
+@end defvar
+
+The service can be used with a @code{readymedia-configuration} wrapped in
+@code{for-home} like this:
+
+@lisp
+(service home-readymedia-service-type
+ (for-home
+ (readymedia-configuration
+ (media-directories
+ (list (readymedia-directory
+ (path "/path/to/media/audio")
+ (types '(A)))
+ (readymedia-directory
+ (path "/path/to/media/video")
+ (types '(V)))
+ (readymedia-directory
+ (path "/path/to/media/misc")))))))
+@end lisp
+
+For details about @code{readymedia-configuration}, check out the
+documentation of the system service (@pxref{Miscellaneous Services,
+@code{readymedia-service-type}}).
+
@node Invoking guix home
@section Invoking @command{guix home}
diff --git a/gnu/home/services/upnp.scm b/gnu/home/services/upnp.scm
new file mode 100644
index 00000000000..869c8e0c4a7
--- /dev/null
+++ b/gnu/home/services/upnp.scm
@@ -0,0 +1,55 @@
+;;; GNU Guix --- Functional package management for GNU
+;;; Copyright �� 2025 Sughosha <sughosha <at> disroot.org>
+;;;
+;;; This file is part of GNU Guix.
+;;;
+;;; GNU Guix is free software; you can redistribute it and/or modify it
+;;; under the terms of the GNU General Public License as published by
+;;; the Free Software Foundation; either version 3 of the License, or (at
+;;; your option) any later version.
+;;;
+;;; GNU Guix is distributed in the hope that it will be useful, but
+;;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+;;; GNU General Public License for more details.
+;;;
+;;; You should have received a copy of the GNU General Public License
+;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
+
+(define-module (gnu home services upnp)
+ #:use-module ((gnu build linux-container) #:select (%namespaces))
+ #:use-module (gnu services)
+ #:use-module (gnu home services)
+ ;; For the 'home-shepherd-service-type' mapping.
+ #:use-module (gnu home services shepherd)
+ #:use-module (gnu services upnp)
+ #:use-module (guix records)
+ #:export (home-readymedia-service-type)
+ #:re-export (readymedia-configuration
+ readymedia-configuration?
+ readymedia-configuration-readymedia
+ readymedia-configuration-port
+ readymedia-configuration-cache-directory
+ readymedia-configuration-extra-config
+ readymedia-configuration-friendly-name
+ readymedia-configuration-log-directory
+ readymedia-configuration-media-directories
+ readymedia-media-directory
+ readymedia-media-directory?
+ readymedia-media-directory-path
+ readymedia-media-directory-types))
+
+(define home-readymedia-service-type
+ (service-type
+ (inherit (system->home-service-type readymedia-service-type))
+ ;; system->home-service-type does not convert special-files-service-type to
+ ;; home-files-service-type, so redefine extensios
+ (extensions
+ (list (service-extension home-shepherd-service-type
+ (compose list readymedia-shepherd-service))
+ (service-extension home-activation-service-type
+ readymedia-activation)))
+ (default-value
+ (for-home
+ (readymedia-configuration
+ (media-directories '()))))))
diff --git a/gnu/local.mk b/gnu/local.mk
index 149ef8dff9a..6f7929bee8b 100644
--- a/gnu/local.mk
+++ b/gnu/local.mk
@@ -122,6 +122,7 @@ GNU_SYSTEM_MODULES = \
%D%/home/services/sway.scm \
%D%/home/services/syncthing.scm \
%D%/home/services/mcron.scm \
+ %D%/home/services/upnp.scm \
%D%/home/services/utils.scm \
%D%/home/services/xdg.scm \
%D%/image.scm \
diff --git a/gnu/services/upnp.scm b/gnu/services/upnp.scm
index c125c07af24..e4bafced53d 100644
--- a/gnu/services/upnp.scm
+++ b/gnu/services/upnp.scm
@@ -50,7 +50,9 @@ (define-module (gnu services upnp)
readymedia-media-directory-path
readymedia-media-directory-types
readymedia-media-directory?
- readymedia-service-type))
+ readymedia-service-type
+ readymedia-activation
+ readymedia-shepherd-service))
;;; Commentary:
;;;
@@ -72,14 +74,27 @@ (define-record-type* <readymedia-configuration>
(port readymedia-configuration-port
(default #f))
(cache-directory readymedia-configuration-cache-directory
- (default %readymedia-default-cache-directory))
+ (default (if for-home?
+ (string-append (or (getenv "XDG_CACHE_HOME")
+ (string-append
+ (getenv "HOME") "/.cache"))
+ "/readymedia")
+ %readymedia-default-cache-directory)))
(log-directory readymedia-configuration-log-directory
- (default %readymedia-default-log-directory))
+ (default (if for-home?
+ (string-append (or (getenv "XDG_STATE_HOME")
+ (string-append
+ (getenv "HOME")
+ "/.local/state"))
+ "/readymedia")
+ %readymedia-default-log-directory)))
(friendly-name readymedia-configuration-friendly-name
(default #f))
(media-directories readymedia-configuration-media-directories)
(extra-config readymedia-configuration-extra-config
- (default '())))
+ (default '()))
+ (home-service? syncthing-configuration-home-service?
+ (default for-home?) (innate)))
;; READYMEDIA-MEDIA-DIR is a record that indicates the path of a media folder
;; and the types of media included within it. Allowed individual types are the
@@ -96,9 +111,13 @@ (define-record-type* <readymedia-media-directory>
(define (readymedia-configuration->config-file config)
"Return the ReadyMedia/MiniDLNA configuration file corresponding to CONFIG."
(match-record config <readymedia-configuration>
- (port friendly-name cache-directory log-directory media-directories extra-config)
+ (port friendly-name cache-directory log-directory media-directories
+ extra-config home-service?)
(apply mixed-text-file
"minidlna.conf"
+ (if home-service?
+ (string-append "user=" (number->string (getuid)) "\n")
+ "")
"db_dir=" cache-directory "\n"
"log_dir=" log-directory "\n"
(if friendly-name
@@ -125,12 +144,12 @@ (define (readymedia-configuration->config-file config)
(define (readymedia-shepherd-service config)
"Return a least-authority ReadyMedia/MiniDLNA Shepherd service."
(match-record config <readymedia-configuration>
- (cache-directory log-directory media-directories)
+ (cache-directory log-directory media-directories home-service?)
(let ((minidlna-conf (readymedia-configuration->config-file config)))
(shepherd-service
(documentation "Run the ReadyMedia/MiniDLNA daemon.")
(provision '(readymedia))
- (requirement '(networking user-processes))
+ (requirement (if home-service? '() '(networking user-processes)))
(start
#~(make-forkexec-constructor
(list #$(least-authority-wrapper
@@ -159,8 +178,8 @@ (define (readymedia-shepherd-service config)
#$minidlna-conf
"-S")
#:log-file #$(string-append log-directory "/" %readymedia-log-file)
- #:user #$%readymedia-user-account
- #:group #$%readymedia-user-group))
+ #:user #$(if home-service? #f %readymedia-user-account)
+ #:group #$(if home-service? #f %readymedia-user-group)))
(stop #~(make-kill-destructor))))))
(define readymedia-accounts
@@ -178,7 +197,7 @@ (define readymedia-accounts
(define (readymedia-activation config)
"Set up directories for ReadyMedia/MiniDLNA."
(match-record config <readymedia-configuration>
- (cache-directory log-directory media-directories)
+ (cache-directory log-directory media-directories home-service?)
(with-imported-modules (source-module-closure '((gnu build activation)))
#~(begin
(use-modules (gnu build activation))
@@ -186,8 +205,10 @@ (define (readymedia-activation config)
(for-each (lambda (directory)
(unless (file-exists? directory)
(mkdir-p/perms directory
- (getpw #$%readymedia-user-account)
- #o775)))
+ (getpw #$(if home-service?
+ (getuid)
+ %readymedia-user-account))
+ (if home-service? #o755 #o775))))
(list #$cache-directory
#$log-directory
#$@(map readymedia-media-directory-path
--
2.48.1
Information forwarded
to
ludo <at> gnu.org, maxim.cournoyer <at> gmail.com, guix-patches <at> gnu.org
:
bug#77023
; Package
guix-patches
.
(Tue, 25 Mar 2025 14:30:02 GMT)
Full text and
rfc822 format available.
Message #17 received at 77023 <at> debbugs.gnu.org (full text, mbox):
* doc/guix.texi (DLNA/UPnP Services): Update ReadyMedia url.
Change-Id: Ief346066edd6b9e679f020a6ff8528856cf853d9
---
doc/guix.texi | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/doc/guix.texi b/doc/guix.texi
index 730fb457987..09d7ddbc16d 100644
--- a/doc/guix.texi
+++ b/doc/guix.texi
@@ -44152,7 +44152,7 @@ Miscellaneous Services
media streaming and device interoperability within a local network. For
now, this module provides the @code{readymedia-service-type}.
-@uref{https://sourceforge.net/projects/minidlna/, ReadyMedia} (formerly
+@uref{https://minidlna.sourceforge.net/, ReadyMedia} (formerly
known as MiniDLNA) is a DLNA/UPnP-AV media server. The project's
daemon, @code{minidlnad}, can serve media files (audio, pictures, and
video) to DLNA/UPnP-AV clients available on the network.
--
2.48.1
Information forwarded
to
guix-patches <at> gnu.org
:
bug#77023
; Package
guix-patches
.
(Tue, 25 Mar 2025 14:30:03 GMT)
Full text and
rfc822 format available.
Message #20 received at 77023 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/upnp.scm (readymedia): Update home-page.
Change-Id: I11f38874c362025e03fa3f0706e57b32d3706edd
---
gnu/packages/upnp.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gnu/packages/upnp.scm b/gnu/packages/upnp.scm
index 035d58344dd..2479f093d16 100644
--- a/gnu/packages/upnp.scm
+++ b/gnu/packages/upnp.scm
@@ -174,7 +174,7 @@ (define-public readymedia
libvorbis
sqlite
zlib))
- (home-page "https://sourceforge.net/projects/minidlna/")
+ (home-page "https://minidlna.sourceforge.net/")
(synopsis "DLNA/UPnP-AV media server")
(description "ReadyMedia (formerly known as MiniDLNA) is a simple media
server, which serves multimedia content to compatible clients on the network.
base-commit: 744cf07005745312ccddb549bb1bab5ab7031106
--
2.48.1
Information forwarded
to
guix-patches <at> gnu.org
:
bug#77023
; Package
guix-patches
.
(Tue, 25 Mar 2025 14:37:02 GMT)
Full text and
rfc822 format available.
Message #23 received at 77023 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/upnp.scm (readymedia): Update home-page.
Change-Id: I11f38874c362025e03fa3f0706e57b32d3706edd
---
gnu/packages/upnp.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gnu/packages/upnp.scm b/gnu/packages/upnp.scm
index 035d58344dd..2479f093d16 100644
--- a/gnu/packages/upnp.scm
+++ b/gnu/packages/upnp.scm
@@ -174,7 +174,7 @@ (define-public readymedia
libvorbis
sqlite
zlib))
- (home-page "https://sourceforge.net/projects/minidlna/")
+ (home-page "https://minidlna.sourceforge.net/")
(synopsis "DLNA/UPnP-AV media server")
(description "ReadyMedia (formerly known as MiniDLNA) is a simple media
server, which serves multimedia content to compatible clients on the network.
base-commit: 744cf07005745312ccddb549bb1bab5ab7031106
--
2.48.1
Information forwarded
to
ludo <at> gnu.org, maxim.cournoyer <at> gmail.com, guix-patches <at> gnu.org
:
bug#77023
; Package
guix-patches
.
(Tue, 25 Mar 2025 14:37:02 GMT)
Full text and
rfc822 format available.
Message #26 received at 77023 <at> debbugs.gnu.org (full text, mbox):
* doc/guix.texi (DLNA/UPnP Services): Update ReadyMedia url.
Change-Id: Ief346066edd6b9e679f020a6ff8528856cf853d9
---
doc/guix.texi | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/doc/guix.texi b/doc/guix.texi
index 730fb457987..09d7ddbc16d 100644
--- a/doc/guix.texi
+++ b/doc/guix.texi
@@ -44152,7 +44152,7 @@ Miscellaneous Services
media streaming and device interoperability within a local network. For
now, this module provides the @code{readymedia-service-type}.
-@uref{https://sourceforge.net/projects/minidlna/, ReadyMedia} (formerly
+@uref{https://minidlna.sourceforge.net/, ReadyMedia} (formerly
known as MiniDLNA) is a DLNA/UPnP-AV media server. The project's
daemon, @code{minidlnad}, can serve media files (audio, pictures, and
video) to DLNA/UPnP-AV clients available on the network.
--
2.48.1
Information forwarded
to
guix-patches <at> gnu.org
:
bug#77023
; Package
guix-patches
.
(Tue, 25 Mar 2025 14:47:02 GMT)
Full text and
rfc822 format available.
Message #29 received at 77023 <at> debbugs.gnu.org (full text, mbox):
Hi,
I think you forgot patch 3/3. :-)
Also, please make sure the series applies above
cfe68843a8bf8cded75e3901debc13023d1225b3.
Ludo’.
Information forwarded
to
guix-patches <at> gnu.org
:
bug#77023
; Package
guix-patches
.
(Wed, 26 Mar 2025 08:26:01 GMT)
Full text and
rfc822 format available.
Message #32 received at 77023 <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
On Tuesday, March 25, 2025 8:16:35 PM GMT+5:30 Ludovic Courtès wrote:
> Hi,
>
> I think you forgot patch 3/3. :-)
>
> Also, please make sure the series applies above
> cfe68843a8bf8cded75e3901debc13023d1225b3.
>
> Ludo’.
I don't know what is wrong with the 3rd patch, I am not able to send the 3rd
patch only, the mail is not getting delivered. I am getting an email saying
"Undelivered Mail Returned to Sender" (you can see the attatchments).
--
Sughosha
[attachment.1 (application/x-troff-man, attachment)]
[attachment.2 (application/x-troff-man, attachment)]
[signature.asc (application/pgp-signature, inline)]
Information forwarded
to
guix-patches <at> gnu.org
:
bug#77023
; Package
guix-patches
.
(Wed, 26 Mar 2025 08:34:02 GMT)
Full text and
rfc822 format available.
Message #35 received at 77023 <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
On Tuesday, March 25, 2025 8:16:35 PM GMT+5:30 Ludovic Courtès wrote:
> Hi,
>
> I think you forgot patch 3/3. :-)
>
> Also, please make sure the series applies above
> cfe68843a8bf8cded75e3901debc13023d1225b3.
>
> Ludo’.
I don't know what is wrong with this patch, I am not able to send it with 'git
send-email', the mail is not getting delivered. This is happening only to this
patch. So I am now sending it as an attatchment to this.
--
Sughosha
[attachment.1 (application/x-troff-man, attachment)]
[attachment.2 (application/x-troff-man, attachment)]
[signature.asc (application/pgp-signature, inline)]
Information forwarded
to
guix-patches <at> gnu.org
:
bug#77023
; Package
guix-patches
.
(Tue, 01 Apr 2025 07:55:07 GMT)
Full text and
rfc822 format available.
Message #38 received at 77023 <at> debbugs.gnu.org (full text, mbox):
Hi,
Sughosha <sughosha <at> disroot.org> skribis:
> I don't know what is wrong with this patch, I am not able to send it with 'git
> send-email', the mail is not getting delivered. This is happening only to this
> patch. So I am now sending it as an attatchment to this.
I didn’t get the patch here; the attachments are SMTP error logs.
Ludo’.
Information forwarded
to
guix-patches <at> gnu.org
:
bug#77023
; Package
guix-patches
.
(Thu, 03 Apr 2025 10:57:01 GMT)
Full text and
rfc822 format available.
Message #41 received at 77023 <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
Sorry, even as an attachment, ii is failing to send. Could creating a new issue work?
On 1 April 2025 1:24:43 pm IST, "Ludovic Courtès" <ludo <at> gnu.org> wrote:
>Hi,
>
>Sughosha <sughosha <at> disroot.org> skribis:
>
>> I don't know what is wrong with this patch, I am not able to send it with 'git
>> send-email', the mail is not getting delivered. This is happening only to this
>> patch. So I am now sending it as an attatchment to this.
>
>I didn’t get the patch here; the attachments are SMTP error logs.
>
>Ludo’.
Sughosha
[Message part 2 (text/html, inline)]
This bug report was last modified 5 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.