Github messages for mblaze
 help / color / mirror / Atom feed
From: Eluminae <Eluminae@users.noreply.github.com>
To: ml@inbox.vuxu.org
Subject: [PR PATCH] Add a template argument to hyrate default body
Date: Tue, 06 Jul 2021 18:18:43 +0200	[thread overview]
Message-ID: <gh-mailinglist-notifications-fa6558a0-26e0-48f6-803f-f5a8af34f6a8-mblaze-211@inbox.vuxu.org> (raw)

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

There is a new pull request by Eluminae against master on the mblaze repository

https://github.com/Eluminae/mblaze template
https://github.com/leahneukirchen/mblaze/pull/211

Add a template argument to hyrate default body
I firstly though about adapting SIGNATURE. The thing is that people probably rely on existing configuration so I added a simple argument for that.

A patch file from https://github.com/leahneukirchen/mblaze/pull/211.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-template-211.patch --]
[-- Type: text/x-diff, Size: 1127 bytes --]

From 20176430ebebcf69d928efc50bfe8f24de6f97ae Mon Sep 17 00:00:00 2001
From: Stacy Harper <contact@stacyharper.net>
Date: Tue, 6 Jul 2021 17:35:13 +0200
Subject: [PATCH] Add a template argument to hyrate default body

---
 mcom | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

diff --git a/mcom b/mcom
index 4c1027f..cca1c47 100755
--- a/mcom
+++ b/mcom
@@ -110,6 +110,7 @@ defaultc=e
 hdrs=
 resume=
 noquote=
+template=
 case "$0" in
 *mcom*)
 	hdr=to
@@ -137,6 +138,11 @@ case "$0" in
 				shift
 			fi
 			;;
+		-t)
+			shift
+			template="$1"
+			shift
+			;;
 		-send)
 			defaultc=justsend
 			shift;;
@@ -214,6 +220,11 @@ case "$0" in
 		-send)
 			defaultc=justsend
 			shift;;
+		-t)
+			shift
+			template="$1"
+			shift
+			;;
 		-noquote)
 			noquote=1
 			shift;;
@@ -403,6 +414,14 @@ fi
 	case "$0" in
 	*mbnc*) ;;
 	*)
+		if [ -n "$template" ]; then
+			if [ ! -r "$template" ]; then
+				printf "The template %s in unredeable\n" "$template" >&2
+				exit 1
+			fi
+			cat "$template"
+		fi
+
 		if [ -f "$MBLAZE/signature" ]; then
 			SIGNATURE="$MBLAZE/signature"
 		elif [ -f ~/.signature ]; then

             reply	other threads:[~2021-07-06 16:18 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-07-06 16:18 Eluminae [this message]
2021-07-06 16:27 ` leahneukirchen
2021-07-06 16:31 ` Eluminae
2021-07-06 16:31 ` [PR PATCH] [Closed]: " Eluminae

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=gh-mailinglist-notifications-fa6558a0-26e0-48f6-803f-f5a8af34f6a8-mblaze-211@inbox.vuxu.org \
    --to=eluminae@users.noreply.github.com \
    --cc=ml@inbox.vuxu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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 NNTP newsgroup(s).