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

RSS
Follow by Email
Facebook
Twitter
Visit Us
Follow Me
INSTAGRAM