2011-04-07 20 views

Trả lời

6

Chỉ tìm thấy câu trả lời. Bạn phải xóa% a khỏi chuỗi định dạng dòng jabber-roster-line để loại bỏ hình đại diện.

2

Bạn cũng có thể yêu cầu không tải xuống tất cả chúng bằng cách đặt jabber-vcard-avatars-retrieve thành nil.

5

Đây là tôi thiết lập jabber.el:

(custom-set-variables 
    ;; custom-set-variables was added by Custom. 
    ;; If you edit it by hand, you could mess it up, so be careful. 
    ;; Your init file should contain only one such instance. 
    ;; If there is more than one, they won't work right. 
'(jabber-auto-reconnect t) 
'(jabber-avatar-verbose nil) 
'(jabber-vcard-avatars-retrieve nil) 
'(jabber-chat-buffer-format "*-jabber-%n-*") 
'(jabber-history-enabled t) 
'(jabber-mode-line-mode t) 
'(jabber-roster-buffer "*-jabber-*") 
'(jabber-roster-line-format " %c %-25n %u %-8s (%r)") 
'(jabber-show-offline-contacts nil)) 

Nó loại bỏ avatar và dòng trạng thái từ danh sách. Đồng thời bật lịch sử và tự động kết nối lại. Và ẩn các liên hệ ngoại tuyến. Nếu bạn cần chúng - bạn có thể sử dụng M-x jabber-roster-toggle-offline-display. Hoặc, và tên đệm ngắn gọn alab jabber của nó ...

Các vấn đề liên quan