Error:
Couldn't drop privileges: User is missing UID (see mail_uid setting)
Switch include order in conf.d/10-auth.conf to fix the problem.
diff --git a/conf.d/10-auth.conf b/conf.d/10-auth.conf
index e9cfd05..fbfed63 100644| ✔ kojima:kojiMac ~$ mutt | |
| dyld: Library not loaded: /usr/local/opt/notmuch/lib/libnotmuch.4.dylib | |
| Referenced from: /usr/local/bin/mutt | |
| Reason: image not found | |
| mutt: warning: mutt crashed, killed by SIGABRT. | |
| mutt itself has not crashed, but for transparency, | |
| it will now kill itself (without dumping core) with the same signal | |
| warnings can be silenced by the --no-warnings (-n) option |
| #!/usr/bin/perl | |
| use strict; | |
| use warnings; | |
| use Mojo::UserAgent; | |
| use Mojo::IOLoop; | |
| our $INSTANCES_URL = 'https://instances.mastodon.xyz/instances.json'; | |
| my $ua = Mojo::UserAgent->new; | |
| $ua->max_redirects(3); |
| function! s:ToggleCase() | |
| let cur_word = expand("<cword>") | |
| if cur_word == '' | |
| return | |
| endif | |
| let new_word = '' | |
| if toupper(cur_word)==#cur_word " CONST_ISH | |
| let new_word = tolower(cur_word) | |
| elseif cur_word =~ '_' " snake_case |
| (function (g) { | |
| var d = g.document | |
| filter = prompt('Feed me a filtering regex:'), | |
| regex = new RegExp(filter, 'gi'); | |
| display = function (value) { | |
| [].forEach.call(d.querySelectorAll('.status'), function (n) { | |
| var c, t; | |
| if (value !== 'block') { | |
| c = n.querySelector('.status__content'); | |
| t = c.innerText || c.textContent; |
| $.fn.extend({ | |
| reduce: function (cb, init) { | |
| this.each(function (i) { | |
| if (i === 0 && typeof init === 'undefined') { | |
| init = $(this); | |
| } else { | |
| init = cb.call($(this), init); | |
| } | |
| }); | |
| return init; |
| # | |
| # http://perldoc.perl.org/CORE.html#OVERRIDING-CORE-FUNCTIONS | |
| # > To override a built-in globally (that is, in all namespaces), you need to | |
| # > import your function into the CORE::GLOBAL pseudo-namespace at compile | |
| # > time: | |
| # > | |
| # > BEGIN { | |
| # > *CORE::GLOBAL::hex = sub { | |
| # > # ... your code here | |
| # > }; |
Error:
Couldn't drop privileges: User is missing UID (see mail_uid setting)
Switch include order in conf.d/10-auth.conf to fix the problem.
diff --git a/conf.d/10-auth.conf b/conf.d/10-auth.conf
index e9cfd05..fbfed63 100644| # http://connect.microsoft.com/IE/feedback/details/807447/ie-11-metro-version-submitting-form-fails-if-input-tag-has-no-name-attribute | |
| //form[not(.//input) or count(.//input[@name] == 0)] |
| plenv install 5.8.9 \ | |
| -Dcc=gcc \ | |
| -Dld=g++ \ | |
| -Dusethreads \ | |
| -Duseithreads \ | |
| -Duseshrplib \ | |
| -Accflags="-isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.8.sdk" \ | |
| -Accflags="-mmacosx-version-min=10.6" \ | |
| -Accflags="-arch i386 -DUSE_SITECUSTOMIZE -Duselargefiles" \ | |
| -Aldflags="-Wl,-search_paths_first -arch i386" \ |
| #!/bin/sh | |
| anchor="dist.ini" | |
| dir_p="$PWD" found= src_root= | |
| while [ -n "$dir_p" ] | |
| do | |
| found=$(find "$dir_p" -maxdepth 1 -name "$anchor") | |
| [ -n "$found" ] && break | |
| dir_p="${dir_p%/*}" |