Mar
30
How do I stop daily news email from MSNBC.com: Top MSNBC Headlines
Filed Under Computer Software | Leave a Comment


Dec
21
How to Automatically Cc: All Mail You Send in Outlook
Filed Under Software Application | Leave a Comment
![]() |
Outlook’s Sent Items folder is perfect for keeping copies of all emails you have sent. What, though, if it is perfect, but not good enough?
What if you want to archive all your mail at a different email account or need to carbon-copy a boss for a while? With a simple rule swiftly created you can make Outlook send a Cc: copy of all mail you create to a specific email address (or more than one) automatically. |
Source: [About.com]
Dec
11
GMAIL Trick: How to Forward your Emails to Multiple Email Accounts
Filed Under Domain & Server Hosting, Software Application | Leave a Comment
Nov
15
Creating POP3 Mail account in Apple iPhone
Filed Under Computer Software, Domain & Server Hosting | Leave a Comment
1. If this is the first account you’re setting up on the iPhone or the iPod Touch, tap Mail. Otherwise, from the Home screen tap Settings > Mail > Accounts > Add Account.

2. Choose your email account type. For setting up email to work with your domain email address tap Other.
Enter:
- Your Name
- Enter your full E-mail Address. Example: user@domain.com
- Your E-mail Password
- A description.

3. Tap Save
4. Tap POP so it is highlighted.

Enter:
- Incoming Mail Server as mail.domain.com, replacing domain.com with the domain of your hosting account.
- Your full E-mail Address. Example: user@domain.com for User Name
- Your E-mail Password
- Outgoing Mail Server (SMTP) as mail.domain.com, replacing domain.com with the domain of your hosting account.
- Your full E-mail Address. Example: info@example.com for User Name
- Your E-mail Password

5. Tap Save.
6. Your iPhone is now configured to send and receive email using your domain E-mail address.
Source [Exabytes]
Nov
5
Set default folder for attachments in Outlook 2003
Filed Under Computer Software, Software Application | Leave a Comment
I had a user ask me this week: “Steve, I always save my attachments in a download folder on my computer. Unfortunately Microsoft Outlook always defaults to ‘My Documents’, and I can’t see any way to change this. Do you have any idea how to change the default download folder?”
This is correct. There is no option I can find in Outlook that will allow you to change the default download folder for attachments. This means every time you try to save an attachment you need to start browsing around your drive to find the right spot. This can be a time consuming task if you have network shares that slow down explorer.

After doing a little digging I discovered that the default download location can be changed by opening regedit and drilling down to this registry key:
HKEY_CURRENT USER\Software\Microsoft\Office\11.0\Outlook\Options
Create a new string value under this key (If it does not already exist) named DefaultPath, and set the value to the absolute path you would like to use as your default location.
In my case I wanted to change it to c:\downloads\ Here is what it looks like in the registry:

So now when I go to save an attachment, I don’t need to fish around for the downloads folder – it automatically defaults right to it:

Source: [intelliadmin]
Nov
4
How To Get Full E-mail Header in Outlook Express, MS Outlook, Mozilla Thunderbird, Windows Live Hotmail, GMail, Yahoo! Mail, and Apple Mail
Filed Under Computer Software, Domain & Server Hosting, Software Application | Leave a Comment
In order to get Full E-Mail Header from major free email provider and E-Mail Client(Microsoft Outlook & Outlook Express), kindly refer to the step as below.
Outlook Express:
1. Open your Outlook Express.
2. Right click on the E-Mail whose headers you want to view, a drop down menu will appear.
3. From the menu, choose “Properties”.

4. Click on the “Detail” tab and you will be able to see the E-Mail header.

Microsoft Outlook 2002/2003:
1. Select the email and Right-click the message without opening it, then click “Options” from the drop-down menu.
2. A box called “Message Options” pops up.
3. Near the bottom of the box you’ll see a text area titled “Internet headers”.
4. Highlight the contents, then right-click. You can copy the headers and paste them into an email message or another application.
Mozilla Thunderbird:
1. Select the email and Double-click to open the email in a new window.
2. Go to View and click Message Source and one more new window will popped out.
3. Copy the full email header content and paste it on a email or another application.
Windows Live Hotmail/MSN:
Note: This article is refer to Windows Live Hotmail Full version.
1. Right click on the closed E-Mail and a drop down menu will appear.
2. Choose View Source on the drop down menu.

3. E-Mail header information will show in new Windows.
GMail:
1. Log into your GMail Account.
2. Open the E-Mail whose headers you want to view.
3. You will see “Reply” button on top right of the message pane.
4. Click on the little arrow pointing down next to “Reply”.

5. Select on “Show original” as images above and the E-Mail header will show in new Windows.
Yahoo! Mail:
1. Log into your Yahoo! E-Mail account.
2. Open the E-Mail whose headers you want to view.
3. Scroll down to the bottom right of the E-Mail, select on “Full Headers”.
![]()
4. E-Mail header information will show in new Windows.

Apple Mail:
1. Click at the selected email.
2. Click at View > Message > Long Headers

3. Copy the entire information and paste it at notepad for us to analyze.
Oct
23
Learn to be an ElePHPant? :)
Filed Under E-Commerce, Internet Technology, Software Development | Leave a Comment
A PHP course designed to enable web developers and others with limited programming experience to build dynamic database driven web sites using the PHP programming language. Since PHP is such a rich and task-specific language, the course covers the most important range of functions in depth, and equips delegates to understand the remaining less essential aspects.
| Chapter 1: Using Variables Chapter 2: Working with Data Chapter 3: Using Arrays Chapter 4: Controlling the Flow Chapter 5: Code Reusing Chapter 6: Basics of Web Applications Chapter 7: Advanced Web Applications Chapter 8: File Upload & JavaScript Chapter 9: Storing Data Chapter 10: Operating System Chapter 11: Files transfer Chapter 12: Extensions Appendix A: PHP Installation Appendix B: PHP Built-in Functions Appendix C: PHP Special Characters and Built-in Arrays If you’re looking for a PHP training or to polish your programming skill! |
![]() |
Oct
23
CSS overflow-x, overflow-y and browser compatibility issue
Filed Under Software Development | Leave a Comment
Partially supported in Gecko 1.8, Safari 3, Opera 9.5, IE.
In all the following test cases the green box has fixed dimensions (80px × 80px, with padding 9px, border 10px.) The blue bar (width 119px, border 1px) should overflow at the right, and the red one (height 119px, border 1px) at the bottom. When one of the two properties is ‘auto’ there are four cases: two with only one overflowing bar at a time, one with both overflowing, one with no overflow (the third case should behave as with ‘scroll’ instead of ‘auto’).
According to the spec … some combinations with ‘visible’ are not possible: if one is specified as ‘visible’ and the other is ‘scroll’ or ‘auto’, then ‘visible’ is set to ‘auto’ …
.
All browsers seem to further reduce the number of combinations giving different results:
- In Gecko, Safari, Opera, ‘visible’ becomes ‘auto’ also when combined with ‘hidden’ (in other words: ‘visible’ becomes ‘auto’ when combined with anything else different from ‘visible’). Gecko 1.8, Safari 3, Opera 9.5 are pretty consistent among them.
- In IE7, IE8 ‘visible’ becomes ‘hidden’ when combined with ‘hidden’.
- IE6 seems to render all combinations differently, but of course here ‘visible’ means ‘expand’ the box (in the specified direction) to enclose the content.
Source: [Brunildo.org]
Oct
20
SquirrelMail User’s Manual
Filed Under Domain & Server Hosting, Software Application | Leave a Comment
This document provides information about usage of SquirrelMail webmail interface.
Link: http://squirrelmail.org/docs/user/user.html
Oct
10
Outlook 550 Access denied – Invalid HELO name
Filed Under Computer Software, Domain & Server Hosting | Leave a Comment
The message could not be sent because the server rejected the sender's e-mail address. The sender's e-mail address was 'name@domain.com'. Subject 'name@domain2.com', Account: 'mail.domain.com', Server: 'mail.domain.com', Protocol: SMTP, Server Response: '550 Access denied - Invalid HELO name (See RFC2821 4.1.1.1)', Port: 25, Secure(SSL): No, Server Error: 550, Error Number: 0x800CCC78Seeing this error? It’s because you have improperly setup your outlook smtp settings for outgoing mail.
Please make sure you have authentication turned ON for the outgoing mail. Go into the advanced settings and for the outgoing server, and check “Outgoing server requires authentication, use same settings as incoming server” – that should solve your issue.
And if you continue to experience any problems, you are more than welcome to open a support ticket at support@jimindustries.com
« go back — keep looking »

