Thursday, 25 June 2009
Only one BlackBerry message folder?
Having checked the config and resent the service books and then forced a network reconciliation it's still not right, checked for hidden folders, no not that either, Vodafone technical don't know so it's off to the BlackBerry forums and the solution is a simple option change:
Select OPTIONS, then GENERAL OPTIONS, scroll down the list and select seperate against SMS and EMAIL and that will filter the messages into the appropriate message folders on the frontscreen
Wednesday, 24 June 2009
Exchange - bulk calendar permission changes
Wednesday, 17 June 2009
BlackBerry Enterprise Server & Firewalls
NetworkAccessNode is srp.gb.blackberry.net.
Attempting to connect to srp.gb.blackberry.net (193.109.81.33), port 3101
Sending test packet
Waiting for response
Receiving response
Checking response
Successful
BlackBerry - the factory reset procedure
To erase all the data on your BlackBerry device, complete the following steps. This option is available with BlackBerry Device Software 3.8 and later.
- In the device Options, click Security
- If you are using BlackBerry Device Software 4.1, click Security Options > General Security.
- Click the trackwheel and select Wipe Handheld. 3. Click Continue.
- Type “blackberry”. All the data on the BlackBerry device is erased.
- Go to Options
- Select Security Options.
- Select General Settings
- Click the Menu key
- Select Wipe Handheld
- Click Continue
- Type “blackberry”. All the data on the BlackBerry device is erased.
Thursday, 11 June 2009
Testing SMTP based email
To manually perform a mail transaction through telnet, perform the following steps:
From a Command prompt, Type:
telnet mail.domainhere.com 25
This specifies to telnet to port 25 on a mail host for domainhere.com
220 The mail host identifies itself. This should be accompanied by several lines of introductory text:
Type:
HELO hostname.com
where hostname.com specifies your domain.
250 OK followed by the server you are connecting to.
Type:
MAIL FROM:you@hostname.com
where you@hostname.com indicates the address the mail should appear to be from.
250 OK
Type:
RCPT TO:client@domaim.com
where client@domain.com indicates the address the mail should appear to be from.
250 OK .
Type:
DATA
START MAIL INPUT, END WITH "." ON A LINE BY ITSELF Type a brief message, followed by . (Type a period on a line by itself, then hit ENTER.)
Text goes here
.
250 OK