<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
<channel>
<title>Super Howtos - Recent questions without answers</title>
<link>http://superhowtos.com/unanswered</link>
<description>Powered by Question2Answer</description>
<item>
<title>How to use own personalised email address with gmail.com</title>
<link>http://superhowtos.com/9/how-to-use-own-personalised-email-address-with-gmail-com</link>
<description>&lt;p&gt;In this article we learn how to use our personalised email e.g. &lt;code&gt;joe@example.com&lt;/code&gt; in gmail.com.
In our approach we assume that you already have another gmail account, say &lt;code&gt;joe@gmail.com&lt;/code&gt;.
After you finish the setting described bellow you will be able to use both emails under single gmail account.&lt;/p&gt;

&lt;p&gt;There are two ways an email is used:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;receiving emails&lt;/li&gt;
&lt;li&gt;sending emails&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;Receiving emails&lt;/h2&gt;

&lt;p&gt;Setting up personalised emails to be received in gmail.com has surprisingly nothing to do in gmail.com itself.
This magic must be done where your domain &lt;code&gt;example.com&lt;/code&gt; is hosted.
The best option is the set an email forwarding from &lt;code&gt;joe@example.com&lt;/code&gt; to &lt;code&gt;joe@gmail.com&lt;/code&gt;.
Please consult this with your domain hosting provider.&lt;/p&gt;

&lt;h2&gt;Sending emails&lt;/h2&gt;

&lt;p&gt;All you need is to add &lt;code&gt;joe@example.com&lt;/code&gt; as another &quot;Send mail as&quot; account.
Then, when you compose a new message you can simply choose the &quot;From&quot; email of your choice.
Just click on &quot;From&quot; field and a list of registered personalised emails is shown.&lt;/p&gt;

&lt;p&gt;This is how you set it all up:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;click on &lt;code&gt;Settings&lt;/code&gt; icon (top right corner in gmail)&lt;/li&gt;
&lt;li&gt;click on &lt;code&gt;Settings&lt;/code&gt; menu item&lt;/li&gt;
&lt;li&gt;click on &lt;code&gt;Accounts and Import&lt;/code&gt; tab&lt;/li&gt;
&lt;li&gt;scroll to section &lt;code&gt;Send mail as:&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;click on &lt;code&gt;Add another email address&lt;/code&gt; link&lt;/li&gt;
&lt;li&gt;new window will open. There you enter your name and the personalised email &lt;code&gt;joe@example.com&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;keep the &lt;code&gt;Treat as an alias&lt;/code&gt; box checked on&lt;/li&gt;
&lt;li&gt;click on &lt;code&gt;Next Step&lt;/code&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Now the tricky part starts. You must specify a server used for sending your emails.
Typically it would be a google's server but Google has added lately new security which makes it difficult.&lt;/p&gt;

&lt;p&gt;You have two options now:&lt;/p&gt;

&lt;p&gt;a. allow access for &quot;less secure apps&quot;. &lt;a rel=&quot;nofollow&quot; href=&quot;https://support.google.com/accounts/answer/6010255&quot;&gt;Follow google how to do it&lt;/a&gt;&lt;br&gt;
Then use &lt;code&gt;smtp.gmail.com&lt;/code&gt; as SMTP server and your gmail username and password.&lt;/p&gt;

&lt;p&gt;b. Use your own SMTP server. If you have own custom email other then gmail then you might have a hosting with it. 
With hosting there usually go also email accounts and associated SMPT server. Ask you hosting provider to get one for you.&lt;/p&gt;
</description>
<category>Misc</category>
<guid isPermaLink="true">http://superhowtos.com/9/how-to-use-own-personalised-email-address-with-gmail-com</guid>
<pubDate>Wed, 14 Feb 2018 13:56:59 +0000</pubDate>
</item>
<item>
<title>git clone/pull/push including all dependent submodules</title>
<link>http://superhowtos.com/8/git-clone-pull-push-including-all-dependent-submodules</link>
<description>&lt;pre&gt;&lt;code&gt;git clone --recursive -j8 https://user@bitbucket.org/path
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Use the same also for pull and push&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;git push --recurse-submodules
git pull --recurse-submodules
&lt;/code&gt;&lt;/pre&gt;
</description>
<category>Misc</category>
<guid isPermaLink="true">http://superhowtos.com/8/git-clone-pull-push-including-all-dependent-submodules</guid>
<pubDate>Thu, 01 Feb 2018 10:32:17 +0000</pubDate>
</item>
<item>
<title>Wiki solution</title>
<link>http://superhowtos.com/5/wiki-solution</link>
<description>&lt;h1&gt;Product&lt;/h1&gt;

&lt;p&gt;I use &lt;a rel=&quot;nofollow&quot; href=&quot;http://www.pmwiki.org/wiki/PmWiki/PasswordsAdmin&quot;&gt;pmwiki&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;Markdown&lt;/h1&gt;

&lt;p&gt;As markdown use: &lt;a rel=&quot;nofollow&quot; href=&quot;http://www.pmwiki.org/wiki/Cookbook/MarkdownMarkupExtension&quot;&gt;Markdown extension&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;Restrict access&lt;/h1&gt;

&lt;p&gt;Either you have single admin password (no user name) or you use authuser.php module to allow users.&lt;/p&gt;

&lt;p&gt;In config you need to set permissions:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;# require valid login before viewing pages
$DefaultPasswords['read'] = 'id:*';

# All admins and Fred and Tom may edit -&amp;gt; only if authuser.php is used!!!
$DefaultPasswords['edit'] = array('@admins', 'id:Fred,Tom');
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;To hide passwords:&lt;/p&gt;

&lt;p&gt;&lt;a rel=&quot;nofollow&quot; href=&quot;https://wiki.superhowtos.com/pmwiki.php?n=PmWiki.PasswordsAdmin#crypt&quot;&gt;crypt function&lt;/a&gt;&lt;br&gt;
&lt;a rel=&quot;nofollow&quot; href=&quot;https://wiki.superhowtos.com/?action=crypt&quot;&gt;crypt pass form&lt;/a&gt;&lt;/p&gt;
</description>
<category>dev-sites</category>
<guid isPermaLink="true">http://superhowtos.com/5/wiki-solution</guid>
<pubDate>Thu, 18 Jan 2018 09:29:26 +0000</pubDate>
</item>
</channel>
</rss>