~ngraves/devel

This thread contains a patchset. You're looking at the original emails, but you may wish to use the patch review UI. Review patch
4 2

[PATCH 1/4] Rename function to be similarly descriptive

Details
Message ID
<20241022224135.501696-1-jgart@dismail.de>
DKIM signature
pass
Download raw message
Patch: +3 -3
---

Oops, sent the wrong patch series.

Here's v2.

all best,

jgart

https://whereis.みんな/

 ispdb.scm | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/ispdb.scm b/ispdb.scm
index f4d12d9..91bf33c 100644
--- a/ispdb.scm
+++ b/ispdb.scm
@@ -116,7 +116,7 @@ environment variable name like \"XDG_CONFIG_HOME\"; SUFFIX is a suffix like
        ((string? value) (string->number value))
        (else (raise (format #f "Unknown port: ~a" value)))))

(define sanitize-type
(define sanitize-email-protocol-type
  (match-lambda
    ("imap" 'IMAP)
    ("pop3" 'POP3)
@@ -178,7 +178,7 @@ environment variable name like \"XDG_CONFIG_HOME\"; SUFFIX is a suffix like
     ;; <password>optional: the user's password</password>
     . ,rest)
    (make-email-server-config
     (sanitize-type type)
     (sanitize-email-protocol-type type)
     hostname
     (sanitize-port port)
     (sanitize-socket-type socket-type)
@@ -202,7 +202,7 @@ environment variable name like \"XDG_CONFIG_HOME\"; SUFFIX is a suffix like
     ;; <password>optional: the user's password</password>
     . ,rest)
    (make-email-server-config
     (sanitize-type type)
     (sanitize-email-protocol-type type)
     hostname
     (sanitize-port port)
     (sanitize-socket-type socket-type)
-- 
2.46.0

[PATCH 3/4] Add guix manifest

Details
Message ID
<20241022224135.501696-3-jgart@dismail.de>
In-Reply-To
<20241022224135.501696-1-jgart@dismail.de> (view parent)
DKIM signature
pass
Download raw message
Patch: +3 -0
---
 manifest.scm | 3 +++
 1 file changed, 3 insertions(+)
 create mode 100644 manifest.scm

diff --git a/manifest.scm b/manifest.scm
new file mode 100644
index 0000000..bd8df5d
--- /dev/null
+++ b/manifest.scm
@@ -0,0 +1,3 @@
(specifications->manifest
  (list "guile" 
        "guile-gcrypt"))
-- 
2.46.0

[PATCH 2/4] Add gitignore

Details
Message ID
<20241022224135.501696-2-jgart@dismail.de>
In-Reply-To
<20241022224135.501696-1-jgart@dismail.de> (view parent)
DKIM signature
pass
Download raw message
Patch: +1 -0
---
 .gitignore | 1 +
 1 file changed, 1 insertion(+)
 create mode 100644 .gitignore

diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..caec64c
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
test-all-domains.log
\ No newline at end of file
-- 
2.46.0

[PATCH 4/4] Add information about running the tests

Details
Message ID
<20241022224135.501696-4-jgart@dismail.de>
In-Reply-To
<20241022224135.501696-1-jgart@dismail.de> (view parent)
DKIM signature
pass
Download raw message
Patch: +9 -0
---
 README.md | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/README.md b/README.md
index 52340d1..36bbd24 100644
--- a/README.md
+++ b/README.md
@@ -16,3 +16,12 @@ A cache is implemented in `XDG_CACHE_HOME/guile-ispdb`. The default TTL is set t
 - [ ] Currently file format almost fully complies with the [config file format](https://www.bucksch.org/1/projects/thunderbird/autoconfiguration/config-file-format.html). The documentation option can still clash.
 - [ ] Support for [additional configuration servers](https://www.bucksch.org/1/projects/thunderbird/autoconfiguration/#Configuration_server_at_ISP) unimplemented
 - [ ] RDE integration

## Running Tests

To run the tests do the following

```sh
guix shell 
guile -L . -l ispdb-tests.scm 
```
-- 
2.46.0
Details
Message ID
<87bjzbxrvu.fsf@ngraves.fr>
In-Reply-To
<20241022224135.501696-1-jgart@dismail.de> (view parent)
DKIM signature
pass
Download raw message
Thanks jgart, applied! I also removed trailing spaces from your commits ;)

-- 
Best regards,
Nicolas Graves
Reply to thread Export thread (mbox)