Friday 13 July 2018

How to set up E-mail server for local development

Many developers look for a solution to test mail functionality for their local development work in order to test if the email functionality working fine or not, before they can proceed with deployment on actual production server. To ease up this task we are here with an easy to use and configurable solution for running your SMTP server on local development environment.

Local Mail Setup

*. Download hMailServer from https://www.hmailserver.com

*. After completing the download open hMailServer Administrator.

*. To connect hMailServer click on Add in admin panel and provide Host name as “localhost”. Keep other fields as it is.

hMailServer administrator

*. Now click on just added localhost and click on Connect, when prompted . This will open hMailserver Administrator panel.

*. To start using hMailserver you need to add domain, under Domains section. To do so click on Add domain to add the domain, provide your local domain name and click on save.

local domain name

*. Next step is to setup an account. Click on Domains -> (Your domain) -> Accounts -> Add and provide any name for your account e.g. ‘techantic’ and click save. You can also provide password but this is not mandatory. Keep rest of the fields as it is.

domain account setup

*. Now mail server is ready to use. Next step is to configure your local e-mail.

Configuring Local Mail

*. Download Mozilla thunderbird Mail client from here https://www.thunderbird.net

*. After download and install open Thunderbird client and click on “Skip this and use my existing email”

skip setup


*. This will prompt you to enter your e-mail address. Enter your e-mail account that you just set up on hMailServer and the password of hMailServer admin and click on Continue.

*. Now you need to update server host name as 127.0.0.1 for both IMAP and POP3. Also select port as 143 for IMAP and 25 for SMTP and click on Re-test. Finally click on Done.

mailserver settings


*. Now your local e-mail setup is complete, you can use the local mail server for your local application development.

To configure settings in your config file of your development application under mailSettings -> smtp in from attribute put your local e-mail id and under mailSettings -> network in host attribute put your local application address and make sure value of port is 25.

mail config settings


That’s it! You can test your mails on your local development machine J

Tuesday 27 March 2018

How to create Android app without coding

Building any software is never an easy task. It requires a lot of knowledge in various programming technologies like Java, C#, JavaScript, AngularJS, HTML, CSS and many more, the list is never ending. But not to worry as anyone with basic Internet connectivity can easily create Android apps and that's also without any cost. Isn't it interesting? ☺

How to create an android app


android logo


Creating android app is now easy and anyone can create the app right away. We are introducing you with Thunkable. The website that you can use to create quality android apps on your own.

Steps to create an app:

*. Go to https://thunkable.com and create an account, it's free.

*. Verify your e-mail and login to  your account in Thunkable.

*. You will be presented with an interface to create an app.

*. Click on Create New app and you will be prompted to give a name to your app. give any suitable name and click OK to proceed for app designer.

thunkable app designer panel


*. Under app designer you will find various tools/Palette on left side like button, Image, Label,         TextBox etc. 

*. In middle you can see your virtual mobile phone emulator where you will be able to view your app progress like you will see in real phone.

*. On right you can find Components and Properties windows where you can customize your app items. They are self explanatory though.

*. To start creating you app, just drag and drop Palette items like Button, Label, etc. to your virtual mobile phone emulator and customize them according to your needs under properties window.

*. You can also add multiple Screens to your Android application.

*. After completing your Screen1 if you want any action to be done and want your app to open another screen like Screen2 after a button click you can switch to Blocks mode where you can specify your logic to connect multiple screens, math operation, managing control statements like if....else etc.

thunkable block arrangement panel


*. After completing your app designing you can see it's working live, to do so just click on Test -> Thunkabel Live and you will be prompted with QR code which you can scan from your mobile and try your own app on your phone. (If you don't have QR code scanner you can download Thunkable mobile app and scan the QR code)

thunkable live QR code

*. At last you can export your .apk app file to your computer or you can download it on your mobile using QR code to do so go to Export -> App ( save .apk to my computer).

That's all. It's pretty easy isn't it? Do put your comments below and let us know if you have any doubts or questions.

Saturday 20 June 2015

How to accept all Friend Requests at once on Facebook

Facebook as everybody know the largest social networking website. Everyone likes to be on Facebook and chat with friends, share photos, make friends, share stories and lot more. Most people using Facebook like to make lot of friends and some people may got hundreds or thousands of requests everyday. So it is very difficult for them to confirm these requests easily and if you have a slower connection then it is going to be very much frustrating task. But here on TechAntic we are always want to make your life easy with simple tricks that works.

pending facebook friend requests

Is this trick work ?

It will be work for most of the people and I have tried it personally and you don't have to misunderstand this trick is hacking or something. It is simple programming code which simplify your task.

How to Confirm or Accept Friend Request at once ?

*. First of all you need to log in to Facebook. Go to https://www.facebook.com/reqs.php

*. You will find out all the pending requests on this page if you have lot of friend requests then you have to click on Show more. Click on this until all the friend requests are visible.

*. Now right click anywhere on the page and click on Inspect Element and then click on the Console tab and paste following code as it is

javascript:for( i = 1;i<document.getElementsByName("actions[accept]").length;i++){document.getElementsByName("actions[accept]")[i].click();}void(0);

confirm facebook friend requests using inspect element

Note: If you're using Inspect Element in Firefox for the first time then it may possible that Firefox won't allow you to do that. If it happens then type enter on the Console panel and you are now allowed to paste.

After all this process completed successfully you will see something like this as shown in the screenshot below. It means that your friend requests are started confirming automatically. Wait for sometime and all your pending requests will be accepted.

confirm accept friend request automatically

Hopefully this post helped you and you would enjoy using it. Keep in touch with us and don't forget to share the post.

Friday 12 June 2015

how to enable Windows administrator account

Windows provide separate accounts for different users of the OS. There is one administrator user account who has all the privileges to access all the features of Windows but this default account provided during installation has limited access operations. Even though you have been using the account with administrative privileges, the tasks that have been performed may ask for a UAC confirmation. The elevated administrator account has been disabled in the windows 7,windows 8,windows 8.1 and windows vista.

Following are some simple methods to access administrator account of Windows:

*. If you are using Windows 7, 8 or 8.1 then you need to open command prompt (cmd) in administrator mode.

*. Then enter following commands on the command prompt
                                                 net user administrator /active:yes

After that,you would see a message that your command was successful. This will activate administrator account and you can access it after logging off the system.

administrator account activeted successfully

*. To disable the built in administrator account execute following commands on the command prompt
                                                   net user administrator /active:no

*. After this the administrator account will mo longer appear on the login screen.

This simple tutorial will definitely help you overcoming the problem of administrator privileges.

Popular Posts