Blackberry can not send email attachments other than pictures and contact

Problems:
1. Cannot attach other than pictures and contacts.
2. Reduce the size of the picture.
3. When selecting a pictures, we can not browse to another folder other than media.

The following things did not solve the problem :
1. Os wipe & reinstall.
2. App Upgrade Version: 5.0.0.1036 to the latest 1067

The problem is on the sim card, not in the version of OS or hardware.

For that, you need to go to the office of telecommunications services operator, ask them to update your sim card.

I hope this can solve your problem.

Jesri

Blackberry tidak bisa mengirim attachment email selain gambar dan contact

Layanan Blackberry sangat membantu. Dengan handset yang bisa dikantongi, bisa melakukan pekerjaan-pekerjaan sehari-hari seperti menerima dan mengirim email, chatting, dll.

Namun saya terkejut ketika saya mau mengirim attachment berupa pdf melalui Blackberry. Rupanya BB saya tidak bisa. File yang bisa dipilih atau di browse hanya folder picture dan hanya jpg. Itupun dengan ukuran yang sangat terbatas. BB akan otomatis me-resize ukuran picture tersebut.

Hal-hal berikut tidak memecahkan masalah saya
1. Wipe os & reinstall.
2. Upgrade App Version : 5.0.0.1036 ke terbaru 1067

Di beberapa milis saya tanyakan juga tidak memberikan solusi yang pasti. Namun ada beberapa anggota milis menganjurkan mencoba dulu dengan kartu baru.

Maka saya beli SIM Card Simpati baru, dan ternyata BISA attach semua tipe file, dan bisa brwosing (select) file yang ada di folder lain. Kemudian saya kembalikan ke SIMCard lama, maka kembali masalah, yaitu tidak bisa attach file selain jpg, dan tidak bisa browsing ke folder lain selain Picture.

Kesimpulannya, masalahnya adalah di kartu, bukan di versi OS atau hardware (saya pake 8520). Saya akan upgrade kartu ke GRAPARI. Mungkin ada hubungannya dengan fitur yg ada dikartu (memory kali ya?). Namun kenapa jpg (picture) bisa di attach, mungkin karena picture bisa di resize, sementara file lainnya seperti pdf atau rar, tidak bisa di resize.

IP Tables, Firewall Linux untuk mengamankan WEB dan EMAIL Server

Untuk mengamankan server web dan email dengan linux, kita bisa menset iptables sedemikian rupa, sehingga port-port tertentu saja yang bisa diakses.

Saya menggunakan ip tables berikut untuk web dan email server saya :

#kasih akses ke Notebook(Contoh : ip 192.168.1.231)
iptables -I INPUT -s 192.168.1.231 -j ACCEPT
iptables -I OUTPUT -d 192.168.1.231 -j ACCEPT

#kasih akses ke localhost
iptables -A INPUT -i lo -j ACCEPT
iptables -A OUTPUT -o lo -j ACCEPT

#enable akses port 80 (www)
iptables -A INPUT -p tcp –dport 80 -i eth0 -j ACCEPT
-A INPUT -i eth0 -p tcp -m tcp –dport 25 -j ACCEPT
-A INPUT -i eth0 -p udp -m udp –dport 25 -j ACCEPT
-A INPUT -m state –state RELATED,ESTABLISHED -j ACCEPT

#Tutup semua akses INPUT (default)
iptables -P INPUT DROP
iptables -P OUTPUT ACCEPT
iptables -P FORWARD DROP

Sierra 885 can send an sms 2 times faster with any other modem

This is my experience, may be not for you, so do not blame me if you do not have like me. I already use some type of modem to send sms, but all of the fastest send sms in 3-6 seconds. But when I tried the Sierra 885, the speed increased 2 times more, it can send sms in 1.5-2 seconds.

Updated:  With this modem, I can send SMS  in  1:17 seconds ! Title should be changed to 3 times faster!

Send SMS
at+cmgs=64
> 0691261801000031000C9126186235911700008F39D4F29C0E9AB7E720B3FCDD060D9F4D908D05
1A269B49900E548BC162B05B8D26B3C164B7988C056ABFC9653648071AE27035

+CMGS: 96

 

OK
Delivery Deport
+CDS: 25
0691261801000006600C91261862359117113062704421821130627044618200

Incoming SMS
+CMTI: "SM",12

Read SMS on SIM Memory 12
at+cmgr=12
+CMGR: 0,,25
06912618010000240C9126186235911700001130627054918206EF3548FC9E03

Delete SMS on SIM Memory 11
at+cmgd=11
OK

List SMS on SIM Memory (1)
at+cmgl=1
+CMGL: 12,1,,25
06912618010000240C9126186235911700001130627054918206EF3548FC9E03
+CMGL: 13,1,,21
06912618010000240C9126186235911700001130628020328202EF35

Mengedit firewall Linux Centos agar Dapat mengakses Webmin dari non localhost

Saya menggunakan Linux Centos 5.5. Setelah menginstal WebMin, ternyata webmin hanya dapat diakses melalui local host.

Setelah cari-cari, ternyata port 10000 belum dibuka. Untuk membuka port tersebut, petunjuk berikut yang saya lakukan :

Buka file /etc/sysconfig/iptables

Code:
# Firewall configuration written by system-config-securitylevel
# Manual customization of this file is not recommended.
*filter
:INPUT ACCEPT [0:0]
:FORWARD ACCEPT [0:0]
:OUTPUT ACCEPT [0:0]
:RH-Firewall-1-INPUT - [0:0]
-A INPUT -j RH-Firewall-1-INPUT
-A FORWARD -j RH-Firewall-1-INPUT
-A RH-Firewall-1-INPUT -i lo -j ACCEPT
-A RH-Firewall-1-INPUT -p icmp --icmp-type any -j ACCEPT
-A RH-Firewall-1-INPUT -p 50 -j ACCEPT
-A RH-Firewall-1-INPUT -p 51 -j ACCEPT
-A RH-Firewall-1-INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
-A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 25 -j ACCEPT
-A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT
-A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 21 -j ACCEPT
-A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 22 -j ACCEPT
-A RH-Firewall-1-INPUT -j REJECT --reject-with icmp-host-prohibited
COMMIT

sebelum 2 baris terakhir :
A RH-Firewall-1-INPUT -j REJECT --reject-with icmp-host-prohibited

silakan tambahkan baris berikut :
-A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 10000 -j ACCEPT
Baris diatas akan membuka port 10000

RSS
Follow by Email
Facebook
Twitter
Visit Us
Follow Me
INSTAGRAM