This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; | |
;; Emulate_Scrolling_Middle_Button.ahk | |
;; Author: Erik Elmore <[email protected]> | |
;; Version: 1.1 (Aug 16, 2005) | |
;; | |
;; Enables you to use any key with cursor movement | |
;; to emulate a scrolling middle button. While | |
;; the TriggerKey is held down, you may move the | |
;; mouse cursor up and down to send scroll wheel | |
;; events. If the cursor does not move by the |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use std::io; | |
use bytes::Bytes; | |
use tokio_service::Service; | |
use tokio_proto::streaming::{Message, Body}; | |
use futures::{future, Future, Stream}; | |
use futures::sync::oneshot; | |
use model::request::SmtpCommand; | |
use model::response::SmtpReply; | |
pub struct SmtpService; |