Jump to content
Main menu
Main menu
move to sidebar
hide
Navigation
Main page
Recent changes
Random page
Help about MediaWiki
Baltimore Node Wiki
Search
Search
Appearance
Create account
Log in
Personal tools
Create account
Log in
Pages for logged out editors
learn more
Contributions
Talk
Editing
WikiTips
Page
Discussion
English
Read
Edit
Edit source
View history
Tools
Tools
move to sidebar
hide
Actions
Read
Edit
Edit source
View history
General
What links here
Related changes
Special pages
Page information
Appearance
move to sidebar
hide
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
''As of 2019, the wiki has been updated to be a little easier to use. But, for the time being, [[User:Jnm|John Milner]] has taken up the mantle of administrating the wiki, and fixing it when something seems broken.'' ===2019=== New tip: If you want to make a wiki edit, but you're a little stuck, ask about it on the [https://discuss.baltimorenode.org/ discussion forum], or during [[OpenHack]]. ===2010 - 2018=== [[We Have A Wiki|We have a wiki?]] ===2009=== Tips page on how to use the Wiki. To add a signature: <nowiki>~~~</nowiki> for your username. <nowiki>~~~~</nowiki> for your username and time stamp. To create a new Meeting Page using the Template: <nowiki>{{subst:Meeting Notes}}</nowiki> save and edit ---- We're using the [https://www.mediawiki.org/wiki/Extension:SendGrid SendGrid extension] for email now, but it didn't respect [[MediaWiki:Emailsender]]. Here's a quick hack to fix that: <nowiki>diff --git a/SendGridHooks.php b/SendGridHooks.php index c11a1ca..e47db92 100644 --- a/SendGridHooks.php +++ b/SendGridHooks.php @@ -63,7 +63,9 @@ class SendGridHooks { } // Get $to and $from email addresses from the array and MailAddress object respectively - $from = new SendGrid\Email( null, $from->address ); + global $wgEnotifUseRealName; + $from_name = ( $wgEnotifUseRealName && $from->realName !== '' ) ? $from->realName : $from->name; + $from = new SendGrid\Email( $from_name, $from->address ); $to = new SendGrid\Email( null, $to[0]->address ); $body = new SendGrid\Content( "text/plain", $body ); $mail = new SendGrid\Mail( $from, $subject, $to, $body ); </nowiki>
Summary:
Please note that all contributions to Baltimore Node Wiki may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see
Baltimore Node Wiki:Copyrights
for details).
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)