unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* bug#26967: alpine: provide system-wide config
@ 2017-05-17 17:31 ng0
  2017-05-30 21:28 ` Ricardo Wurmus
  0 siblings, 1 reply; 5+ messages in thread
From: ng0 @ 2017-05-17 17:31 UTC (permalink / raw)
  To: 26967

[-- Attachment #1: Type: text/plain, Size: 1596 bytes --]

Without this patch, alpine silently(?) complains until a
$HOME/.pinerc exists:

Global config "/gnu/store/57k152vswq14m2ialxacmnrkar17vcan-alpine-2.21/lib/pine.conf" is default
Personal config "/home/user/.pinerc" is default
Exceptions config not set on cmdline
  checking for default "/home/user/.pinercex" in pinerc dir
    no, there is no exceptions config
    
      Global config:     /gnu/store/57k152vswq14m2ialxacmnrkar17vcan-alpine-2.21/lib/pine.conf
        Personal config:   /home/user/.pinerc
          Exceptions config: <none>
            Fixed config:      /gnu/store/57k152vswq14m2ialxacmnrkar17vcan-alpine-2.21/lib/pine.conf.fixed
            
            reading_pinerc "/gnu/store/57k152vswq14m2ialxacmnrkar17vcan-alpine-2.21/lib/pine.conf"
            so_get error: /gnu/store/57k152vswq14m2ialxacmnrkar17vcan-alpine-2.21/lib/pine.conf : No such file or directory
            Open failed: No such file or directory
            reading_pinerc "/home/user/.pinerc"
            Read 24568 characters:
            reading_pinerc "/gnu/store/57k152vswq14m2ialxacmnrkar17vcan-alpine-2.21/lib/pine.conf.fixed"
            so_get error: /gnu/store/57k152vswq14m2ialxacmnrkar17vcan-alpine-2.21/lib/pine.conf.fixed : No such file or directory
            Open failed: No such file or directory
            

With this patch, we profive these missing files.
The way they are created is copied from slackware and seems to be
the recommended way of providing them, as no such file exists in
the distribution of alpine.
-- 
https://pragmatique.xyz
PGP: https://people.pragmatique.xyz/ng0/

[-- Attachment #2: 0001-gnu-alpine-Add-generate-system-pine.conf-phase.patch --]
[-- Type: text/plain, Size: 1956 bytes --]

From 7a7995cb5718c133124ae29fd8276fbe2ff57a35 Mon Sep 17 00:00:00 2001
From: ng0 <ng0@no-reply.pragmatique.xyz>
Date: Tue, 16 May 2017 22:28:57 +0000
Subject: [PATCH] gnu: alpine: Add 'generate-system-pine.conf' phase.

* gnu/packages/mail.scm (alpine)[arguments]: Add new 'generate-system-pine.conf'
phase to provide system-wide configs which are expected by alpine.
---
 gnu/packages/mail.scm | 20 +++++++++++++++++++-
 1 file changed, 19 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm
index b4dfef6ec..ecb49af0b 100644
--- a/gnu/packages/mail.scm
+++ b/gnu/packages/mail.scm
@@ -2264,7 +2264,25 @@ operators and scripters.")
              (substitute* (list "alpine/Makefile.in"
                                 "web/src/alpined.d/Makefile.in")
                (("`date`") "1970-01-01"))
-             #t)))))
+             #t))
+         (add-after 'install 'generate-system-pine.conf
+           (lambda* (#:key outputs #:allow-other-keys)
+             ;; Alpine will silently complain if no system-wide
+             ;; default config is present. This is the recommended
+             ;; way of generating such a config.
+             (let* ((out (assoc-ref outputs "out"))
+                    (alpine (string-append out "/bin/alpine"))
+                    (lib (string-append out "/lib")))
+               (mkdir-p lib)
+               (with-output-to-file
+                   (string-append lib "/pine.conf")
+                 (lambda _
+                   (zero? (system* alpine "-conf"))
+                   out))
+               ;; pine.conf.fixed is expected aswell, so pine.conf.fixed
+               ;; is equal to pine.conf in our system.
+               (symlink (string-append lib "/pine.conf")
+                        (string-append lib "/pine.conf.fixed"))))))))
     (inputs
      `(("ncurses" ,ncurses)
        ("openssl" ,openssl)
-- 
2.13.0


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

* bug#26967: alpine: provide system-wide config
  2017-05-17 17:31 bug#26967: alpine: provide system-wide config ng0
@ 2017-05-30 21:28 ` Ricardo Wurmus
  2017-05-30 23:03   ` ng0
  0 siblings, 1 reply; 5+ messages in thread
From: Ricardo Wurmus @ 2017-05-30 21:28 UTC (permalink / raw)
  To: ng0; +Cc: 26967


ng0 <ng0@pragmatique.xyz> writes:

> Without this patch, alpine silently(?) complains until a
> $HOME/.pinerc exists:

How does it complain “silently”?  :)

> The way they are created is copied from slackware and seems to be
> the recommended way of providing them, as no such file exists in
> the distribution of alpine.

Recommended by whom?  I see in the manual [1] that

    $prefix/lib/pine.conf (Pine's global configuration file)
    $prefix/lib/pine.conf.fixed (Non-overridable global configuration file)

should exist, but it doesn’t say what should be in them.  Could they
just be empty?  Given that one of them is for non-overridable global
configurations I’d rather not fill them.

[1]: https://www.washington.edu/alpine/tech-notes/installation.html#files-unix

WDYT?

-- 
Ricardo

GPG: BCA6 89B6 3655 3801 C3C6  2150 197A 5888 235F ACAC
https://elephly.net

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

* bug#26967: alpine: provide system-wide config
  2017-05-30 21:28 ` Ricardo Wurmus
@ 2017-05-30 23:03   ` ng0
  2017-08-14 12:04     ` [bug#26967] " ng0
  0 siblings, 1 reply; 5+ messages in thread
From: ng0 @ 2017-05-30 23:03 UTC (permalink / raw)
  To: 26967


[-- Attachment #1.1: Type: text/plain, Size: 1884 bytes --]

Ricardo Wurmus transcribed 0.9K bytes:
> 
> ng0 <ng0@pragmatique.xyz> writes:
> 
> > Without this patch, alpine silently(?) complains until a
> > $HOME/.pinerc exists:
> 
> How does it complain “silently”?  :)

I removed my .pinerc symlink and this is what happens. I should've
described the problem before I sent this:

Upon first start, a .pinerc is generated from a global file[1], but
we also get a ".pine-debug1" and with every start a new one this
with a number increase. Is it just because of these files? I'm not
a alpine user.. This .pine-debug1 is appended. Twice because I forgot
how to remove attachments.

1: I _guess_ ... the existing file is actually not existing so I don't
know what alpine does here. Fixing it the way I did it seemed like
the first possible solution to me.

> > The way they are created is copied from slackware and seems to be
> > the recommended way of providing them, as no such file exists in
> > the distribution of alpine.
> 
> Recommended by whom?  I see in the manual [1] that

Actually this is a comment in a file I can longer find (slackbuilds?)
which came up when I searched for this problem.

>     $prefix/lib/pine.conf (Pine's global configuration file)
>     $prefix/lib/pine.conf.fixed (Non-overridable global configuration file)
> 
> should exist, but it doesn’t say what should be in them.  Could they
> just be empty?  Given that one of them is for non-overridable global
> configurations I’d rather not fill them.
> 
> [1]: https://www.washington.edu/alpine/tech-notes/installation.html#files-unix
                        ^
Keep in mind that this  |-- is not the alpine we use.
If it is 

> WDYT?
> 
> -- 
> Ricardo
> 
> GPG: BCA6 89B6 3655 3801 C3C6  2150 197A 5888 235F ACAC
> https://elephly.net
> 
> 


-- 
ng0
OpenPG: A88C8ADD129828D7EAC02E52E22F9BBFEE348588

[-- Attachment #1.2: .pine-debug1 --]
[-- Type: text/plain, Size: 18485 bytes --]

Debug output of the Alpine program (debug=2 debug_imap=0). Version 2.21 (LNX 202 2017-01-01)
Tue May 30 22:46:56 2017

This version uses all.patch:
VERSION=2 created on Sun Feb  5 17:11:49 MST 2017

Starting after the reading_pinerc calls, the data in this file should
be encoded as UTF-8. Before that it will be in the user's native charset.
 
"alpine" <no args> (PID=1814)

Setting home dir from $HOME: "/home/user"

 -- init_pinerc --

Global config "/gnu/store/h8l61a5aia625wvjcymmp628hzx5y629-alpine-2.21/lib/pine.conf" is default
Personal config "/home/user/.pinerc" is default
Exceptions config not set on cmdline
  checking for default "/home/user/.pinercex" in pinerc dir
  no, there is no exceptions config

  Global config:     /gnu/store/h8l61a5aia625wvjcymmp628hzx5y629-alpine-2.21/lib/pine.conf
  Personal config:   /home/user/.pinerc
  Exceptions config: <none>
  Fixed config:      /gnu/store/h8l61a5aia625wvjcymmp628hzx5y629-alpine-2.21/lib/pine.conf.fixed

reading_pinerc "/gnu/store/h8l61a5aia625wvjcymmp628hzx5y629-alpine-2.21/lib/pine.conf"
so_get error: /gnu/store/h8l61a5aia625wvjcymmp628hzx5y629-alpine-2.21/lib/pine.conf : No such file or directory
Open failed: No such file or directory
reading_pinerc "/home/user/.pinerc"
Read 24568 characters:
reading_pinerc "/gnu/store/h8l61a5aia625wvjcymmp628hzx5y629-alpine-2.21/lib/pine.conf.fixed"
so_get error: /gnu/store/h8l61a5aia625wvjcymmp628hzx5y629-alpine-2.21/lib/pine.conf.fixed : No such file or directory
Open failed: No such file or directory
======= Current_val options set =======
          smtp-server : localhost
          nntp-server : news.gmane.org
           inbox-path : inbox
          default-fcc : sent-mail
 default-saved-msg-fo : saved-messages
     postponed-folder : postponed-msgs
         trash-folder : Trash
       signature-file : .signature
         feature-list : prefer-plain-text
                      : scramble-message-id
                      : suppress-user-agent-when-sending
                      : enable-incoming-folders
                      : downgrade-multipart-to-text
      customized-hdrs : From: ng0 <gnu.org will not render this anyway, here was a full email address>
   viewer-margin-left : 0
  viewer-margin-right : 4
 quote-suppression-th : 0
  saved-msg-name-rule : default-folder
        fcc-name-rule : default-fcc
             sort-key : arrival
      thread-sort-key : thread
   addrbook-sort-rule : fullname-with-lists-last
     folder-sort-rule : alphabetical
    goto-default-rule : inbox-or-folder-in-recent-collection
 incoming-startup-rul : first-unseen
         pruning-rule : ask-ask
   folder-reopen-rule : ask-no-n
 threading-display-st : struct
 threading-index-styl : exp
 threading-indicator- : >
 threading-expanded-c : .
 threading-lastreply- : \
 display-character-se : UTF-8
 posting-character-se : UTF-8
 composer-wrap-column : 74
  reply-indent-string : > 
         reply-leadin : default
 empty-header-message : undisclosed-recipients
 use-only-domain-name : no
        bugs-fullname : Sorry No Address
         bugs-address : nobody
     suggest-fullname : Sorry No Address
      suggest-address : nobody
       local-fullname : Local Support
        local-address : postmaster
  kblock-passwd-count : 1
 keyword-surrounding- : "{" "} "
 opening-text-separat :  - 
       viewer-overlap : 2
        scroll-margin : 0
 status-message-delay : 0
        busy-cue-rate : 12
 mailcap-check-interv : 60
  mail-check-interval : 150
 mail-check-interval- : 0
 maildrop-check-minim : 60
           nntp-range : 0
 max-remote-connectio : 3
 incoming-check-timeo : 5
 incoming-check-inter : 180
 incoming-check-inter : 180
    dead-letter-files : 1
 newmail-window-width : 80
       mail-directory : mail
   folder-collections : mail/[]
     news-collections : {news.gmane.org/nntp}#news.[]
         address-book : .addressbook
     standard-printer : lpr
 last-time-prune-ques : 117.5
    last-version-used : 6.21
   user-input-timeout : 0
 remote-abook-history : 3
 remote-abook-validit : 5
              printer : attached-to-ansi
       elm-style-save : no
      header-in-reply : no
        feature-level : sappling
      old-style-reply : no
       save-by-sender : no
          color-style : no-color
 current-indexline-st : flip-colors
 titlebar-color-style : default
 normal-foreground-co : 000,000,000
 normal-background-co : 255,255,255
 title-foreground-col : 000,000,000
 title-background-col : 255,255,000
 title-closed-foregro : 255,255,255
 title-closed-backgro : 255,000,000
 keylabel-foreground- : 000,000,000
 keylabel-background- : 255,255,255
 selectable-item-fore : 000,000,000
 selectable-item-back : 255,255,255
 meta-message-foregro : 000,000,000
 meta-message-backgro : 255,255,000
 quote1-foreground-co : 000,000,000
 quote1-background-co : 000,217,217
 quote2-foreground-co : 000,000,000
 quote2-background-co : 204,214,000
 quote3-foreground-co : 000,000,000
 quote3-background-co : 000,214,000
 signature-foreground : 000,000,255
 signature-background : 255,255,255
 header-general-foreg : 000,000,000
 header-general-backg : 255,255,255
 index-to-me-foregrou : 000,000,000
 index-to-me-backgrou : 000,174,174
 index-important-fore : 240,240,240
 index-important-back : 174,000,000
 index-answered-foreg : 255,000,000
 index-answered-backg : 174,174,000
 index-new-foreground : 240,240,240
 index-new-background : 174,000,174
 index-opening-foregr : 192,192,192
 index-opening-backgr : 255,255,255
 smime-public-cert-di : .alpine-smime/public
 smime-private-key-di : .alpine-smime/private
 smime-cacert-directo : .alpine-smime/ca
       wp-indexheight : 24
          wp-aggstate : 1
             wp-state : ""
======= Command_line_val options set =======
======= User_val options set (/home/user/.pinerc) =======
        personal-name : ng0
          smtp-server : localhost
          nntp-server : news.gmane.org
         feature-list : prefer-plain-text
                      : scramble-message-id
                      : suppress-user-agent-when-sending
                      : enable-incoming-folders
                      : downgrade-multipart-to-text
      customized-hdrs : From: ng0 <ng0@pragmatique.xyz>
     news-collections : {news.gmane.org/nntp}#news.[]
 last-time-prune-ques : 117.5
    last-version-used : 6.21
======= PostloadUser_val options set (postload) =======
======= Global_val options set (/gnu/store/h8l61a5aia625wvjcymmp628hzx5y629-alpine-2.21/lib/pine.conf) =======
           inbox-path : inbox
          default-fcc : sent-mail
 default-saved-msg-fo : saved-messages
     postponed-folder : postponed-msgs
         trash-folder : Trash
       signature-file : .signature
   viewer-margin-left : 0
  viewer-margin-right : 4
 quote-suppression-th : 0
  saved-msg-name-rule : default-folder
        fcc-name-rule : default-fcc
             sort-key : arrival
      thread-sort-key : thread
   addrbook-sort-rule : fullname-with-lists-last
     folder-sort-rule : alphabetical
    goto-default-rule : inbox-or-folder-in-recent-collection
 incoming-startup-rul : first-unseen
         pruning-rule : ask-ask
   folder-reopen-rule : ask-no-n
 threading-display-st : struct
 threading-index-styl : exp
 threading-indicator- : >
 threading-expanded-c : .
 threading-lastreply- : \
 display-character-se : UTF-8
 posting-character-se : UTF-8
 composer-wrap-column : 74
  reply-indent-string : > 
         reply-leadin : default
 empty-header-message : undisclosed-recipients
 use-only-domain-name : no
        bugs-fullname : Sorry No Address
         bugs-address : nobody
     suggest-fullname : Sorry No Address
      suggest-address : nobody
       local-fullname : Local Support
        local-address : postmaster
  kblock-passwd-count : 1
 keyword-surrounding- : "{" "} "
 opening-text-separat :  - 
       viewer-overlap : 2
        scroll-margin : 0
 status-message-delay : 0
        busy-cue-rate : 12
 mailcap-check-interv : 60
  mail-check-interval : 150
 mail-check-interval- : 0
 maildrop-check-minim : 60
           nntp-range : 0
 max-remote-connectio : 3
 incoming-check-timeo : 5
 incoming-check-inter : 180
 incoming-check-inter : 180
    dead-letter-files : 1
 newmail-window-width : 80
       mail-directory : mail
   folder-collections : mail/[]
         address-book : .addressbook
     standard-printer : lpr
   user-input-timeout : 0
 remote-abook-history : 3
 remote-abook-validit : 5
              printer : attached-to-ansi
       elm-style-save : no
      header-in-reply : no
        feature-level : sappling
      old-style-reply : no
       save-by-sender : no
          color-style : no-color
 current-indexline-st : flip-colors
 titlebar-color-style : default
 normal-foreground-co : 000,000,000
 normal-background-co : 255,255,255
 title-foreground-col : 000,000,000
 title-background-col : 255,255,000
 title-closed-foregro : 255,255,255
 title-closed-backgro : 255,000,000
 folder-foreground-co : 000,000,000
 directory-foreground : 000,000,000
 folder-list-text-for : 000,000,000
 meta-message-foregro : 000,000,000
 meta-message-backgro : 255,255,000
 quote1-foreground-co : 000,000,000
 quote1-background-co : 000,217,217
 quote2-foreground-co : 000,000,000
 quote2-background-co : 204,214,000
 quote3-foreground-co : 000,000,000
 quote3-background-co : 000,214,000
 signature-foreground : 000,000,255
 signature-background : 255,255,255
 index-to-me-foregrou : 000,000,000
 index-to-me-backgrou : 000,174,174
 index-important-fore : 240,240,240
 index-important-back : 174,000,000
 index-answered-foreg : 255,000,000
 index-answered-backg : 174,174,000
 index-new-foreground : 240,240,240
 index-new-background : 174,000,174
 index-opening-foregr : 192,192,192
 index-opening-backgr : 255,255,255
 smime-public-cert-di : .alpine-smime/public
 smime-private-key-di : .alpine-smime/private
 smime-cacert-directo : .alpine-smime/ca
       wp-indexheight : 24
          wp-aggstate : 1
             wp-state : ""
======= Fixed_val options set (NO pine.conf.fixed) =======
========== Feature settings ==========
     allow-changing-from
  no-alternate-compose-menu
  no-alternate-role-menu
  no-compose-cancel-confirm-uses-yes
  no-compose-rejects-unqualified-addrs
  no-compose-send-offers-first-filter
  no-compose-cut-from-cursor
  no-compose-maps-delete-key-to-ctrl-d
  no-quell-dead-letter-on-cancel
     enable-alternate-editor-cmd
  no-enable-alternate-editor-implicitly
     enable-search-and-replace
  no-enable-sigdashes
  no-quell-mailchecks-composing-except-inbox
  no-quell-mailchecks-composing-inbox
  no-quell-user-lookup-in-passwd-file
  no-spell-check-before-sending
  no-alternate-reply-menu
  no-copy-to-address-to-from-if-it-is-us
  no-enable-reply-indent-string-editing
  no-include-attachments-in-reply
  no-include-header-in-reply
  no-include-text-in-reply
  no-reply-always-uses-reply-to
  no-signature-at-bottom
  no-strip-from-sigdashes-on-reply
  no-forward-as-attachment
  no-preserve-original-fields
  no-disable-sender
  no-use-sender-not-x-sender
  no-quell-flowed-text
     downgrade-multipart-to-text
     enable-8bit-esmtp-negotiation
  no-enable-background-sending
  no-enable-delivery-status-notification
  no-enable-verbose-smtp-posting
  no-fcc-without-attachments
  no-fcc-on-bounce
  no-return-path-uses-domain-name
  no-mark-fcc-seen
  no-fcc-only-without-confirm
  no-send-without-confirm
  no-strip-whitespace-before-send
  no-warn-if-blank-fcc
  no-warn-if-blank-subject
  no-warn-if-blank-to-and-cc-and-newsgroups
  no-combined-folder-display
  no-combined-subdirectory-display
  no-enable-lame-list-mode
  no-enable-dot-folders
     enable-incoming-folders
  no-enable-incoming-folders-checking
  no-incoming-checking-includes-total
  no-incoming-checking-uses-recent
  no-expanded-view-of-folders
  no-quell-empty-directories
  no-separate-folder-and-directory-entries
  no-single-column-folder-list
  no-sort-default-fcc-alpha
  no-sort-default-save-alpha
  no-vertical-folder-list
  no-use-courier-folder-list
  no-combined-addrbook-display
  no-expanded-view-of-addressbooks
  no-expanded-view-of-distribution-lists
  no-ldap-result-to-addrbook-add
  no-auto-open-next-unread
  no-enable-circular-tab
  no-continue-tab-without-confirm
  no-convert-dates-to-localtime
     delete-skips-deleted
  no-disable-index-locale-dates
  no-enable-cruise-mode
  no-enable-cruise-mode-delete
     mark-for-me-in-group
     mark-for-cc
  no-next-thread-without-confirm
  no-return-to-inbox-without-confirm
  no-show-sort
  no-tab-uses-unseen-for-next-folder
  no-tab-visits-next-new-message-only
  no-thread-index-shows-important-color
  no-thread-sorts-by-arrival
  no-enhanced-fancy-thread-support
  no-enable-msg-view-addresses
  no-enable-msg-view-attachments
     enable-msg-view-urls
     enable-msg-view-web-hostnames
  no-enable-msg-view-long-url
  no-enable-msg-view-forced-arrows
  no-pass-c1-control-characters-as-is
  no-pass-control-characters-as-is
     prefer-plain-text
  no-quell-charset-warning
  no-quell-server-after-link-in-html
  no-compose-sets-newsgroup-without-confirm
  no-enable-8bit-nntp-posting
  no-enable-multiple-newsrcs
  no-mult-newsrc-hostnames-as-typed
  no-hide-nntp-path
     news-approximates-new-status
  no-news-deletes-across-groups
  no-news-offers-catchup-on-close
  no-news-post-without-validation
  no-news-read-in-newsrc-order
     nntp-search-uses-overview
  no-predict-nntp-server
  no-quell-extra-post-prompt
  no-enable-print-via-y-command
  no-print-formfeed-between-messages
  no-print-includes-from-line
  no-print-index-enabled
  no-print-offers-custom-cmd-prompt
     enable-aggregate-command-set
     enable-arrow-navigation
     enable-arrow-navigation-relaxed
     enable-bounce-cmd
     enable-exit-via-lessthan-command
     enable-flag-cmd
  no-enable-flag-screen-implicitly
     enable-flag-screen-keyword-shortcut
  no-enable-full-header-and-text
     enable-full-header-cmd
     enable-goto-in-file-browser
     enable-jump-shortcut
     enable-partial-match-lists
     enable-tab-completion
     enable-unix-pipe-cmd
  no-quell-full-header-auto-reset
  no-allow-talk
  no-assume-slow-link
  no-auto-move-read-msgs
  no-auto-move-read-msgs-using-rules
  no-auto-unselect-after-apply
     auto-unzoom-after-apply
     auto-zoom-after-select
  no-busy-cue-spinner-only
  no-check-newmail-when-quitting
  no-confirm-role-even-for-default
  no-disable-keymenu
  no-disable-password-caching
  no-disable-regular-expression-matching-for-alternate-addresses
  no-disable-save-input-history
  no-disable-take-fullname-in-addresses
  no-disable-take-last-comma-first
  no-disable-terminal-reset-for-display-filters
  no-enable-dot-files
  no-enable-fast-recent-test
  no-enable-mail-check-cue
  no-enable-mailcap-param-substitution
  no-enable-mouse-in-xterm
  no-enable-newmail-in-xterm-icon
  no-enable-newmail-short-text-in-icon
  no-enable-suspend
  no-enable-take-export
  no-enable-rules-under-take
  no-expose-hidden-config
  no-expunge-only-manually
  no-expunge-without-confirm
  no-expunge-without-confirm-everywhere
  no-force-arrow-cursor
  no-ignore-size-changes
  no-maildrops-preserve-state
  no-offer-expunge-of-inbox
  no-offer-expunge-of-stayopen-folders
  no-preopen-stayopen-folders
  no-preserve-start-stop-characters
  no-quell-folder-internal-msg
  no-quell-partial-fetching
  no-prune-uses-yyyy-mm
  no-quit-without-confirm
  no-quote-replace-nonflowed
     save-aggregates-copy-sequence
  no-save-partial-msg-without-confirm
  no-save-will-advance
  no-save-will-not-delete
  no-save-will-quote-leading-froms
     scramble-message-id
  no-select-without-confirm
  no-show-cursor
  no-show-plain-text-internally
  no-show-selected-in-boldface
  no-slash-collapses-entire-thread
  no-suppress-asterisks-in-password-prompt
  no-quell-attachment-extension-warn
  no-quell-attachment-extra-prompt
  no-quell-berkeley-format-timezone
  no-quell-content-id
  no-quell-filtering-done-message
  no-quell-filtering-messages
  no-quell-imap-envelope-update
  no-quell-lock-failure-warnings
  no-quell-maildomain-warning
  no-quell-news-envelope-update
  no-quell-status-message-beeping
  no-quell-timezone-comment-when-sending
     suppress-user-agent-when-sending
  no-tab-checks-recent
  no-termdef-takes-precedence
  no-try-alternative-authentication-driver-first
  no-unselect-will-not-advance
  no-use-current-dir
  no-use-function-keys
  no-use-regular-startup-rule-for-stayopen-folders
  no-use-resent-to-in-rules
  no-use-subshell-for-suspend
  no-use-system-translation
  no-disable-config-cmd
  no-disable-keyboard-lock-cmd
  no-disable-password-cmd
  no-disable-pipes-in-sigs
  no-disable-pipes-in-templates
  no-disable-roles-setup-cmd
  no-disable-roles-sig-edit
  no-disable-roles-template-edit
  no-disable-setlocale-collate
  no-disable-shared-namespaces
  no-disable-signature-edit-cmd
     new-thread-on-blank-subject
  no-quell-personal-name-prompt
  no-quell-user-id-prompt
  no-smime-dont-do-smime
  no-smime-encrypt-by-default
  no-smime-remember-passphrase
  no-smime-sign-by-default
     smime-use-store-only
  no-selectable-item-nobold
  no-send-confirms-only-expanded
  no-enable-jump-cmd
  no-enable-newmail-sound
  no-render-html-internally
Userid: user
Fullname: "ng0"
Incomplete maildomain "localhost".
Return address in mail you send may be incorrect.
User domain name being used ""
Local Domain name being used "localhost"
Host name being used "localhost"
Mail Domain name being used (by c-client too) "localhost"
new win size -----<46 194>------
Terminal type: xterm
About to open folder "INBOX"    inbox is: "INBOX"
Opened folder "inbox" with 0 messages
Sorting by Arrival


    ---- MAIN_MENU_SCREEN ----


    ---- QUIT SCREEN ----
Want_to read: Down Arrow (0x40000101)
Want_to read: Down Arrow (0x40000101)
Want_to read: y (0x79)
goodnight_gracey:
- trim_remote_adrbks -
expunge_and_close: "INBOX"
- completely_done_with_adrbks -
about to end_tty_driver
goodnight_gracey finished

[-- Attachment #1.3: .pine-debug1 --]
[-- Type: text/plain, Size: 18485 bytes --]

Debug output of the Alpine program (debug=2 debug_imap=0). Version 2.21 (LNX 202 2017-01-01)
Tue May 30 22:46:56 2017

This version uses all.patch:
VERSION=2 created on Sun Feb  5 17:11:49 MST 2017

Starting after the reading_pinerc calls, the data in this file should
be encoded as UTF-8. Before that it will be in the user's native charset.
 
"alpine" <no args> (PID=1814)

Setting home dir from $HOME: "/home/user"

 -- init_pinerc --

Global config "/gnu/store/h8l61a5aia625wvjcymmp628hzx5y629-alpine-2.21/lib/pine.conf" is default
Personal config "/home/user/.pinerc" is default
Exceptions config not set on cmdline
  checking for default "/home/user/.pinercex" in pinerc dir
  no, there is no exceptions config

  Global config:     /gnu/store/h8l61a5aia625wvjcymmp628hzx5y629-alpine-2.21/lib/pine.conf
  Personal config:   /home/user/.pinerc
  Exceptions config: <none>
  Fixed config:      /gnu/store/h8l61a5aia625wvjcymmp628hzx5y629-alpine-2.21/lib/pine.conf.fixed

reading_pinerc "/gnu/store/h8l61a5aia625wvjcymmp628hzx5y629-alpine-2.21/lib/pine.conf"
so_get error: /gnu/store/h8l61a5aia625wvjcymmp628hzx5y629-alpine-2.21/lib/pine.conf : No such file or directory
Open failed: No such file or directory
reading_pinerc "/home/user/.pinerc"
Read 24568 characters:
reading_pinerc "/gnu/store/h8l61a5aia625wvjcymmp628hzx5y629-alpine-2.21/lib/pine.conf.fixed"
so_get error: /gnu/store/h8l61a5aia625wvjcymmp628hzx5y629-alpine-2.21/lib/pine.conf.fixed : No such file or directory
Open failed: No such file or directory
======= Current_val options set =======
          smtp-server : localhost
          nntp-server : news.gmane.org
           inbox-path : inbox
          default-fcc : sent-mail
 default-saved-msg-fo : saved-messages
     postponed-folder : postponed-msgs
         trash-folder : Trash
       signature-file : .signature
         feature-list : prefer-plain-text
                      : scramble-message-id
                      : suppress-user-agent-when-sending
                      : enable-incoming-folders
                      : downgrade-multipart-to-text
      customized-hdrs : From: ng0 <gnu.org will not render this anyway, here was a full email address>
   viewer-margin-left : 0
  viewer-margin-right : 4
 quote-suppression-th : 0
  saved-msg-name-rule : default-folder
        fcc-name-rule : default-fcc
             sort-key : arrival
      thread-sort-key : thread
   addrbook-sort-rule : fullname-with-lists-last
     folder-sort-rule : alphabetical
    goto-default-rule : inbox-or-folder-in-recent-collection
 incoming-startup-rul : first-unseen
         pruning-rule : ask-ask
   folder-reopen-rule : ask-no-n
 threading-display-st : struct
 threading-index-styl : exp
 threading-indicator- : >
 threading-expanded-c : .
 threading-lastreply- : \
 display-character-se : UTF-8
 posting-character-se : UTF-8
 composer-wrap-column : 74
  reply-indent-string : > 
         reply-leadin : default
 empty-header-message : undisclosed-recipients
 use-only-domain-name : no
        bugs-fullname : Sorry No Address
         bugs-address : nobody
     suggest-fullname : Sorry No Address
      suggest-address : nobody
       local-fullname : Local Support
        local-address : postmaster
  kblock-passwd-count : 1
 keyword-surrounding- : "{" "} "
 opening-text-separat :  - 
       viewer-overlap : 2
        scroll-margin : 0
 status-message-delay : 0
        busy-cue-rate : 12
 mailcap-check-interv : 60
  mail-check-interval : 150
 mail-check-interval- : 0
 maildrop-check-minim : 60
           nntp-range : 0
 max-remote-connectio : 3
 incoming-check-timeo : 5
 incoming-check-inter : 180
 incoming-check-inter : 180
    dead-letter-files : 1
 newmail-window-width : 80
       mail-directory : mail
   folder-collections : mail/[]
     news-collections : {news.gmane.org/nntp}#news.[]
         address-book : .addressbook
     standard-printer : lpr
 last-time-prune-ques : 117.5
    last-version-used : 6.21
   user-input-timeout : 0
 remote-abook-history : 3
 remote-abook-validit : 5
              printer : attached-to-ansi
       elm-style-save : no
      header-in-reply : no
        feature-level : sappling
      old-style-reply : no
       save-by-sender : no
          color-style : no-color
 current-indexline-st : flip-colors
 titlebar-color-style : default
 normal-foreground-co : 000,000,000
 normal-background-co : 255,255,255
 title-foreground-col : 000,000,000
 title-background-col : 255,255,000
 title-closed-foregro : 255,255,255
 title-closed-backgro : 255,000,000
 keylabel-foreground- : 000,000,000
 keylabel-background- : 255,255,255
 selectable-item-fore : 000,000,000
 selectable-item-back : 255,255,255
 meta-message-foregro : 000,000,000
 meta-message-backgro : 255,255,000
 quote1-foreground-co : 000,000,000
 quote1-background-co : 000,217,217
 quote2-foreground-co : 000,000,000
 quote2-background-co : 204,214,000
 quote3-foreground-co : 000,000,000
 quote3-background-co : 000,214,000
 signature-foreground : 000,000,255
 signature-background : 255,255,255
 header-general-foreg : 000,000,000
 header-general-backg : 255,255,255
 index-to-me-foregrou : 000,000,000
 index-to-me-backgrou : 000,174,174
 index-important-fore : 240,240,240
 index-important-back : 174,000,000
 index-answered-foreg : 255,000,000
 index-answered-backg : 174,174,000
 index-new-foreground : 240,240,240
 index-new-background : 174,000,174
 index-opening-foregr : 192,192,192
 index-opening-backgr : 255,255,255
 smime-public-cert-di : .alpine-smime/public
 smime-private-key-di : .alpine-smime/private
 smime-cacert-directo : .alpine-smime/ca
       wp-indexheight : 24
          wp-aggstate : 1
             wp-state : ""
======= Command_line_val options set =======
======= User_val options set (/home/user/.pinerc) =======
        personal-name : ng0
          smtp-server : localhost
          nntp-server : news.gmane.org
         feature-list : prefer-plain-text
                      : scramble-message-id
                      : suppress-user-agent-when-sending
                      : enable-incoming-folders
                      : downgrade-multipart-to-text
      customized-hdrs : From: ng0 <ng0@pragmatique.xyz>
     news-collections : {news.gmane.org/nntp}#news.[]
 last-time-prune-ques : 117.5
    last-version-used : 6.21
======= PostloadUser_val options set (postload) =======
======= Global_val options set (/gnu/store/h8l61a5aia625wvjcymmp628hzx5y629-alpine-2.21/lib/pine.conf) =======
           inbox-path : inbox
          default-fcc : sent-mail
 default-saved-msg-fo : saved-messages
     postponed-folder : postponed-msgs
         trash-folder : Trash
       signature-file : .signature
   viewer-margin-left : 0
  viewer-margin-right : 4
 quote-suppression-th : 0
  saved-msg-name-rule : default-folder
        fcc-name-rule : default-fcc
             sort-key : arrival
      thread-sort-key : thread
   addrbook-sort-rule : fullname-with-lists-last
     folder-sort-rule : alphabetical
    goto-default-rule : inbox-or-folder-in-recent-collection
 incoming-startup-rul : first-unseen
         pruning-rule : ask-ask
   folder-reopen-rule : ask-no-n
 threading-display-st : struct
 threading-index-styl : exp
 threading-indicator- : >
 threading-expanded-c : .
 threading-lastreply- : \
 display-character-se : UTF-8
 posting-character-se : UTF-8
 composer-wrap-column : 74
  reply-indent-string : > 
         reply-leadin : default
 empty-header-message : undisclosed-recipients
 use-only-domain-name : no
        bugs-fullname : Sorry No Address
         bugs-address : nobody
     suggest-fullname : Sorry No Address
      suggest-address : nobody
       local-fullname : Local Support
        local-address : postmaster
  kblock-passwd-count : 1
 keyword-surrounding- : "{" "} "
 opening-text-separat :  - 
       viewer-overlap : 2
        scroll-margin : 0
 status-message-delay : 0
        busy-cue-rate : 12
 mailcap-check-interv : 60
  mail-check-interval : 150
 mail-check-interval- : 0
 maildrop-check-minim : 60
           nntp-range : 0
 max-remote-connectio : 3
 incoming-check-timeo : 5
 incoming-check-inter : 180
 incoming-check-inter : 180
    dead-letter-files : 1
 newmail-window-width : 80
       mail-directory : mail
   folder-collections : mail/[]
         address-book : .addressbook
     standard-printer : lpr
   user-input-timeout : 0
 remote-abook-history : 3
 remote-abook-validit : 5
              printer : attached-to-ansi
       elm-style-save : no
      header-in-reply : no
        feature-level : sappling
      old-style-reply : no
       save-by-sender : no
          color-style : no-color
 current-indexline-st : flip-colors
 titlebar-color-style : default
 normal-foreground-co : 000,000,000
 normal-background-co : 255,255,255
 title-foreground-col : 000,000,000
 title-background-col : 255,255,000
 title-closed-foregro : 255,255,255
 title-closed-backgro : 255,000,000
 folder-foreground-co : 000,000,000
 directory-foreground : 000,000,000
 folder-list-text-for : 000,000,000
 meta-message-foregro : 000,000,000
 meta-message-backgro : 255,255,000
 quote1-foreground-co : 000,000,000
 quote1-background-co : 000,217,217
 quote2-foreground-co : 000,000,000
 quote2-background-co : 204,214,000
 quote3-foreground-co : 000,000,000
 quote3-background-co : 000,214,000
 signature-foreground : 000,000,255
 signature-background : 255,255,255
 index-to-me-foregrou : 000,000,000
 index-to-me-backgrou : 000,174,174
 index-important-fore : 240,240,240
 index-important-back : 174,000,000
 index-answered-foreg : 255,000,000
 index-answered-backg : 174,174,000
 index-new-foreground : 240,240,240
 index-new-background : 174,000,174
 index-opening-foregr : 192,192,192
 index-opening-backgr : 255,255,255
 smime-public-cert-di : .alpine-smime/public
 smime-private-key-di : .alpine-smime/private
 smime-cacert-directo : .alpine-smime/ca
       wp-indexheight : 24
          wp-aggstate : 1
             wp-state : ""
======= Fixed_val options set (NO pine.conf.fixed) =======
========== Feature settings ==========
     allow-changing-from
  no-alternate-compose-menu
  no-alternate-role-menu
  no-compose-cancel-confirm-uses-yes
  no-compose-rejects-unqualified-addrs
  no-compose-send-offers-first-filter
  no-compose-cut-from-cursor
  no-compose-maps-delete-key-to-ctrl-d
  no-quell-dead-letter-on-cancel
     enable-alternate-editor-cmd
  no-enable-alternate-editor-implicitly
     enable-search-and-replace
  no-enable-sigdashes
  no-quell-mailchecks-composing-except-inbox
  no-quell-mailchecks-composing-inbox
  no-quell-user-lookup-in-passwd-file
  no-spell-check-before-sending
  no-alternate-reply-menu
  no-copy-to-address-to-from-if-it-is-us
  no-enable-reply-indent-string-editing
  no-include-attachments-in-reply
  no-include-header-in-reply
  no-include-text-in-reply
  no-reply-always-uses-reply-to
  no-signature-at-bottom
  no-strip-from-sigdashes-on-reply
  no-forward-as-attachment
  no-preserve-original-fields
  no-disable-sender
  no-use-sender-not-x-sender
  no-quell-flowed-text
     downgrade-multipart-to-text
     enable-8bit-esmtp-negotiation
  no-enable-background-sending
  no-enable-delivery-status-notification
  no-enable-verbose-smtp-posting
  no-fcc-without-attachments
  no-fcc-on-bounce
  no-return-path-uses-domain-name
  no-mark-fcc-seen
  no-fcc-only-without-confirm
  no-send-without-confirm
  no-strip-whitespace-before-send
  no-warn-if-blank-fcc
  no-warn-if-blank-subject
  no-warn-if-blank-to-and-cc-and-newsgroups
  no-combined-folder-display
  no-combined-subdirectory-display
  no-enable-lame-list-mode
  no-enable-dot-folders
     enable-incoming-folders
  no-enable-incoming-folders-checking
  no-incoming-checking-includes-total
  no-incoming-checking-uses-recent
  no-expanded-view-of-folders
  no-quell-empty-directories
  no-separate-folder-and-directory-entries
  no-single-column-folder-list
  no-sort-default-fcc-alpha
  no-sort-default-save-alpha
  no-vertical-folder-list
  no-use-courier-folder-list
  no-combined-addrbook-display
  no-expanded-view-of-addressbooks
  no-expanded-view-of-distribution-lists
  no-ldap-result-to-addrbook-add
  no-auto-open-next-unread
  no-enable-circular-tab
  no-continue-tab-without-confirm
  no-convert-dates-to-localtime
     delete-skips-deleted
  no-disable-index-locale-dates
  no-enable-cruise-mode
  no-enable-cruise-mode-delete
     mark-for-me-in-group
     mark-for-cc
  no-next-thread-without-confirm
  no-return-to-inbox-without-confirm
  no-show-sort
  no-tab-uses-unseen-for-next-folder
  no-tab-visits-next-new-message-only
  no-thread-index-shows-important-color
  no-thread-sorts-by-arrival
  no-enhanced-fancy-thread-support
  no-enable-msg-view-addresses
  no-enable-msg-view-attachments
     enable-msg-view-urls
     enable-msg-view-web-hostnames
  no-enable-msg-view-long-url
  no-enable-msg-view-forced-arrows
  no-pass-c1-control-characters-as-is
  no-pass-control-characters-as-is
     prefer-plain-text
  no-quell-charset-warning
  no-quell-server-after-link-in-html
  no-compose-sets-newsgroup-without-confirm
  no-enable-8bit-nntp-posting
  no-enable-multiple-newsrcs
  no-mult-newsrc-hostnames-as-typed
  no-hide-nntp-path
     news-approximates-new-status
  no-news-deletes-across-groups
  no-news-offers-catchup-on-close
  no-news-post-without-validation
  no-news-read-in-newsrc-order
     nntp-search-uses-overview
  no-predict-nntp-server
  no-quell-extra-post-prompt
  no-enable-print-via-y-command
  no-print-formfeed-between-messages
  no-print-includes-from-line
  no-print-index-enabled
  no-print-offers-custom-cmd-prompt
     enable-aggregate-command-set
     enable-arrow-navigation
     enable-arrow-navigation-relaxed
     enable-bounce-cmd
     enable-exit-via-lessthan-command
     enable-flag-cmd
  no-enable-flag-screen-implicitly
     enable-flag-screen-keyword-shortcut
  no-enable-full-header-and-text
     enable-full-header-cmd
     enable-goto-in-file-browser
     enable-jump-shortcut
     enable-partial-match-lists
     enable-tab-completion
     enable-unix-pipe-cmd
  no-quell-full-header-auto-reset
  no-allow-talk
  no-assume-slow-link
  no-auto-move-read-msgs
  no-auto-move-read-msgs-using-rules
  no-auto-unselect-after-apply
     auto-unzoom-after-apply
     auto-zoom-after-select
  no-busy-cue-spinner-only
  no-check-newmail-when-quitting
  no-confirm-role-even-for-default
  no-disable-keymenu
  no-disable-password-caching
  no-disable-regular-expression-matching-for-alternate-addresses
  no-disable-save-input-history
  no-disable-take-fullname-in-addresses
  no-disable-take-last-comma-first
  no-disable-terminal-reset-for-display-filters
  no-enable-dot-files
  no-enable-fast-recent-test
  no-enable-mail-check-cue
  no-enable-mailcap-param-substitution
  no-enable-mouse-in-xterm
  no-enable-newmail-in-xterm-icon
  no-enable-newmail-short-text-in-icon
  no-enable-suspend
  no-enable-take-export
  no-enable-rules-under-take
  no-expose-hidden-config
  no-expunge-only-manually
  no-expunge-without-confirm
  no-expunge-without-confirm-everywhere
  no-force-arrow-cursor
  no-ignore-size-changes
  no-maildrops-preserve-state
  no-offer-expunge-of-inbox
  no-offer-expunge-of-stayopen-folders
  no-preopen-stayopen-folders
  no-preserve-start-stop-characters
  no-quell-folder-internal-msg
  no-quell-partial-fetching
  no-prune-uses-yyyy-mm
  no-quit-without-confirm
  no-quote-replace-nonflowed
     save-aggregates-copy-sequence
  no-save-partial-msg-without-confirm
  no-save-will-advance
  no-save-will-not-delete
  no-save-will-quote-leading-froms
     scramble-message-id
  no-select-without-confirm
  no-show-cursor
  no-show-plain-text-internally
  no-show-selected-in-boldface
  no-slash-collapses-entire-thread
  no-suppress-asterisks-in-password-prompt
  no-quell-attachment-extension-warn
  no-quell-attachment-extra-prompt
  no-quell-berkeley-format-timezone
  no-quell-content-id
  no-quell-filtering-done-message
  no-quell-filtering-messages
  no-quell-imap-envelope-update
  no-quell-lock-failure-warnings
  no-quell-maildomain-warning
  no-quell-news-envelope-update
  no-quell-status-message-beeping
  no-quell-timezone-comment-when-sending
     suppress-user-agent-when-sending
  no-tab-checks-recent
  no-termdef-takes-precedence
  no-try-alternative-authentication-driver-first
  no-unselect-will-not-advance
  no-use-current-dir
  no-use-function-keys
  no-use-regular-startup-rule-for-stayopen-folders
  no-use-resent-to-in-rules
  no-use-subshell-for-suspend
  no-use-system-translation
  no-disable-config-cmd
  no-disable-keyboard-lock-cmd
  no-disable-password-cmd
  no-disable-pipes-in-sigs
  no-disable-pipes-in-templates
  no-disable-roles-setup-cmd
  no-disable-roles-sig-edit
  no-disable-roles-template-edit
  no-disable-setlocale-collate
  no-disable-shared-namespaces
  no-disable-signature-edit-cmd
     new-thread-on-blank-subject
  no-quell-personal-name-prompt
  no-quell-user-id-prompt
  no-smime-dont-do-smime
  no-smime-encrypt-by-default
  no-smime-remember-passphrase
  no-smime-sign-by-default
     smime-use-store-only
  no-selectable-item-nobold
  no-send-confirms-only-expanded
  no-enable-jump-cmd
  no-enable-newmail-sound
  no-render-html-internally
Userid: user
Fullname: "ng0"
Incomplete maildomain "localhost".
Return address in mail you send may be incorrect.
User domain name being used ""
Local Domain name being used "localhost"
Host name being used "localhost"
Mail Domain name being used (by c-client too) "localhost"
new win size -----<46 194>------
Terminal type: xterm
About to open folder "INBOX"    inbox is: "INBOX"
Opened folder "inbox" with 0 messages
Sorting by Arrival


    ---- MAIN_MENU_SCREEN ----


    ---- QUIT SCREEN ----
Want_to read: Down Arrow (0x40000101)
Want_to read: Down Arrow (0x40000101)
Want_to read: y (0x79)
goodnight_gracey:
- trim_remote_adrbks -
expunge_and_close: "INBOX"
- completely_done_with_adrbks -
about to end_tty_driver
goodnight_gracey finished

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

* [bug#26967] alpine: provide system-wide config
  2017-05-30 23:03   ` ng0
@ 2017-08-14 12:04     ` ng0
  2017-10-18 22:54       ` bug#26967: " Ricardo Wurmus
  0 siblings, 1 reply; 5+ messages in thread
From: ng0 @ 2017-08-14 12:04 UTC (permalink / raw)
  To: 26967

[-- Attachment #1: Type: text/plain, Size: 41424 bytes --]

I'm not using alpine, so I'll leave this bug open for anyone who
uses alpine and wants to solve it.

Thanks.

ng0 transcribed 38K bytes:
> Ricardo Wurmus transcribed 0.9K bytes:
> > 
> > ng0 <ng0@pragmatique.xyz> writes:
> > 
> > > Without this patch, alpine silently(?) complains until a
> > > $HOME/.pinerc exists:
> > 
> > How does it complain “silently”?  :)
> 
> I removed my .pinerc symlink and this is what happens. I should've
> described the problem before I sent this:
> 
> Upon first start, a .pinerc is generated from a global file[1], but
> we also get a ".pine-debug1" and with every start a new one this
> with a number increase. Is it just because of these files? I'm not
> a alpine user.. This .pine-debug1 is appended. Twice because I forgot
> how to remove attachments.
> 
> 1: I _guess_ ... the existing file is actually not existing so I don't
> know what alpine does here. Fixing it the way I did it seemed like
> the first possible solution to me.
> 
> > > The way they are created is copied from slackware and seems to be
> > > the recommended way of providing them, as no such file exists in
> > > the distribution of alpine.
> > 
> > Recommended by whom?  I see in the manual [1] that
> 
> Actually this is a comment in a file I can longer find (slackbuilds?)
> which came up when I searched for this problem.
> 
> >     $prefix/lib/pine.conf (Pine's global configuration file)
> >     $prefix/lib/pine.conf.fixed (Non-overridable global configuration file)
> > 
> > should exist, but it doesn’t say what should be in them.  Could they
> > just be empty?  Given that one of them is for non-overridable global
> > configurations I’d rather not fill them.
> > 
> > [1]: https://www.washington.edu/alpine/tech-notes/installation.html#files-unix
>                         ^
> Keep in mind that this  |-- is not the alpine we use.
> If it is 
> 
> > WDYT?
> > 
> > -- 
> > Ricardo
> > 
> > GPG: BCA6 89B6 3655 3801 C3C6  2150 197A 5888 235F ACAC
> > https://elephly.net
> > 
> > 
> 
> 
> -- 
> ng0
> OpenPG: A88C8ADD129828D7EAC02E52E22F9BBFEE348588

> Debug output of the Alpine program (debug=2 debug_imap=0). Version 2.21 (LNX 202 2017-01-01)
> Tue May 30 22:46:56 2017
> 
> This version uses all.patch:
> VERSION=2 created on Sun Feb  5 17:11:49 MST 2017
> 
> Starting after the reading_pinerc calls, the data in this file should
> be encoded as UTF-8. Before that it will be in the user's native charset.
>  
> "alpine" <no args> (PID=1814)
> 
> Setting home dir from $HOME: "/home/user"
> 
>  -- init_pinerc --
> 
> Global config "/gnu/store/h8l61a5aia625wvjcymmp628hzx5y629-alpine-2.21/lib/pine.conf" is default
> Personal config "/home/user/.pinerc" is default
> Exceptions config not set on cmdline
>   checking for default "/home/user/.pinercex" in pinerc dir
>   no, there is no exceptions config
> 
>   Global config:     /gnu/store/h8l61a5aia625wvjcymmp628hzx5y629-alpine-2.21/lib/pine.conf
>   Personal config:   /home/user/.pinerc
>   Exceptions config: <none>
>   Fixed config:      /gnu/store/h8l61a5aia625wvjcymmp628hzx5y629-alpine-2.21/lib/pine.conf.fixed
> 
> reading_pinerc "/gnu/store/h8l61a5aia625wvjcymmp628hzx5y629-alpine-2.21/lib/pine.conf"
> so_get error: /gnu/store/h8l61a5aia625wvjcymmp628hzx5y629-alpine-2.21/lib/pine.conf : No such file or directory
> Open failed: No such file or directory
> reading_pinerc "/home/user/.pinerc"
> Read 24568 characters:
> reading_pinerc "/gnu/store/h8l61a5aia625wvjcymmp628hzx5y629-alpine-2.21/lib/pine.conf.fixed"
> so_get error: /gnu/store/h8l61a5aia625wvjcymmp628hzx5y629-alpine-2.21/lib/pine.conf.fixed : No such file or directory
> Open failed: No such file or directory
> ======= Current_val options set =======
>           smtp-server : localhost
>           nntp-server : news.gmane.org
>            inbox-path : inbox
>           default-fcc : sent-mail
>  default-saved-msg-fo : saved-messages
>      postponed-folder : postponed-msgs
>          trash-folder : Trash
>        signature-file : .signature
>          feature-list : prefer-plain-text
>                       : scramble-message-id
>                       : suppress-user-agent-when-sending
>                       : enable-incoming-folders
>                       : downgrade-multipart-to-text
>       customized-hdrs : From: ng0 <gnu.org will not render this anyway, here was a full email address>
>    viewer-margin-left : 0
>   viewer-margin-right : 4
>  quote-suppression-th : 0
>   saved-msg-name-rule : default-folder
>         fcc-name-rule : default-fcc
>              sort-key : arrival
>       thread-sort-key : thread
>    addrbook-sort-rule : fullname-with-lists-last
>      folder-sort-rule : alphabetical
>     goto-default-rule : inbox-or-folder-in-recent-collection
>  incoming-startup-rul : first-unseen
>          pruning-rule : ask-ask
>    folder-reopen-rule : ask-no-n
>  threading-display-st : struct
>  threading-index-styl : exp
>  threading-indicator- : >
>  threading-expanded-c : .
>  threading-lastreply- : \
>  display-character-se : UTF-8
>  posting-character-se : UTF-8
>  composer-wrap-column : 74
>   reply-indent-string : > 
>          reply-leadin : default
>  empty-header-message : undisclosed-recipients
>  use-only-domain-name : no
>         bugs-fullname : Sorry No Address
>          bugs-address : nobody
>      suggest-fullname : Sorry No Address
>       suggest-address : nobody
>        local-fullname : Local Support
>         local-address : postmaster
>   kblock-passwd-count : 1
>  keyword-surrounding- : "{" "} "
>  opening-text-separat :  - 
>        viewer-overlap : 2
>         scroll-margin : 0
>  status-message-delay : 0
>         busy-cue-rate : 12
>  mailcap-check-interv : 60
>   mail-check-interval : 150
>  mail-check-interval- : 0
>  maildrop-check-minim : 60
>            nntp-range : 0
>  max-remote-connectio : 3
>  incoming-check-timeo : 5
>  incoming-check-inter : 180
>  incoming-check-inter : 180
>     dead-letter-files : 1
>  newmail-window-width : 80
>        mail-directory : mail
>    folder-collections : mail/[]
>      news-collections : {news.gmane.org/nntp}#news.[]
>          address-book : .addressbook
>      standard-printer : lpr
>  last-time-prune-ques : 117.5
>     last-version-used : 6.21
>    user-input-timeout : 0
>  remote-abook-history : 3
>  remote-abook-validit : 5
>               printer : attached-to-ansi
>        elm-style-save : no
>       header-in-reply : no
>         feature-level : sappling
>       old-style-reply : no
>        save-by-sender : no
>           color-style : no-color
>  current-indexline-st : flip-colors
>  titlebar-color-style : default
>  normal-foreground-co : 000,000,000
>  normal-background-co : 255,255,255
>  title-foreground-col : 000,000,000
>  title-background-col : 255,255,000
>  title-closed-foregro : 255,255,255
>  title-closed-backgro : 255,000,000
>  keylabel-foreground- : 000,000,000
>  keylabel-background- : 255,255,255
>  selectable-item-fore : 000,000,000
>  selectable-item-back : 255,255,255
>  meta-message-foregro : 000,000,000
>  meta-message-backgro : 255,255,000
>  quote1-foreground-co : 000,000,000
>  quote1-background-co : 000,217,217
>  quote2-foreground-co : 000,000,000
>  quote2-background-co : 204,214,000
>  quote3-foreground-co : 000,000,000
>  quote3-background-co : 000,214,000
>  signature-foreground : 000,000,255
>  signature-background : 255,255,255
>  header-general-foreg : 000,000,000
>  header-general-backg : 255,255,255
>  index-to-me-foregrou : 000,000,000
>  index-to-me-backgrou : 000,174,174
>  index-important-fore : 240,240,240
>  index-important-back : 174,000,000
>  index-answered-foreg : 255,000,000
>  index-answered-backg : 174,174,000
>  index-new-foreground : 240,240,240
>  index-new-background : 174,000,174
>  index-opening-foregr : 192,192,192
>  index-opening-backgr : 255,255,255
>  smime-public-cert-di : .alpine-smime/public
>  smime-private-key-di : .alpine-smime/private
>  smime-cacert-directo : .alpine-smime/ca
>        wp-indexheight : 24
>           wp-aggstate : 1
>              wp-state : ""
> ======= Command_line_val options set =======
> ======= User_val options set (/home/user/.pinerc) =======
>         personal-name : ng0
>           smtp-server : localhost
>           nntp-server : news.gmane.org
>          feature-list : prefer-plain-text
>                       : scramble-message-id
>                       : suppress-user-agent-when-sending
>                       : enable-incoming-folders
>                       : downgrade-multipart-to-text
>       customized-hdrs : From: ng0 <ng0@pragmatique.xyz>
>      news-collections : {news.gmane.org/nntp}#news.[]
>  last-time-prune-ques : 117.5
>     last-version-used : 6.21
> ======= PostloadUser_val options set (postload) =======
> ======= Global_val options set (/gnu/store/h8l61a5aia625wvjcymmp628hzx5y629-alpine-2.21/lib/pine.conf) =======
>            inbox-path : inbox
>           default-fcc : sent-mail
>  default-saved-msg-fo : saved-messages
>      postponed-folder : postponed-msgs
>          trash-folder : Trash
>        signature-file : .signature
>    viewer-margin-left : 0
>   viewer-margin-right : 4
>  quote-suppression-th : 0
>   saved-msg-name-rule : default-folder
>         fcc-name-rule : default-fcc
>              sort-key : arrival
>       thread-sort-key : thread
>    addrbook-sort-rule : fullname-with-lists-last
>      folder-sort-rule : alphabetical
>     goto-default-rule : inbox-or-folder-in-recent-collection
>  incoming-startup-rul : first-unseen
>          pruning-rule : ask-ask
>    folder-reopen-rule : ask-no-n
>  threading-display-st : struct
>  threading-index-styl : exp
>  threading-indicator- : >
>  threading-expanded-c : .
>  threading-lastreply- : \
>  display-character-se : UTF-8
>  posting-character-se : UTF-8
>  composer-wrap-column : 74
>   reply-indent-string : > 
>          reply-leadin : default
>  empty-header-message : undisclosed-recipients
>  use-only-domain-name : no
>         bugs-fullname : Sorry No Address
>          bugs-address : nobody
>      suggest-fullname : Sorry No Address
>       suggest-address : nobody
>        local-fullname : Local Support
>         local-address : postmaster
>   kblock-passwd-count : 1
>  keyword-surrounding- : "{" "} "
>  opening-text-separat :  - 
>        viewer-overlap : 2
>         scroll-margin : 0
>  status-message-delay : 0
>         busy-cue-rate : 12
>  mailcap-check-interv : 60
>   mail-check-interval : 150
>  mail-check-interval- : 0
>  maildrop-check-minim : 60
>            nntp-range : 0
>  max-remote-connectio : 3
>  incoming-check-timeo : 5
>  incoming-check-inter : 180
>  incoming-check-inter : 180
>     dead-letter-files : 1
>  newmail-window-width : 80
>        mail-directory : mail
>    folder-collections : mail/[]
>          address-book : .addressbook
>      standard-printer : lpr
>    user-input-timeout : 0
>  remote-abook-history : 3
>  remote-abook-validit : 5
>               printer : attached-to-ansi
>        elm-style-save : no
>       header-in-reply : no
>         feature-level : sappling
>       old-style-reply : no
>        save-by-sender : no
>           color-style : no-color
>  current-indexline-st : flip-colors
>  titlebar-color-style : default
>  normal-foreground-co : 000,000,000
>  normal-background-co : 255,255,255
>  title-foreground-col : 000,000,000
>  title-background-col : 255,255,000
>  title-closed-foregro : 255,255,255
>  title-closed-backgro : 255,000,000
>  folder-foreground-co : 000,000,000
>  directory-foreground : 000,000,000
>  folder-list-text-for : 000,000,000
>  meta-message-foregro : 000,000,000
>  meta-message-backgro : 255,255,000
>  quote1-foreground-co : 000,000,000
>  quote1-background-co : 000,217,217
>  quote2-foreground-co : 000,000,000
>  quote2-background-co : 204,214,000
>  quote3-foreground-co : 000,000,000
>  quote3-background-co : 000,214,000
>  signature-foreground : 000,000,255
>  signature-background : 255,255,255
>  index-to-me-foregrou : 000,000,000
>  index-to-me-backgrou : 000,174,174
>  index-important-fore : 240,240,240
>  index-important-back : 174,000,000
>  index-answered-foreg : 255,000,000
>  index-answered-backg : 174,174,000
>  index-new-foreground : 240,240,240
>  index-new-background : 174,000,174
>  index-opening-foregr : 192,192,192
>  index-opening-backgr : 255,255,255
>  smime-public-cert-di : .alpine-smime/public
>  smime-private-key-di : .alpine-smime/private
>  smime-cacert-directo : .alpine-smime/ca
>        wp-indexheight : 24
>           wp-aggstate : 1
>              wp-state : ""
> ======= Fixed_val options set (NO pine.conf.fixed) =======
> ========== Feature settings ==========
>      allow-changing-from
>   no-alternate-compose-menu
>   no-alternate-role-menu
>   no-compose-cancel-confirm-uses-yes
>   no-compose-rejects-unqualified-addrs
>   no-compose-send-offers-first-filter
>   no-compose-cut-from-cursor
>   no-compose-maps-delete-key-to-ctrl-d
>   no-quell-dead-letter-on-cancel
>      enable-alternate-editor-cmd
>   no-enable-alternate-editor-implicitly
>      enable-search-and-replace
>   no-enable-sigdashes
>   no-quell-mailchecks-composing-except-inbox
>   no-quell-mailchecks-composing-inbox
>   no-quell-user-lookup-in-passwd-file
>   no-spell-check-before-sending
>   no-alternate-reply-menu
>   no-copy-to-address-to-from-if-it-is-us
>   no-enable-reply-indent-string-editing
>   no-include-attachments-in-reply
>   no-include-header-in-reply
>   no-include-text-in-reply
>   no-reply-always-uses-reply-to
>   no-signature-at-bottom
>   no-strip-from-sigdashes-on-reply
>   no-forward-as-attachment
>   no-preserve-original-fields
>   no-disable-sender
>   no-use-sender-not-x-sender
>   no-quell-flowed-text
>      downgrade-multipart-to-text
>      enable-8bit-esmtp-negotiation
>   no-enable-background-sending
>   no-enable-delivery-status-notification
>   no-enable-verbose-smtp-posting
>   no-fcc-without-attachments
>   no-fcc-on-bounce
>   no-return-path-uses-domain-name
>   no-mark-fcc-seen
>   no-fcc-only-without-confirm
>   no-send-without-confirm
>   no-strip-whitespace-before-send
>   no-warn-if-blank-fcc
>   no-warn-if-blank-subject
>   no-warn-if-blank-to-and-cc-and-newsgroups
>   no-combined-folder-display
>   no-combined-subdirectory-display
>   no-enable-lame-list-mode
>   no-enable-dot-folders
>      enable-incoming-folders
>   no-enable-incoming-folders-checking
>   no-incoming-checking-includes-total
>   no-incoming-checking-uses-recent
>   no-expanded-view-of-folders
>   no-quell-empty-directories
>   no-separate-folder-and-directory-entries
>   no-single-column-folder-list
>   no-sort-default-fcc-alpha
>   no-sort-default-save-alpha
>   no-vertical-folder-list
>   no-use-courier-folder-list
>   no-combined-addrbook-display
>   no-expanded-view-of-addressbooks
>   no-expanded-view-of-distribution-lists
>   no-ldap-result-to-addrbook-add
>   no-auto-open-next-unread
>   no-enable-circular-tab
>   no-continue-tab-without-confirm
>   no-convert-dates-to-localtime
>      delete-skips-deleted
>   no-disable-index-locale-dates
>   no-enable-cruise-mode
>   no-enable-cruise-mode-delete
>      mark-for-me-in-group
>      mark-for-cc
>   no-next-thread-without-confirm
>   no-return-to-inbox-without-confirm
>   no-show-sort
>   no-tab-uses-unseen-for-next-folder
>   no-tab-visits-next-new-message-only
>   no-thread-index-shows-important-color
>   no-thread-sorts-by-arrival
>   no-enhanced-fancy-thread-support
>   no-enable-msg-view-addresses
>   no-enable-msg-view-attachments
>      enable-msg-view-urls
>      enable-msg-view-web-hostnames
>   no-enable-msg-view-long-url
>   no-enable-msg-view-forced-arrows
>   no-pass-c1-control-characters-as-is
>   no-pass-control-characters-as-is
>      prefer-plain-text
>   no-quell-charset-warning
>   no-quell-server-after-link-in-html
>   no-compose-sets-newsgroup-without-confirm
>   no-enable-8bit-nntp-posting
>   no-enable-multiple-newsrcs
>   no-mult-newsrc-hostnames-as-typed
>   no-hide-nntp-path
>      news-approximates-new-status
>   no-news-deletes-across-groups
>   no-news-offers-catchup-on-close
>   no-news-post-without-validation
>   no-news-read-in-newsrc-order
>      nntp-search-uses-overview
>   no-predict-nntp-server
>   no-quell-extra-post-prompt
>   no-enable-print-via-y-command
>   no-print-formfeed-between-messages
>   no-print-includes-from-line
>   no-print-index-enabled
>   no-print-offers-custom-cmd-prompt
>      enable-aggregate-command-set
>      enable-arrow-navigation
>      enable-arrow-navigation-relaxed
>      enable-bounce-cmd
>      enable-exit-via-lessthan-command
>      enable-flag-cmd
>   no-enable-flag-screen-implicitly
>      enable-flag-screen-keyword-shortcut
>   no-enable-full-header-and-text
>      enable-full-header-cmd
>      enable-goto-in-file-browser
>      enable-jump-shortcut
>      enable-partial-match-lists
>      enable-tab-completion
>      enable-unix-pipe-cmd
>   no-quell-full-header-auto-reset
>   no-allow-talk
>   no-assume-slow-link
>   no-auto-move-read-msgs
>   no-auto-move-read-msgs-using-rules
>   no-auto-unselect-after-apply
>      auto-unzoom-after-apply
>      auto-zoom-after-select
>   no-busy-cue-spinner-only
>   no-check-newmail-when-quitting
>   no-confirm-role-even-for-default
>   no-disable-keymenu
>   no-disable-password-caching
>   no-disable-regular-expression-matching-for-alternate-addresses
>   no-disable-save-input-history
>   no-disable-take-fullname-in-addresses
>   no-disable-take-last-comma-first
>   no-disable-terminal-reset-for-display-filters
>   no-enable-dot-files
>   no-enable-fast-recent-test
>   no-enable-mail-check-cue
>   no-enable-mailcap-param-substitution
>   no-enable-mouse-in-xterm
>   no-enable-newmail-in-xterm-icon
>   no-enable-newmail-short-text-in-icon
>   no-enable-suspend
>   no-enable-take-export
>   no-enable-rules-under-take
>   no-expose-hidden-config
>   no-expunge-only-manually
>   no-expunge-without-confirm
>   no-expunge-without-confirm-everywhere
>   no-force-arrow-cursor
>   no-ignore-size-changes
>   no-maildrops-preserve-state
>   no-offer-expunge-of-inbox
>   no-offer-expunge-of-stayopen-folders
>   no-preopen-stayopen-folders
>   no-preserve-start-stop-characters
>   no-quell-folder-internal-msg
>   no-quell-partial-fetching
>   no-prune-uses-yyyy-mm
>   no-quit-without-confirm
>   no-quote-replace-nonflowed
>      save-aggregates-copy-sequence
>   no-save-partial-msg-without-confirm
>   no-save-will-advance
>   no-save-will-not-delete
>   no-save-will-quote-leading-froms
>      scramble-message-id
>   no-select-without-confirm
>   no-show-cursor
>   no-show-plain-text-internally
>   no-show-selected-in-boldface
>   no-slash-collapses-entire-thread
>   no-suppress-asterisks-in-password-prompt
>   no-quell-attachment-extension-warn
>   no-quell-attachment-extra-prompt
>   no-quell-berkeley-format-timezone
>   no-quell-content-id
>   no-quell-filtering-done-message
>   no-quell-filtering-messages
>   no-quell-imap-envelope-update
>   no-quell-lock-failure-warnings
>   no-quell-maildomain-warning
>   no-quell-news-envelope-update
>   no-quell-status-message-beeping
>   no-quell-timezone-comment-when-sending
>      suppress-user-agent-when-sending
>   no-tab-checks-recent
>   no-termdef-takes-precedence
>   no-try-alternative-authentication-driver-first
>   no-unselect-will-not-advance
>   no-use-current-dir
>   no-use-function-keys
>   no-use-regular-startup-rule-for-stayopen-folders
>   no-use-resent-to-in-rules
>   no-use-subshell-for-suspend
>   no-use-system-translation
>   no-disable-config-cmd
>   no-disable-keyboard-lock-cmd
>   no-disable-password-cmd
>   no-disable-pipes-in-sigs
>   no-disable-pipes-in-templates
>   no-disable-roles-setup-cmd
>   no-disable-roles-sig-edit
>   no-disable-roles-template-edit
>   no-disable-setlocale-collate
>   no-disable-shared-namespaces
>   no-disable-signature-edit-cmd
>      new-thread-on-blank-subject
>   no-quell-personal-name-prompt
>   no-quell-user-id-prompt
>   no-smime-dont-do-smime
>   no-smime-encrypt-by-default
>   no-smime-remember-passphrase
>   no-smime-sign-by-default
>      smime-use-store-only
>   no-selectable-item-nobold
>   no-send-confirms-only-expanded
>   no-enable-jump-cmd
>   no-enable-newmail-sound
>   no-render-html-internally
> Userid: user
> Fullname: "ng0"
> Incomplete maildomain "localhost".
> Return address in mail you send may be incorrect.
> User domain name being used ""
> Local Domain name being used "localhost"
> Host name being used "localhost"
> Mail Domain name being used (by c-client too) "localhost"
> new win size -----<46 194>------
> Terminal type: xterm
> About to open folder "INBOX"    inbox is: "INBOX"
> Opened folder "inbox" with 0 messages
> Sorting by Arrival
> 
> 
>     ---- MAIN_MENU_SCREEN ----
> 
> 
>     ---- QUIT SCREEN ----
> Want_to read: Down Arrow (0x40000101)
> Want_to read: Down Arrow (0x40000101)
> Want_to read: y (0x79)
> goodnight_gracey:
> - trim_remote_adrbks -
> expunge_and_close: "INBOX"
> - completely_done_with_adrbks -
> about to end_tty_driver
> goodnight_gracey finished

> Debug output of the Alpine program (debug=2 debug_imap=0). Version 2.21 (LNX 202 2017-01-01)
> Tue May 30 22:46:56 2017
> 
> This version uses all.patch:
> VERSION=2 created on Sun Feb  5 17:11:49 MST 2017
> 
> Starting after the reading_pinerc calls, the data in this file should
> be encoded as UTF-8. Before that it will be in the user's native charset.
>  
> "alpine" <no args> (PID=1814)
> 
> Setting home dir from $HOME: "/home/user"
> 
>  -- init_pinerc --
> 
> Global config "/gnu/store/h8l61a5aia625wvjcymmp628hzx5y629-alpine-2.21/lib/pine.conf" is default
> Personal config "/home/user/.pinerc" is default
> Exceptions config not set on cmdline
>   checking for default "/home/user/.pinercex" in pinerc dir
>   no, there is no exceptions config
> 
>   Global config:     /gnu/store/h8l61a5aia625wvjcymmp628hzx5y629-alpine-2.21/lib/pine.conf
>   Personal config:   /home/user/.pinerc
>   Exceptions config: <none>
>   Fixed config:      /gnu/store/h8l61a5aia625wvjcymmp628hzx5y629-alpine-2.21/lib/pine.conf.fixed
> 
> reading_pinerc "/gnu/store/h8l61a5aia625wvjcymmp628hzx5y629-alpine-2.21/lib/pine.conf"
> so_get error: /gnu/store/h8l61a5aia625wvjcymmp628hzx5y629-alpine-2.21/lib/pine.conf : No such file or directory
> Open failed: No such file or directory
> reading_pinerc "/home/user/.pinerc"
> Read 24568 characters:
> reading_pinerc "/gnu/store/h8l61a5aia625wvjcymmp628hzx5y629-alpine-2.21/lib/pine.conf.fixed"
> so_get error: /gnu/store/h8l61a5aia625wvjcymmp628hzx5y629-alpine-2.21/lib/pine.conf.fixed : No such file or directory
> Open failed: No such file or directory
> ======= Current_val options set =======
>           smtp-server : localhost
>           nntp-server : news.gmane.org
>            inbox-path : inbox
>           default-fcc : sent-mail
>  default-saved-msg-fo : saved-messages
>      postponed-folder : postponed-msgs
>          trash-folder : Trash
>        signature-file : .signature
>          feature-list : prefer-plain-text
>                       : scramble-message-id
>                       : suppress-user-agent-when-sending
>                       : enable-incoming-folders
>                       : downgrade-multipart-to-text
>       customized-hdrs : From: ng0 <gnu.org will not render this anyway, here was a full email address>
>    viewer-margin-left : 0
>   viewer-margin-right : 4
>  quote-suppression-th : 0
>   saved-msg-name-rule : default-folder
>         fcc-name-rule : default-fcc
>              sort-key : arrival
>       thread-sort-key : thread
>    addrbook-sort-rule : fullname-with-lists-last
>      folder-sort-rule : alphabetical
>     goto-default-rule : inbox-or-folder-in-recent-collection
>  incoming-startup-rul : first-unseen
>          pruning-rule : ask-ask
>    folder-reopen-rule : ask-no-n
>  threading-display-st : struct
>  threading-index-styl : exp
>  threading-indicator- : >
>  threading-expanded-c : .
>  threading-lastreply- : \
>  display-character-se : UTF-8
>  posting-character-se : UTF-8
>  composer-wrap-column : 74
>   reply-indent-string : > 
>          reply-leadin : default
>  empty-header-message : undisclosed-recipients
>  use-only-domain-name : no
>         bugs-fullname : Sorry No Address
>          bugs-address : nobody
>      suggest-fullname : Sorry No Address
>       suggest-address : nobody
>        local-fullname : Local Support
>         local-address : postmaster
>   kblock-passwd-count : 1
>  keyword-surrounding- : "{" "} "
>  opening-text-separat :  - 
>        viewer-overlap : 2
>         scroll-margin : 0
>  status-message-delay : 0
>         busy-cue-rate : 12
>  mailcap-check-interv : 60
>   mail-check-interval : 150
>  mail-check-interval- : 0
>  maildrop-check-minim : 60
>            nntp-range : 0
>  max-remote-connectio : 3
>  incoming-check-timeo : 5
>  incoming-check-inter : 180
>  incoming-check-inter : 180
>     dead-letter-files : 1
>  newmail-window-width : 80
>        mail-directory : mail
>    folder-collections : mail/[]
>      news-collections : {news.gmane.org/nntp}#news.[]
>          address-book : .addressbook
>      standard-printer : lpr
>  last-time-prune-ques : 117.5
>     last-version-used : 6.21
>    user-input-timeout : 0
>  remote-abook-history : 3
>  remote-abook-validit : 5
>               printer : attached-to-ansi
>        elm-style-save : no
>       header-in-reply : no
>         feature-level : sappling
>       old-style-reply : no
>        save-by-sender : no
>           color-style : no-color
>  current-indexline-st : flip-colors
>  titlebar-color-style : default
>  normal-foreground-co : 000,000,000
>  normal-background-co : 255,255,255
>  title-foreground-col : 000,000,000
>  title-background-col : 255,255,000
>  title-closed-foregro : 255,255,255
>  title-closed-backgro : 255,000,000
>  keylabel-foreground- : 000,000,000
>  keylabel-background- : 255,255,255
>  selectable-item-fore : 000,000,000
>  selectable-item-back : 255,255,255
>  meta-message-foregro : 000,000,000
>  meta-message-backgro : 255,255,000
>  quote1-foreground-co : 000,000,000
>  quote1-background-co : 000,217,217
>  quote2-foreground-co : 000,000,000
>  quote2-background-co : 204,214,000
>  quote3-foreground-co : 000,000,000
>  quote3-background-co : 000,214,000
>  signature-foreground : 000,000,255
>  signature-background : 255,255,255
>  header-general-foreg : 000,000,000
>  header-general-backg : 255,255,255
>  index-to-me-foregrou : 000,000,000
>  index-to-me-backgrou : 000,174,174
>  index-important-fore : 240,240,240
>  index-important-back : 174,000,000
>  index-answered-foreg : 255,000,000
>  index-answered-backg : 174,174,000
>  index-new-foreground : 240,240,240
>  index-new-background : 174,000,174
>  index-opening-foregr : 192,192,192
>  index-opening-backgr : 255,255,255
>  smime-public-cert-di : .alpine-smime/public
>  smime-private-key-di : .alpine-smime/private
>  smime-cacert-directo : .alpine-smime/ca
>        wp-indexheight : 24
>           wp-aggstate : 1
>              wp-state : ""
> ======= Command_line_val options set =======
> ======= User_val options set (/home/user/.pinerc) =======
>         personal-name : ng0
>           smtp-server : localhost
>           nntp-server : news.gmane.org
>          feature-list : prefer-plain-text
>                       : scramble-message-id
>                       : suppress-user-agent-when-sending
>                       : enable-incoming-folders
>                       : downgrade-multipart-to-text
>       customized-hdrs : From: ng0 <ng0@pragmatique.xyz>
>      news-collections : {news.gmane.org/nntp}#news.[]
>  last-time-prune-ques : 117.5
>     last-version-used : 6.21
> ======= PostloadUser_val options set (postload) =======
> ======= Global_val options set (/gnu/store/h8l61a5aia625wvjcymmp628hzx5y629-alpine-2.21/lib/pine.conf) =======
>            inbox-path : inbox
>           default-fcc : sent-mail
>  default-saved-msg-fo : saved-messages
>      postponed-folder : postponed-msgs
>          trash-folder : Trash
>        signature-file : .signature
>    viewer-margin-left : 0
>   viewer-margin-right : 4
>  quote-suppression-th : 0
>   saved-msg-name-rule : default-folder
>         fcc-name-rule : default-fcc
>              sort-key : arrival
>       thread-sort-key : thread
>    addrbook-sort-rule : fullname-with-lists-last
>      folder-sort-rule : alphabetical
>     goto-default-rule : inbox-or-folder-in-recent-collection
>  incoming-startup-rul : first-unseen
>          pruning-rule : ask-ask
>    folder-reopen-rule : ask-no-n
>  threading-display-st : struct
>  threading-index-styl : exp
>  threading-indicator- : >
>  threading-expanded-c : .
>  threading-lastreply- : \
>  display-character-se : UTF-8
>  posting-character-se : UTF-8
>  composer-wrap-column : 74
>   reply-indent-string : > 
>          reply-leadin : default
>  empty-header-message : undisclosed-recipients
>  use-only-domain-name : no
>         bugs-fullname : Sorry No Address
>          bugs-address : nobody
>      suggest-fullname : Sorry No Address
>       suggest-address : nobody
>        local-fullname : Local Support
>         local-address : postmaster
>   kblock-passwd-count : 1
>  keyword-surrounding- : "{" "} "
>  opening-text-separat :  - 
>        viewer-overlap : 2
>         scroll-margin : 0
>  status-message-delay : 0
>         busy-cue-rate : 12
>  mailcap-check-interv : 60
>   mail-check-interval : 150
>  mail-check-interval- : 0
>  maildrop-check-minim : 60
>            nntp-range : 0
>  max-remote-connectio : 3
>  incoming-check-timeo : 5
>  incoming-check-inter : 180
>  incoming-check-inter : 180
>     dead-letter-files : 1
>  newmail-window-width : 80
>        mail-directory : mail
>    folder-collections : mail/[]
>          address-book : .addressbook
>      standard-printer : lpr
>    user-input-timeout : 0
>  remote-abook-history : 3
>  remote-abook-validit : 5
>               printer : attached-to-ansi
>        elm-style-save : no
>       header-in-reply : no
>         feature-level : sappling
>       old-style-reply : no
>        save-by-sender : no
>           color-style : no-color
>  current-indexline-st : flip-colors
>  titlebar-color-style : default
>  normal-foreground-co : 000,000,000
>  normal-background-co : 255,255,255
>  title-foreground-col : 000,000,000
>  title-background-col : 255,255,000
>  title-closed-foregro : 255,255,255
>  title-closed-backgro : 255,000,000
>  folder-foreground-co : 000,000,000
>  directory-foreground : 000,000,000
>  folder-list-text-for : 000,000,000
>  meta-message-foregro : 000,000,000
>  meta-message-backgro : 255,255,000
>  quote1-foreground-co : 000,000,000
>  quote1-background-co : 000,217,217
>  quote2-foreground-co : 000,000,000
>  quote2-background-co : 204,214,000
>  quote3-foreground-co : 000,000,000
>  quote3-background-co : 000,214,000
>  signature-foreground : 000,000,255
>  signature-background : 255,255,255
>  index-to-me-foregrou : 000,000,000
>  index-to-me-backgrou : 000,174,174
>  index-important-fore : 240,240,240
>  index-important-back : 174,000,000
>  index-answered-foreg : 255,000,000
>  index-answered-backg : 174,174,000
>  index-new-foreground : 240,240,240
>  index-new-background : 174,000,174
>  index-opening-foregr : 192,192,192
>  index-opening-backgr : 255,255,255
>  smime-public-cert-di : .alpine-smime/public
>  smime-private-key-di : .alpine-smime/private
>  smime-cacert-directo : .alpine-smime/ca
>        wp-indexheight : 24
>           wp-aggstate : 1
>              wp-state : ""
> ======= Fixed_val options set (NO pine.conf.fixed) =======
> ========== Feature settings ==========
>      allow-changing-from
>   no-alternate-compose-menu
>   no-alternate-role-menu
>   no-compose-cancel-confirm-uses-yes
>   no-compose-rejects-unqualified-addrs
>   no-compose-send-offers-first-filter
>   no-compose-cut-from-cursor
>   no-compose-maps-delete-key-to-ctrl-d
>   no-quell-dead-letter-on-cancel
>      enable-alternate-editor-cmd
>   no-enable-alternate-editor-implicitly
>      enable-search-and-replace
>   no-enable-sigdashes
>   no-quell-mailchecks-composing-except-inbox
>   no-quell-mailchecks-composing-inbox
>   no-quell-user-lookup-in-passwd-file
>   no-spell-check-before-sending
>   no-alternate-reply-menu
>   no-copy-to-address-to-from-if-it-is-us
>   no-enable-reply-indent-string-editing
>   no-include-attachments-in-reply
>   no-include-header-in-reply
>   no-include-text-in-reply
>   no-reply-always-uses-reply-to
>   no-signature-at-bottom
>   no-strip-from-sigdashes-on-reply
>   no-forward-as-attachment
>   no-preserve-original-fields
>   no-disable-sender
>   no-use-sender-not-x-sender
>   no-quell-flowed-text
>      downgrade-multipart-to-text
>      enable-8bit-esmtp-negotiation
>   no-enable-background-sending
>   no-enable-delivery-status-notification
>   no-enable-verbose-smtp-posting
>   no-fcc-without-attachments
>   no-fcc-on-bounce
>   no-return-path-uses-domain-name
>   no-mark-fcc-seen
>   no-fcc-only-without-confirm
>   no-send-without-confirm
>   no-strip-whitespace-before-send
>   no-warn-if-blank-fcc
>   no-warn-if-blank-subject
>   no-warn-if-blank-to-and-cc-and-newsgroups
>   no-combined-folder-display
>   no-combined-subdirectory-display
>   no-enable-lame-list-mode
>   no-enable-dot-folders
>      enable-incoming-folders
>   no-enable-incoming-folders-checking
>   no-incoming-checking-includes-total
>   no-incoming-checking-uses-recent
>   no-expanded-view-of-folders
>   no-quell-empty-directories
>   no-separate-folder-and-directory-entries
>   no-single-column-folder-list
>   no-sort-default-fcc-alpha
>   no-sort-default-save-alpha
>   no-vertical-folder-list
>   no-use-courier-folder-list
>   no-combined-addrbook-display
>   no-expanded-view-of-addressbooks
>   no-expanded-view-of-distribution-lists
>   no-ldap-result-to-addrbook-add
>   no-auto-open-next-unread
>   no-enable-circular-tab
>   no-continue-tab-without-confirm
>   no-convert-dates-to-localtime
>      delete-skips-deleted
>   no-disable-index-locale-dates
>   no-enable-cruise-mode
>   no-enable-cruise-mode-delete
>      mark-for-me-in-group
>      mark-for-cc
>   no-next-thread-without-confirm
>   no-return-to-inbox-without-confirm
>   no-show-sort
>   no-tab-uses-unseen-for-next-folder
>   no-tab-visits-next-new-message-only
>   no-thread-index-shows-important-color
>   no-thread-sorts-by-arrival
>   no-enhanced-fancy-thread-support
>   no-enable-msg-view-addresses
>   no-enable-msg-view-attachments
>      enable-msg-view-urls
>      enable-msg-view-web-hostnames
>   no-enable-msg-view-long-url
>   no-enable-msg-view-forced-arrows
>   no-pass-c1-control-characters-as-is
>   no-pass-control-characters-as-is
>      prefer-plain-text
>   no-quell-charset-warning
>   no-quell-server-after-link-in-html
>   no-compose-sets-newsgroup-without-confirm
>   no-enable-8bit-nntp-posting
>   no-enable-multiple-newsrcs
>   no-mult-newsrc-hostnames-as-typed
>   no-hide-nntp-path
>      news-approximates-new-status
>   no-news-deletes-across-groups
>   no-news-offers-catchup-on-close
>   no-news-post-without-validation
>   no-news-read-in-newsrc-order
>      nntp-search-uses-overview
>   no-predict-nntp-server
>   no-quell-extra-post-prompt
>   no-enable-print-via-y-command
>   no-print-formfeed-between-messages
>   no-print-includes-from-line
>   no-print-index-enabled
>   no-print-offers-custom-cmd-prompt
>      enable-aggregate-command-set
>      enable-arrow-navigation
>      enable-arrow-navigation-relaxed
>      enable-bounce-cmd
>      enable-exit-via-lessthan-command
>      enable-flag-cmd
>   no-enable-flag-screen-implicitly
>      enable-flag-screen-keyword-shortcut
>   no-enable-full-header-and-text
>      enable-full-header-cmd
>      enable-goto-in-file-browser
>      enable-jump-shortcut
>      enable-partial-match-lists
>      enable-tab-completion
>      enable-unix-pipe-cmd
>   no-quell-full-header-auto-reset
>   no-allow-talk
>   no-assume-slow-link
>   no-auto-move-read-msgs
>   no-auto-move-read-msgs-using-rules
>   no-auto-unselect-after-apply
>      auto-unzoom-after-apply
>      auto-zoom-after-select
>   no-busy-cue-spinner-only
>   no-check-newmail-when-quitting
>   no-confirm-role-even-for-default
>   no-disable-keymenu
>   no-disable-password-caching
>   no-disable-regular-expression-matching-for-alternate-addresses
>   no-disable-save-input-history
>   no-disable-take-fullname-in-addresses
>   no-disable-take-last-comma-first
>   no-disable-terminal-reset-for-display-filters
>   no-enable-dot-files
>   no-enable-fast-recent-test
>   no-enable-mail-check-cue
>   no-enable-mailcap-param-substitution
>   no-enable-mouse-in-xterm
>   no-enable-newmail-in-xterm-icon
>   no-enable-newmail-short-text-in-icon
>   no-enable-suspend
>   no-enable-take-export
>   no-enable-rules-under-take
>   no-expose-hidden-config
>   no-expunge-only-manually
>   no-expunge-without-confirm
>   no-expunge-without-confirm-everywhere
>   no-force-arrow-cursor
>   no-ignore-size-changes
>   no-maildrops-preserve-state
>   no-offer-expunge-of-inbox
>   no-offer-expunge-of-stayopen-folders
>   no-preopen-stayopen-folders
>   no-preserve-start-stop-characters
>   no-quell-folder-internal-msg
>   no-quell-partial-fetching
>   no-prune-uses-yyyy-mm
>   no-quit-without-confirm
>   no-quote-replace-nonflowed
>      save-aggregates-copy-sequence
>   no-save-partial-msg-without-confirm
>   no-save-will-advance
>   no-save-will-not-delete
>   no-save-will-quote-leading-froms
>      scramble-message-id
>   no-select-without-confirm
>   no-show-cursor
>   no-show-plain-text-internally
>   no-show-selected-in-boldface
>   no-slash-collapses-entire-thread
>   no-suppress-asterisks-in-password-prompt
>   no-quell-attachment-extension-warn
>   no-quell-attachment-extra-prompt
>   no-quell-berkeley-format-timezone
>   no-quell-content-id
>   no-quell-filtering-done-message
>   no-quell-filtering-messages
>   no-quell-imap-envelope-update
>   no-quell-lock-failure-warnings
>   no-quell-maildomain-warning
>   no-quell-news-envelope-update
>   no-quell-status-message-beeping
>   no-quell-timezone-comment-when-sending
>      suppress-user-agent-when-sending
>   no-tab-checks-recent
>   no-termdef-takes-precedence
>   no-try-alternative-authentication-driver-first
>   no-unselect-will-not-advance
>   no-use-current-dir
>   no-use-function-keys
>   no-use-regular-startup-rule-for-stayopen-folders
>   no-use-resent-to-in-rules
>   no-use-subshell-for-suspend
>   no-use-system-translation
>   no-disable-config-cmd
>   no-disable-keyboard-lock-cmd
>   no-disable-password-cmd
>   no-disable-pipes-in-sigs
>   no-disable-pipes-in-templates
>   no-disable-roles-setup-cmd
>   no-disable-roles-sig-edit
>   no-disable-roles-template-edit
>   no-disable-setlocale-collate
>   no-disable-shared-namespaces
>   no-disable-signature-edit-cmd
>      new-thread-on-blank-subject
>   no-quell-personal-name-prompt
>   no-quell-user-id-prompt
>   no-smime-dont-do-smime
>   no-smime-encrypt-by-default
>   no-smime-remember-passphrase
>   no-smime-sign-by-default
>      smime-use-store-only
>   no-selectable-item-nobold
>   no-send-confirms-only-expanded
>   no-enable-jump-cmd
>   no-enable-newmail-sound
>   no-render-html-internally
> Userid: user
> Fullname: "ng0"
> Incomplete maildomain "localhost".
> Return address in mail you send may be incorrect.
> User domain name being used ""
> Local Domain name being used "localhost"
> Host name being used "localhost"
> Mail Domain name being used (by c-client too) "localhost"
> new win size -----<46 194>------
> Terminal type: xterm
> About to open folder "INBOX"    inbox is: "INBOX"
> Opened folder "inbox" with 0 messages
> Sorting by Arrival
> 
> 
>     ---- MAIN_MENU_SCREEN ----
> 
> 
>     ---- QUIT SCREEN ----
> Want_to read: Down Arrow (0x40000101)
> Want_to read: Down Arrow (0x40000101)
> Want_to read: y (0x79)
> goodnight_gracey:
> - trim_remote_adrbks -
> expunge_and_close: "INBOX"
> - completely_done_with_adrbks -
> about to end_tty_driver
> goodnight_gracey finished




-- 
ng0
GnuPG: A88C8ADD129828D7EAC02E52E22F9BBFEE348588
GnuPG: https://n0is.noblogs.org/my-keys
https://www.infotropique.org https://krosos.org

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

* bug#26967: alpine: provide system-wide config
  2017-08-14 12:04     ` [bug#26967] " ng0
@ 2017-10-18 22:54       ` Ricardo Wurmus
  0 siblings, 0 replies; 5+ messages in thread
From: Ricardo Wurmus @ 2017-10-18 22:54 UTC (permalink / raw)
  To: ng0; +Cc: 26967-done


ng0 <ng0@pragmatique.xyz> writes:

> I'm not using alpine, so I'll leave this bug open for anyone who
> uses alpine and wants to solve it.

I think that the bug report as it is now is not actionable.  Since
neither of us are using alpine and it is not clear to me that this patch
clearly improves the package, I’m closing this now.

If there really is a bug in our alpine package, please submit a bug with
a clear summary and problem description to bug-guix@gnu.org.

Thanks!

-- 
Ricardo

GPG: BCA6 89B6 3655 3801 C3C6  2150 197A 5888 235F ACAC
https://elephly.net

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

end of thread, other threads:[~2017-10-19 10:43 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-05-17 17:31 bug#26967: alpine: provide system-wide config ng0
2017-05-30 21:28 ` Ricardo Wurmus
2017-05-30 23:03   ` ng0
2017-08-14 12:04     ` [bug#26967] " ng0
2017-10-18 22:54       ` bug#26967: " Ricardo Wurmus

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).