This document contains guidelines for contributing code to aerc. It has to be followed in order for your patch to be approved and applied.
Anyone can contribute to aerc. First you need to clone the repository and build the project:
$ git clone https://git.sr.ht/~rjarry/aerc
$ cd aerc
$ gmake
Patch the code. Write some tests. Ensure that your code is properly formatted
with gofumpt
. Ensure that everything builds and works as expected. Ensure
that you did not break anything.
- If applicable, update unit tests.
- If adding a new feature, please consider adding new tests.
- Do not forget to update the docs.
- Run the linter using
gmake lint
.
Once you are happy with your work, you can create a commit (or several commits). Follow these general rules:
-
Limit the first line (title) of the commit message to 60 characters.
-
Use a short prefix for the commit title for readability with
git log --oneline
. Do not use thefix:
norfeature:
prefixes. See recent commits for inspiration. -
Only use lower case letters for the commit title except when quoting symbols or known acronyms.
-
Use the body of the commit message to actually explain what your patch does and why it is useful. Even if your patch is a one line fix, the description is not limited in length and may span over multiple paragraphs. Use proper English syntax, grammar and punctuation.
-
Address only one issue/topic per commit.
-
Describe your changes in imperative mood, e.g. "make xyzzy do frotz" instead of "[This patch] makes xyzzy do frotz" or "[I] changed xyzzy to do frotz", as if you are giving orders to the codebase to change its behaviour.
-
If you are fixing a ticket, use appropriate commit trailers.
-
If you are fixing a regression introduced by another commit, add a
Fixes:
trailer with the commit id and its title. -
When in doubt, follow the format and layout of the recent existing commits.
-
If your commit brings visible changes for end-users, add one of the following trailers with a short and concise description of the change. The change should be described in full sentences, starting with a capital letter and ending in a period.
Changelog-added:
for new features.Changelog-fixed:
for bug fixes.Changelog-changed:
for behaviour or config format changes.Changelog-deprecated:
for deprecation or removal of functionality.
If a complete trailer is longer than 72 characters, it can be continued by indenting extra lines with a single space. The trailer text must be valid markdown. You can take inspiration from existing entries in CHANGELOG.md.
-
The following trailers are accepted in commits. If you are using multiple trailers in a commit, it's preferred to also order them according to this list. Note, that the
commit-msg
hook (see below for installing) will automatically sort them for you when committing.Closes: <URL>
closes the ticket with the neutralCLOSED
resolution.Fixes: <URL>
closes the ticket with theFIXED
resolution.Fixes: <sha> ("<title>")
reference the commit that introduced a regression.Implements: <URL>
closes the ticket with theIMPLEMENTED
resolution.References: <URL>
adds a comment to the ticket.Link:
Changelog-added:
Changelog-fixed:
Changelog-changed:
Changelog-deprecated:
Cc:
Suggested-by:
Requested-by:
Reported-by:
Co-authored-by:
Signed-off-by:
compulsory!Tested-by:
used in review after submission to the mailing list. If minimal changes occur between respins, feel free to include that into your respin to keep track of previous reviews.Reviewed-by:
used in review after submission. If minimal changes occur between respins, feel free to include that into your respin to keep track of previous reviews.Acked-by:
used in review after submission.
There is a great reference for commit messages in the Linux kernel documentation.
IMPORTANT: you must sign-off your work using git commit --signoff
. Follow the
Linux kernel developer's certificate of origin for more
details. All contributions are made under the MIT license. If you do not want
to disclose your real name, you may sign-off using a pseudonym. Here is an
example:
Signed-off-by: Robin Jarry <[email protected]>
Before sending the patch, you should configure your local clone with sane defaults:
$ gmake gitconfig
git config format.subjectPrefix "PATCH aerc"
git config sendemail.to "~rjarry/[email protected]"
git config format.notes true
git config notes.rewriteRef refs/notes/commits
git config notes.rewriteMode concatenate
ln -s ../../contrib/commit-msg .git/hooks/commit-msg
+ ln -s ../../contrib/sendemail-validate .git/hooks/sendemail-validate
+ git config sendemail.validate true
And send the patch to the mailing list (step-by-step instructions):
$ git send-email --annotate -1
If you are sending a patch against the wiki
branch, make sure to change the
subject prefix to avoid triggering the automated builds that will inevitably
fail:
$ git send-email --annotate -1 --subject-prefix="PATCH aerc/wiki"
Before your patch can be applied, it needs to be reviewed and approved by others. They will indicate their approval by replying to your patch with a Tested-by, Reviewed-by or Acked-by (see also: the git wiki) trailer. For example:
Acked-by: Robin Jarry <[email protected]>
There is no "chain of command" in aerc. Anyone that feels comfortable enough to "ack" or "review" a patch should express their opinion freely with an official Acked-by or Reviewed-by trailer. If you only tested that a patch works as expected but did not conduct a proper code review, you can indicate it with a Tested-by trailer.
You can follow the review process via email and on the web ui.
Wait for feedback. Address comments and amend changes to your original commit. Then you should send a v2 (and maybe a v3, v4, etc.):
$ git send-email --annotate -v2 -1
Be polite, patient and address all of the reviewers' remarks. If you disagree with something, feel free to discuss it.
To help reviewers track what changed between respins of your patch, it is nice
to include a mini change log after the ---
line that separates your
commit message from the diff. You can either do that manually when reviewing
(git send-email --annotate
) before sending your email, or you can use git
notes to make this part of your git workflow:
$ git notes edit $ref
When format.notes = true
is set in your git configuration, notes attached to
commits will automatically be included in the correct location by git format-patch
and git send-email
.
If you have set notes.rewriteMode = concatenate
, squashing commits together
with git rebase -i
will also merge their respective notes by concatenating
them.
Once your patch has been reviewed and approved (and if the maintainer is OK with it), it will be applied and pushed.
IMPORTANT: Do NOT use --in-reply-to
when sending followup versions of a patch
set. It causes multiple versions of the same patch to be merged under v1 in the
web ui
Please refer only to the quoted sections when guidelines are sourced from outside documents as some rules of the source material may conflict with other rules set out in this document.
When updating an existing file, respect the existing coding style unless there is a good reason not to do so.
Indentation rules follow the Linux kernel coding style:
Tabs are 8 characters, and thus indentations are also 8 characters. […]
Rationale: The whole idea behind indentation is to clearly define where a block of control starts and ends. Especially when you’ve been looking at your screen for 20 straight hours, you’ll find it a lot easier to see how the indentation works if you have large indentations. — Linux kernel coding style
Wrapping rules follow the Linux kernel coding style:
Coding style is all about readability and maintainability using commonly available tools.
The preferred limit on the length of a single line is 80 columns.
Statements longer than 80 columns should be broken into sensible chunks, unless exceeding 80 columns significantly increases readability and does not hide information. […] These same rules are applied to function headers with a long argument list.
However, never break user-visible strings such as printk messages because that breaks the ability to grep for them. — Linux kernel coding style
Whether or not wrapping lines is acceptable can be discussed on IRC or the mailing list, when in doubt.
Function rules follow the Linux kernel coding style:
Functions should be short and sweet, and do just one thing. They should fit on one or two screenfuls of text (the ISO/ANSI screen size is 80x24, as we all know), and do one thing and do that well.
The maximum length of a function is inversely proportional to the complexity and indentation level of that function. So, if you have a conceptually simple function that is just one long (but simple) case-statement, where you have to do lots of small things for a lot of different cases, it’s OK to have a longer function.
However, if you have a complex function, and you suspect that a less-than-gifted first-year high-school student might not even understand what the function is all about, you should adhere to the maximum limits all the more closely. Use helper functions with descriptive names (you can ask the compiler to in-line them if you think it’s performance-critical, and it will probably do a better job of it than you would have done).
Another measure of the function is the number of local variables. They shouldn’t exceed 5-10, or you’re doing something wrong. Re-think the function, and split it into smaller pieces. A human brain can generally easily keep track of about 7 different things, anything more and it gets confused. You know you’re brilliant, but maybe you’d like to understand what you did 2 weeks from now. — Linux kernel coding style
Function rules follow the Linux kernel coding style:
Comments are good, but there is also a danger of over-commenting. NEVER try to explain HOW your code works in a comment: it’s much better to write the code so that the working is obvious, and it’s a waste of time to explain badly written code.
Generally, you want your comments to tell WHAT your code does, not HOW. Also, try to avoid putting comments inside a function body: if the function is so complex that you need to separately comment parts of it, you should probably go back to [the previous section regarding functions] for a while. You can make small comments to note or warn about something particularly clever (or ugly), but try to avoid excess. Instead, put the comments at the head of the function, telling people what it does, and possibly WHY it does it.
When commenting […] API functions, please use the [GoDoc] format. See the official documentation for details. — Linux kernel coding style
Some editors can interpret configuration information embedded in source files, indicated with special markers. For example, emacs interprets lines marked like this:
-*- mode: c -*-
Or like this:
/* Local Variables: compile-command: "gcc -DMAGIC_DEBUG_FLAG foo.c" End: */
Vim interprets markers that look like this:
/* vim:set sw=8 noet */
Do not include any of these in source files. People have their own personal editor configurations, and your source files should not override them. This includes markers for indentation and mode configuration. People may use their own custom mode, or may have some other magic method for making indentation work correctly. — Linux kernel coding style
In the same way, files specific to only your workflow (for example the .idea
or .vscode
directory) are not desired. If a script might be useful to other
contributors, it can be sent as a separate patch that adds it to the contrib
directory. Since it is not editor-specific, an
.editorconfig
is available in the repository.
The Go-code follows the rules of gofumpt which is equivalent to
gofmt but adds a few additional rules. The code can be automatically formatted
by running gmake fmt
.
If gofumpt accepts your code it's most likely properly formatted.
Aerc allows logging messages to a file. Either by redirecting the output to
a file (e.g. aerc > log
), or by configuring log-file
in aerc.conf
.
Logging messages are associated with a severity level, from lowest to highest:
trace
, debug
, info
, warn
, error
.
Messages can be sent to the log file by using the following functions:
log.Errorf()
: Use to report serious (but non-fatal) errors.log.Warnf()
: Use to report issues that do not affect normal use.log.Infof()
: Use to display important messages that may concern non-developers.log.Debugf()
: Use to display non-important messages, or debugging details.log.Tracef()
: Use to display only low level debugging traces.
All doc/*.scd
files are written in the scdoc format and compiled to
man pages.
For consistent rendering, please respect the following guidelines:
- use
*:command*
to reference commands - use
*-x*
for flags - use
_<arg>_
argument placeholders that must be replaced by a suitable value - use
_foobar.conf_
for file paths - use
_true_
,_0_
,_constant_
for literal constants that must be typed as is - use
[*-x*]
or[_<arg>_]
for optional flags/arguments - use
*-x*|*-y*
for mutually exclusive flags/arguments - use
*[section]*
to reference sections in configuration files - use
*foo*
or*[section].foo*
to reference settings - if an option does not have a default value, simply omit it
- use
*FOO*
and*$FOO*
for environment variables - only use
_"quoted values"_
when white space matters - put command alternatives/aliases on separate lines with
++
suffixes - use
*<c-x>*
or*<enter>*
to reference key strokes - use
# UPPER CASE
for man page sections - use
*aerc-config*(5)
to reference other man pages - use
aerc
(instead of*aerc*
or_aerc_
) to reference the aerc project or the aerc program